diff --git a/data/food/birthday.json b/data/food/birthday.json new file mode 100644 index 000000000..4d564c464 --- /dev/null +++ b/data/food/birthday.json @@ -0,0 +1,40 @@ +{ + "templates": [ + "{method} {user} a {flavor} {size} piece of {type} birthday cake and sings them Happy Birthday!" + ], + "parts": { + "method": [ + "gives" + ], + "flavor": [ + "tasty", + "delectable", + "delicious", + "yummy", + "scrumptious", + "luscious" + ], + "size": [ + "small", + "medium-sized", + "large" + ], + "type": [ + "Chocolate", + "Ice Cream", + "Angel", + "Boston Cream", + "Bundt", + "Carrot", + "Coffee", + "Devils", + "Fruit", + "Gingerbread", + "Pound", + "Red Velvet", + "Stack", + "Welsh", + "Yokan" + ] + } +} diff --git a/plugins/foods.py b/plugins/foods.py index efe5f03d5..9e230554f 100644 --- a/plugins/foods.py +++ b/plugins/foods.py @@ -56,6 +56,7 @@ def __init__(self, name, unit, *commands, file=None): BasicFood("soup", "Some Soup"), BasicFood("halal", "food", "halal", "halaal"), BasicFood("kosher", "food"), + BasicFood("birthday", "birthday cake"), ) basic_food_data = defaultdict(dict)