Skip to content
This repository has been archived by the owner on Oct 23, 2019. It is now read-only.

Commit

Permalink
Add vpizza.json, to generate vegan pizza (#294)
Browse files Browse the repository at this point in the history
* 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
ElonSatoshi authored and linuxdaemon committed Dec 24, 2018
1 parent c3a1451 commit fd33852
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 0 deletions.
76 changes: 76 additions & 0 deletions data/food/vpizza.json
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"
]
}
}
1 change: 1 addition & 0 deletions plugins/foods.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ def __init__(self, name, unit, *commands, file=None):
BasicFood("doobie", "a doobie"),
BasicFood("wine", "wine"),
BasicFood("pizza", "pizza"),
BasicFood("vpizza", "pizza"),
BasicFood("chocolate", "chocolate"),
BasicFood("pasta", "pasta"),
BasicFood("cereal", "cereal"),
Expand Down

0 comments on commit fd33852

Please sign in to comment.