Peanuts, and Toasts, and More (#13209)

This commit is contained in:
VisVirific
2022-02-25 18:34:50 +01:00
committed by GitHub
parent db7eb023bb
commit b70ced9eff
9 changed files with 268 additions and 2 deletions
@@ -313,3 +313,16 @@
/obj/item/reagent_containers/food/snacks/cheesewedge
)
result = /obj/item/reagent_containers/food/snacks/taco
// Peanuts
/decl/recipe/peanuts_bowl
appliance = OVEN
fruit = list("peanut" = 10)
result = /obj/item/reagent_containers/food/snacks/chipplate/peanuts_bowl
reagent_mix = RECIPE_REAGENT_REPLACE // So the output isn't 40u total
/decl/recipe/peanuts_bowl_dry
appliance = OVEN
fruit = list("dried peanut" = 10)
result = /obj/item/reagent_containers/food/snacks/chipplate/peanuts_bowl
reagent_mix = RECIPE_REAGENT_REPLACE
@@ -150,6 +150,39 @@
//================================
// Toasts and Toasted Sandwiches
//================================
/decl/recipe/toast // Needs to be here otherwise it fucking kills itself
appliance = SKILLET
reagents = list(/decl/reagent/nutriment/triglyceride = 1)
items = list(
/obj/item/reagent_containers/food/snacks/breadslice
)
reagent_mix = RECIPE_REAGENT_REPLACE
result = /obj/item/reagent_containers/food/snacks/toast
/decl/recipe/slimetoast_alt
appliance = MIX
reagents = list(/decl/reagent/slimejelly = 5)
items = list(
/obj/item/reagent_containers/food/snacks/toast
)
result = /obj/item/reagent_containers/food/snacks/jelliedtoast/slime
/decl/recipe/jelliedtoast_alt
appliance = MIX
reagents = list(/decl/reagent/nutriment/cherryjelly = 5)
items = list(
/obj/item/reagent_containers/food/snacks/toast
)
result = /obj/item/reagent_containers/food/snacks/jelliedtoast/cherry
/decl/recipe/pbtoast_alt
appliance = MIX
reagents = list(/decl/reagent/nutriment/peanutbutter = 5)
items = list(
/obj/item/reagent_containers/food/snacks/toast
)
result = /obj/item/reagent_containers/food/snacks/pbtoast
/decl/recipe/slimetoast
appliance = SKILLET
reagents = list(/decl/reagent/slimejelly = 5)
@@ -166,6 +199,14 @@
)
result = /obj/item/reagent_containers/food/snacks/jelliedtoast/cherry
/decl/recipe/pbtoast
appliance = SKILLET
reagents = list(/decl/reagent/nutriment/peanutbutter = 5)
items = list(
/obj/item/reagent_containers/food/snacks/breadslice
)
result = /obj/item/reagent_containers/food/snacks/pbtoast
/decl/recipe/toastedsandwich
appliance = SKILLET
items = list(
@@ -181,3 +222,21 @@
/obj/item/reagent_containers/food/snacks/cheesewedge
)
result = /obj/item/reagent_containers/food/snacks/grilledcheese
/decl/recipe/egginthebasket
appliance = SKILLET
items = list(
/obj/item/reagent_containers/food/snacks/egg,
/obj/item/reagent_containers/food/snacks/breadslice
)
result = /obj/item/reagent_containers/food/snacks/egginthebasket
/decl/recipe/garlicbread
appliance = SKILLET | OVEN
reagents = list(/decl/reagent/nutriment/garlicsauce = 5)
items = list(
/obj/item/reagent_containers/food/snacks/spreads/butter,
/obj/item/reagent_containers/food/snacks/breadslice
)
reagent_mix = RECIPE_REAGENT_REPLACE // Yeah that butter though
result = /obj/item/reagent_containers/food/snacks/garlicbread
@@ -122,6 +122,18 @@
)
result = /obj/item/reagent_containers/food/snacks/bunbun
/decl/recipe/reubensandwich
reagents = list(/decl/reagent/nutriment/mayonnaise = 5, /decl/reagent/nutriment/ketchup = 5)
items = list(
/obj/item/reagent_containers/food/snacks/toast,
/obj/item/reagent_containers/food/snacks/cheesewedge,
/obj/item/reagent_containers/food/snacks/sauerkraut,
/obj/item/reagent_containers/food/snacks/cutlet,
/obj/item/reagent_containers/food/snacks/toast
)
reagent_mix = RECIPE_REAGENT_MIN
result = /obj/item/reagent_containers/food/snacks/reubensandwich
/decl/recipe/superbiteburger
fruit = list("tomato" = 1)
reagents = list(/decl/reagent/sodiumchloride = 5, /decl/reagent/blackpepper = 5)
@@ -178,6 +190,14 @@
)
result = /obj/item/reagent_containers/food/snacks/jellysandwich/cherry
/decl/recipe/pbjsandwich
reagents = list(/decl/reagent/nutriment/cherryjelly = 5, /decl/reagent/nutriment/peanutbutter = 5)
items = list(
/obj/item/reagent_containers/food/snacks/breadslice,
/obj/item/reagent_containers/food/snacks/breadslice
)
result = /obj/item/reagent_containers/food/snacks/pbjsandwich
/decl/recipe/tossedsalad
fruit = list("cabbage" = 2, "tomato" = 1, "carrot" = 1, "apple" = 1)
result = /obj/item/reagent_containers/food/snacks/salad/tossedsalad
@@ -321,3 +341,10 @@
)
result = /obj/item/reagent_containers/food/snacks/lardwich
reagent_mix = RECIPE_REAGENT_REPLACE
/decl/recipe/sauerkraut
appliance = MIX
fruit = list("cabbage" = 1)
reagents = list(/decl/reagent/enzyme = 5)
result = /obj/item/reagent_containers/food/snacks/sauerkraut
reagent_mix = RECIPE_REAGENT_REPLACE