This repository has been archived by the owner on Oct 23, 2019. It is now read-only.
forked from edwardslabs/CloudBot
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Introduce .birthday food command and fix issue #222 * add birthday.json * Revert "Introduce .birthday food command and fix issue #222" This reverts commit e375ab3. * update food.py to have birthday cake command in there
- Loading branch information
1 parent
fd33852
commit c5446f3
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters