54 lines
942 B
Lua
54 lines
942 B
Lua
-- See also https://en.wikipedia.org/wiki/Tea
|
|
grammar = {
|
|
en_tea = {
|
|
"Builder's tea",
|
|
"Earl Grey",
|
|
"English afternoon tea",
|
|
"English breakfast",
|
|
"Irish breakfast",
|
|
"milk tea",
|
|
"orange pekoe",
|
|
"Prince of Wales",
|
|
},
|
|
jp_tea = {
|
|
"genmaicha",
|
|
"gyokuro",
|
|
"hojicha",
|
|
"matcha",
|
|
"sencha",
|
|
},
|
|
tea = {
|
|
"Burmese milk tea",
|
|
"masala chai",
|
|
"Thai tea",
|
|
"butter tea",
|
|
"kombucha",
|
|
"black tea",
|
|
"green tea",
|
|
"white tea",
|
|
},
|
|
-- Tea not derived from Camellia sinensis
|
|
herbal_tea = {
|
|
"barley tea",
|
|
"chamomile tea",
|
|
"corn tea",
|
|
"ginger tea",
|
|
"ginseng tea",
|
|
"maté",
|
|
"peppermint tea",
|
|
"rooibos",
|
|
"rose tea",
|
|
},
|
|
cup = {
|
|
"bowl",
|
|
"cup",
|
|
"mug",
|
|
},
|
|
origin = {
|
|
"Here's your cuppa #en_tea#!",
|
|
"Here's your cup of #jp_tea#!",
|
|
"Here's your #cup# of #tea#!",
|
|
"Here's your #cup# of #herbal_tea#!",
|
|
}
|
|
}
|