Skip to content

Commit fd33852

Browse files
ElonSatoshilinuxdaemon
authored andcommitted
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
1 parent c3a1451 commit fd33852

2 files changed

Lines changed: 77 additions & 0 deletions

File tree

data/food/vpizza.json

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"templates": [
3+
"{gives} {user} {sauce} {crust} pizza with {topping}, {topping} and {cheese}, finished with {garnish}!",
4+
"{gives} {user} {sauce} cheeseless {crust} pizza with {topping}, {topping} and {topping}, finished with {garnish}!",
5+
"{gives} {user} {sauce} {crust} pizza with {topping}, {cheese}, and {garnish}!",
6+
"{gives} {user} {sauce} {crust} pizza with {topping}, {topping} and {cheese}, with some {garnish} to bring everything together!",
7+
"{gives} {user} {sauce} {crust} pizza with {topping}, {cheese} and {cheese}, finished with {garnish}!",
8+
"{gives} {user} {sauce} {crust} pizza with {cheese}, {cheese}, {cheese}, and no vegetables in sight!"
9+
],
10+
"parts": {
11+
"gives": [
12+
"hands",
13+
"gives",
14+
"makes",
15+
"passes",
16+
"delivers to",
17+
"declines to share with",
18+
"eats in front of"
19+
],
20+
"crust": [
21+
"traditional",
22+
"cauliflower crust",
23+
"whole wheat",
24+
"gluten-free",
25+
"polenta",
26+
"pita",
27+
"sourdough",
28+
"thin crust",
29+
"wood-grilled"
30+
],
31+
"sauce": [
32+
"a pesto",
33+
"an alfredo",
34+
"an olive oil",
35+
"a marinara",
36+
"a BBQ"
37+
],
38+
"cheese": [
39+
"walnut parmesan",
40+
"macadamia ricotta salata",
41+
"almond bechamel",
42+
"cashew mozzarella",
43+
"fresh almond ricotta",
44+
"Miyoko's smoked mozzarella",
45+
"tofu feta",
46+
"no cheese"
47+
],
48+
"topping": [
49+
"spinach",
50+
"olives",
51+
"fresh garlic",
52+
"roasted garlic",
53+
"seitan pepperoni",
54+
"smoked tofu",
55+
"peppers",
56+
"onions",
57+
"pineapple",
58+
"pickled shallot",
59+
"walnuts",
60+
"roasted red pepper",
61+
"eggplant",
62+
"spicy fennel soy crumbles",
63+
"spicy chickpeas",
64+
"roasted cauliflower"
65+
],
66+
"garnish": [
67+
"aleppo chile oil",
68+
"garlic sauce",
69+
"arugula",
70+
"chiffonade of basil",
71+
"fried sage",
72+
"nutritional yeast",
73+
"fried pickles"
74+
]
75+
}
76+
}

plugins/foods.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def __init__(self, name, unit, *commands, file=None):
3737
BasicFood("doobie", "a doobie"),
3838
BasicFood("wine", "wine"),
3939
BasicFood("pizza", "pizza"),
40+
BasicFood("vpizza", "pizza"),
4041
BasicFood("chocolate", "chocolate"),
4142
BasicFood("pasta", "pasta"),
4243
BasicFood("cereal", "cereal"),

0 commit comments

Comments
 (0)