mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 00:21:11 +01:00
Food buffs for the food buffs (#21731)
-Adds cucumbers as produce -Adds a few new food dishes (mostly cucumber based and 1 Adhomian dish) -Returns the randomly generated ingredients spawning in the fridge at the start of shifts such as condiments, syrups, etc. to spawn in like they did before the scarcity arc. -Adds handheld icons to kitchen trays -Fixed sugar-tree fruit not showing up properly
This commit is contained in:
@@ -150,6 +150,16 @@
|
||||
result = /obj/item/reagent_containers/food/snacks/adhomian_porridge
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
||||
|
||||
/singleton/recipe/zharkir
|
||||
appliance = POT | SAUCEPAN
|
||||
fruit = list("mtear" = 1, "earthenroot" = 1)
|
||||
items = list(
|
||||
/obj/item/reagent_containers/food/snacks/dip/sarmikhir
|
||||
)
|
||||
finished_temperature = T0C + 200
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE
|
||||
result = /obj/item/reagent_containers/food/snacks/soup/zharkir
|
||||
|
||||
// Tajaran cakes
|
||||
/singleton/recipe/conecake
|
||||
appliance = OVEN
|
||||
|
||||
@@ -462,6 +462,13 @@
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/blt
|
||||
|
||||
/singleton/recipe/cucumber_sandwich
|
||||
fruit = list("cucumber" = 1)
|
||||
items = list(
|
||||
/obj/item/reagent_containers/food/snacks/breadslice,
|
||||
/obj/item/reagent_containers/food/snacks/breadslice
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/cucumber_sandwich
|
||||
|
||||
//pita (these are all under bread for icon reasons)
|
||||
/singleton/recipe/pita
|
||||
|
||||
@@ -102,6 +102,13 @@
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE //So we don't end up with a ton of potato juice
|
||||
result = /obj/item/reagent_containers/food/snacks/fries_olympia
|
||||
|
||||
/singleton/recipe/fried_pickles
|
||||
appliance = FRYER
|
||||
items = list(
|
||||
/obj/item/reagent_containers/food/snacks/sliced_pickle
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/fried_pickles
|
||||
|
||||
//Fishy Recipes
|
||||
//==================
|
||||
/singleton/recipe/fishandchips
|
||||
|
||||
@@ -25,3 +25,10 @@
|
||||
reagents = list(/singleton/reagent/nutriment/coating/batter = 5)
|
||||
result = /obj/item/reagent_containers/food/snacks/plaincrepe
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE
|
||||
|
||||
/singleton/recipe/pickle
|
||||
appliance = MIX
|
||||
fruit = list("cucumber" = 1)
|
||||
reagents = list(/singleton/reagent/enzyme = 5)
|
||||
result = /obj/item/reagent_containers/food/snacks/pickle
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE
|
||||
|
||||
@@ -125,3 +125,8 @@
|
||||
result = /obj/item/reagent_containers/food/snacks/salad/jungle_salad
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
||||
|
||||
/singleton/recipe/tossed_salad
|
||||
fruit = list("cabbage" = 1, "tomato" = 1, "cucumber" = 1)
|
||||
reagents = list(/singleton/reagent/sodiumchloride = 1)
|
||||
result = /obj/item/reagent_containers/food/snacks/salad/tossed_salad
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
||||
|
||||
@@ -104,13 +104,13 @@
|
||||
/singleton/recipe/gazpacho
|
||||
appliance = MIX
|
||||
reagents = list(/singleton/reagent/water = 10, /singleton/reagent/sodiumchloride = 1, /singleton/reagent/blackpepper = 1)
|
||||
fruit = list("tomato" = 1, "bellpepper" = 1) //if cucumbers are added to the game please add them to this recipe
|
||||
fruit = list("tomato" = 1, "bellpepper" = 1, "cucumber" = 1)
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE
|
||||
result = /obj/item/reagent_containers/food/snacks/soup/gazpacho
|
||||
|
||||
/singleton/recipe/pumpkin_soup
|
||||
appliance = SAUCEPAN | POT | MICROWAVE
|
||||
fruit = list("pumpkin" = 1) //if cucumbers are added to the game please add them to this recipe
|
||||
fruit = list("pumpkin" = 1)
|
||||
reagents = list(/singleton/reagent/water = 5, /singleton/reagent/drink/milk/cream = 5)
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE
|
||||
result = /obj/item/reagent_containers/food/snacks/soup/pumpkin
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
name = "tray"
|
||||
icon = 'icons/obj/kitchen.dmi'
|
||||
icon_state = "tray"
|
||||
item_state = "tray"
|
||||
contained_sprite = TRUE
|
||||
desc = "A metal tray to lay food on."
|
||||
throwforce = 12.0
|
||||
force = 15
|
||||
|
||||
Reference in New Issue
Block a user