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.
Add vpizza.json, to generate vegan pizza (#294)
* Add vpizza.json Add vpizza.json, and hopefully the command .vpizza that gives another user a vegan pizza. * Fixed JSON formatting because I am an idiot in the process of learning
- Loading branch information
1 parent
c3a1451
commit fd33852
Showing
2 changed files
with
77 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,76 @@ | ||
{ | ||
"templates": [ | ||
"{gives} {user} {sauce} {crust} pizza with {topping}, {topping} and {cheese}, finished with {garnish}!", | ||
"{gives} {user} {sauce} cheeseless {crust} pizza with {topping}, {topping} and {topping}, finished with {garnish}!", | ||
"{gives} {user} {sauce} {crust} pizza with {topping}, {cheese}, and {garnish}!", | ||
"{gives} {user} {sauce} {crust} pizza with {topping}, {topping} and {cheese}, with some {garnish} to bring everything together!", | ||
"{gives} {user} {sauce} {crust} pizza with {topping}, {cheese} and {cheese}, finished with {garnish}!", | ||
"{gives} {user} {sauce} {crust} pizza with {cheese}, {cheese}, {cheese}, and no vegetables in sight!" | ||
], | ||
"parts": { | ||
"gives": [ | ||
"hands", | ||
"gives", | ||
"makes", | ||
"passes", | ||
"delivers to", | ||
"declines to share with", | ||
"eats in front of" | ||
], | ||
"crust": [ | ||
"traditional", | ||
"cauliflower crust", | ||
"whole wheat", | ||
"gluten-free", | ||
"polenta", | ||
"pita", | ||
"sourdough", | ||
"thin crust", | ||
"wood-grilled" | ||
], | ||
"sauce": [ | ||
"a pesto", | ||
"an alfredo", | ||
"an olive oil", | ||
"a marinara", | ||
"a BBQ" | ||
], | ||
"cheese": [ | ||
"walnut parmesan", | ||
"macadamia ricotta salata", | ||
"almond bechamel", | ||
"cashew mozzarella", | ||
"fresh almond ricotta", | ||
"Miyoko's smoked mozzarella", | ||
"tofu feta", | ||
"no cheese" | ||
], | ||
"topping": [ | ||
"spinach", | ||
"olives", | ||
"fresh garlic", | ||
"roasted garlic", | ||
"seitan pepperoni", | ||
"smoked tofu", | ||
"peppers", | ||
"onions", | ||
"pineapple", | ||
"pickled shallot", | ||
"walnuts", | ||
"roasted red pepper", | ||
"eggplant", | ||
"spicy fennel soy crumbles", | ||
"spicy chickpeas", | ||
"roasted cauliflower" | ||
], | ||
"garnish": [ | ||
"aleppo chile oil", | ||
"garlic sauce", | ||
"arugula", | ||
"chiffonade of basil", | ||
"fried sage", | ||
"nutritional yeast", | ||
"fried pickles" | ||
] | ||
} | ||
} |
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