New foods and drinks, tweaks/updates to old food. (#18140)

* first commit

fixed wooden platter sprite
fixed error in bounty phrasing
created recipe for hash browns
replaced flat dough in doner kebab recipe with a pita
made it so muffins are made in larger batches, and each muffin is less filling seperately
created 7 new kinds of milkshake
changed some incorect capitalization
made it so bread that's been eaten no longer creates leftover plates
updated ravioli code to fit with correct format
updated ravioli to be more filling.

* Roast chicken and River Loaf

created roast chicken and river loaf

* changleog

* corrected changelog

* updated food bug

* grammar update

updating capitalization

* updated bowl pickup ability

* code update
This commit is contained in:
tomixcomics
2024-01-09 17:11:55 +00:00
committed by GitHub
parent b49535d307
commit 5e95fa42b6
19 changed files with 295 additions and 18 deletions
@@ -87,6 +87,20 @@
)
result = /obj/item/reagent_containers/food/snacks/tofurkey
/singleton/recipe/roast_chicken
appliance = OVEN
fruit = list("potato" = 2)
reagents = list(/singleton/reagent/blackpepper = 1, /singleton/reagent/sodiumchloride = 1)
items = list(
/obj/item/reagent_containers/food/snacks/meat/chicken,
/obj/item/reagent_containers/food/snacks/meat/chicken,
/obj/item/reagent_containers/food/snacks/meat/chicken,
/obj/item/reagent_containers/food/snacks/meat/chicken,
/obj/item/reagent_containers/food/snacks/stuffing
)
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
result = /obj/item/reagent_containers/food/snacks/sliceable/roast_chicken
/singleton/recipe/meatbun
appliance = SAUCEPAN | POT
reagents = list(/singleton/reagent/spacespice = 1, /singleton/reagent/water = 5)
@@ -149,6 +163,14 @@
reagent_mix = RECIPE_REAGENT_REPLACE
result = /obj/item/reagent_containers/food/snacks/crab_legs
/singleton/recipe/hash_browns
appliance = GRILL | SKILLET
reagents = list(/singleton/reagent/blackpepper = 1, /singleton/reagent/sodiumchloride = 1)
items = list(
/obj/item/reagent_containers/food/snacks/rawsticks
)
result = /obj/item/reagent_containers/food/snacks/hash_browns
// Konyang
/singleton/recipe/mossbowl
@@ -66,3 +66,11 @@
reagents = list(/singleton/reagent/mental/vkrexi = 1) //NOTE: This means the RAEGENT of vkrexi taffy, not the solid item! you might have to grind the item to get it.
reagent_mix = RECIPE_REAGENT_REPLACE
result = /obj/item/reagent_containers/food/snacks/vkrexiwrap/veggie
/singleton/recipe/phoron_river_loaf
appliance = OVEN
items = list(
/obj/item/reagent_containers/food/snacks/friedkois,
/obj/item/reagent_containers/food/snacks/phoroncandy
)
result = /obj/item/reagent_containers/food/snacks/phoron_river_loaf
+1 -1
View File
@@ -117,7 +117,7 @@
fruit = list("tomato" = 1, "cabbage" = 1)
reagents = list(/singleton/reagent/sodiumchloride = 1, /singleton/reagent/spacespice = 1)
items = list(
/obj/item/reagent_containers/food/snacks/sliceable/flatdough,
/obj/item/reagent_containers/food/snacks/pita,
/obj/item/reagent_containers/food/snacks/cutlet
)
result = /obj/item/reagent_containers/food/snacks/donerkebab
@@ -4,22 +4,26 @@
////////////////////////////////////////////MUFFINS////////////////////////////////////////////
/singleton/recipe/muffin
appliance = OVEN
reagents = list(/singleton/reagent/drink/milk = 5, /singleton/reagent/sugar = 5)
reagents = list(/singleton/reagent/drink/milk = 20, /singleton/reagent/sugar = 20)
reagent_mix = RECIPE_REAGENT_REPLACE
items = list(
/obj/item/reagent_containers/food/snacks/dough,
/obj/item/reagent_containers/food/snacks/dough
)
result = /obj/item/reagent_containers/food/snacks/muffin
result_quantity = 6
/singleton/recipe/berrymuffin
appliance = OVEN
reagents = list(/singleton/reagent/drink/milk = 5, /singleton/reagent/sugar = 5)
reagents = list(/singleton/reagent/drink/milk = 20, /singleton/reagent/sugar = 20)
reagent_mix = RECIPE_REAGENT_REPLACE
items = list(
/obj/item/reagent_containers/food/snacks/dough,
/obj/item/reagent_containers/food/snacks/dough
)
fruit = list("berries" = 1)
fruit = list("berries" = 2)
result = /obj/item/reagent_containers/food/snacks/berrymuffin
result_quantity = 6
////////////////////////////////////////////PANCAKES////////////////////////////////////////////