mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-08 22:50:51 +01:00
[MIRROR] Major egg rework. Pavlova edition (#6825)
* Major egg rework. Pavlova edition (#59933) * I'm getting closer * ree * Update food_mixtures.dm * FOrgot this * almost there * yeeeeeeeeees * oops * Update food_mixtures.dm * Update cake.dm * Update cake.dm * Ath fixes * Why did I type 8 * yolk nutriment + whipped cream nutriment * Oranges found where I live, there is a gun against my head. * Update code/modules/reagents/chemistry/machinery/reagentgrinder.dm Co-authored-by: necromanceranne <40847847+necromanceranne@ users.noreply.github.com> * Update code/game/objects/items/food/cake.dm Co-authored-by: necromanceranne <40847847+necromanceranne@ users.noreply.github.com> * I'll just warn you now. I don't know how to use a computer * Local Australian has a very small brain. Co-authored-by: necromanceranne <40847847+necromanceranne@ users.noreply.github.com> * Major egg rework. Pavlova edition Co-authored-by: carshalash <carshalash@gmail.com> Co-authored-by: necromanceranne <40847847+necromanceranne@ users.noreply.github.com>
This commit is contained in:
@@ -467,3 +467,39 @@
|
||||
food_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/nutriment/vitamin = 1)
|
||||
tastes = list("cake" = 4, "butter" = 2, "cream" = 1)
|
||||
foodtypes = GRAIN | DAIRY | SUGAR
|
||||
|
||||
/obj/item/food/cake/pavlovacream
|
||||
name = "pavlova"
|
||||
desc = "A sweet berry pavlova. Invented in New Zealand, has become popular with Vox for some reason."
|
||||
icon_state = "pavlova"
|
||||
food_reagents = list(/datum/reagent/consumable/nutriment = 20, /datum/reagent/consumable/nutriment/vitamin = 5)
|
||||
tastes = list("meringue" = 5, "creaminess" = 1, "berries" = 1)
|
||||
foodtypes = DAIRY | FRUIT | SUGAR
|
||||
|
||||
/obj/item/food/cake/pavlovacream/MakeProcessable()
|
||||
AddElement(/datum/element/processable, TOOL_KNIFE, /obj/item/food/cakeslice/pavlovacream, 5, 30)
|
||||
|
||||
/obj/item/food/cakeslice/pavlovacream
|
||||
name = "Pavlova slice"
|
||||
desc = "A cracked slice of pavlova stacked with berries"
|
||||
icon_state = "pavlova_slice"
|
||||
tastes = list("meringue" = 5, "creaminess" = 1, "berries" = 1)
|
||||
foodtypes = DAIRY | FRUIT | SUGAR
|
||||
|
||||
/obj/item/food/cake/pavlovakorta
|
||||
name = "pavlova"
|
||||
desc = "A sweet berry pavlova. Invented in New Zealand, has become popular with Vox for some reason."
|
||||
icon_state = "pavlova"
|
||||
food_reagents = list(/datum/reagent/consumable/nutriment = 20, /datum/reagent/consumable/nutriment/vitamin = 5)
|
||||
tastes = list("meringue" = 5, "creaminess" = 1, "berries" = 1)
|
||||
foodtypes = NUTS | FRUIT | SUGAR
|
||||
|
||||
/obj/item/food/cake/pavlovakorta/MakeProcessable()
|
||||
AddElement(/datum/element/processable, TOOL_KNIFE, /obj/item/food/cakeslice/pavlovakorta, 5, 30)
|
||||
|
||||
/obj/item/food/cakeslice/pavlovakorta
|
||||
name = "pavlova slice"
|
||||
desc = "A cracked slice of pavlova stacked with berries"
|
||||
icon_state = "pavlova_slice"
|
||||
tastes = list("meringue" = 5, "creaminess" = 1, "berries" = 1)
|
||||
foodtypes = NUTS | FRUIT | SUGAR
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
name = "egg"
|
||||
desc = "An egg!"
|
||||
icon_state = "egg"
|
||||
food_reagents = list(/datum/reagent/consumable/eggyolk = 5)
|
||||
food_reagents = list(/datum/reagent/consumable/eggyolk = 2, /datum/reagent/consumable/eggwhite = 4)
|
||||
microwaved_type = /obj/item/food/boiledegg
|
||||
foodtypes = MEAT
|
||||
w_class = WEIGHT_CLASS_TINY
|
||||
|
||||
@@ -136,7 +136,7 @@
|
||||
<h2>Basic ingredients preparation:</h2>
|
||||
|
||||
<b>Dough:</b> 10u water + 15u flour for simple dough.<br>
|
||||
15u egg yolk + 15u flour + 5u sugar for cake batter.<br>
|
||||
6u egg yolk + 12 egg white + 15u flour + 5u sugar for cake batter.<br>
|
||||
Doughs can be transformed by using a knife and rolling pin.<br>
|
||||
All doughs can be microwaved.<br>
|
||||
<b>Bowl:</b> Add water to it for soup preparation.<br>
|
||||
|
||||
Reference in New Issue
Block a user