From fd33852700a2ef0e82638233d99d524556c51995 Mon Sep 17 00:00:00 2001 From: ElonSatoshi Date: Mon, 24 Dec 2018 01:53:59 -0600 Subject: [PATCH] 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 --- data/food/vpizza.json | 76 +++++++++++++++++++++++++++++++++++++++++++ plugins/foods.py | 1 + 2 files changed, 77 insertions(+) create mode 100644 data/food/vpizza.json diff --git a/data/food/vpizza.json b/data/food/vpizza.json new file mode 100644 index 000000000..de9cc889a --- /dev/null +++ b/data/food/vpizza.json @@ -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" + ] + } +} diff --git a/plugins/foods.py b/plugins/foods.py index 9489cf47f..efe5f03d5 100644 --- a/plugins/foods.py +++ b/plugins/foods.py @@ -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"),