Merge pull request #12944 from Somememeguy/MakeCookingGreatAgain

Make Cooking Great Again [Tedium Update, Rebalance some cooking aspects]
This commit is contained in:
Casey
2022-05-12 15:25:15 -04:00
committed by CHOMPStation2
parent 70d0e4cf4b
commit a5ed33a2e1
7 changed files with 98 additions and 36 deletions

View File

@@ -140,7 +140,7 @@
id = "dough"
result = null
required_reagents = list("egg" = 3, "flour" = 10)
inhibitors = list("water" = 1, "beer" = 1) //To prevent it messing with batter recipes
inhibitors = list("water" = 1, "beer" = 1, "sugar" = 1) //To prevent it messing with batter recipes
result_amount = 1
/decl/chemical_reaction/instant/food/dough/on_reaction(var/datum/reagents/holder, var/created_volume)
@@ -189,6 +189,13 @@
required_reagents = list("flour" = 5, "coco" = 5, "sugar" = 5)
result_amount = 15
/decl/chemical_reaction/instant/food/cakebatter
name = "Cake Batter"
id = "cakebatter"
result = "cakebatter"
required_reagents = list("flour" = 15, "milk" = 10, "sugar" = 15, "egg" = 3)
result_amount = 60
/decl/chemical_reaction/instant/food/butter
name = "Butter"
id = "butter"

View File

@@ -692,6 +692,13 @@
reagent_state = SOLID
color = "#441a03"
/datum/reagent/cakebatter
name = "Cake Batter"
id = "cakebatter"
description = "A batter for making delicious cakes."
reagent_state = LIQUID
color = "#F0EDDA"
/datum/reagent/frostoil
name = "Frost Oil"
id = "frostoil"