mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Blondies! (Allergenless brownies) (#7367)
This commit is contained in:
@@ -267,3 +267,40 @@
|
|||||||
/obj/item/weapon/reagent_containers/food/snacks/tastybread/sequel/Initialize()
|
/obj/item/weapon/reagent_containers/food/snacks/tastybread/sequel/Initialize()
|
||||||
. = ..()
|
. = ..()
|
||||||
bitesize = 4
|
bitesize = 4
|
||||||
|
|
||||||
|
/obj/item/weapon/reagent_containers/food/snacks/sliceable/blondies
|
||||||
|
name = "blondies"
|
||||||
|
gender = PLURAL
|
||||||
|
desc = "Like a brownie, but instead of chocolate it's vanilla. Dogs love it!"
|
||||||
|
icon = 'icons/obj/food_ch.dmi'
|
||||||
|
icon_state = "blondies"
|
||||||
|
slice_path = /obj/item/weapon/reagent_containers/food/snacks/blondiesslice
|
||||||
|
slices_num = 4
|
||||||
|
trash = /obj/item/trash/brownies
|
||||||
|
filling_color = "#E39C29"
|
||||||
|
nutriment_amt = 8
|
||||||
|
nutriment_desc = list("vanilla" = 8)
|
||||||
|
center_of_mass = list("x"=15, "y"=9)
|
||||||
|
bitesize = 2
|
||||||
|
|
||||||
|
/obj/item/weapon/reagent_containers/food/snacks/sliceable/blondies/Initialize()
|
||||||
|
. = ..()
|
||||||
|
reagents.add_reagent("protein", 2)
|
||||||
|
|
||||||
|
/obj/item/weapon/reagent_containers/food/snacks/blondiesslice
|
||||||
|
name = "blondie"
|
||||||
|
desc = "a dense, decadent vanilla blondie."
|
||||||
|
icon = 'icons/obj/food_ch.dmi'
|
||||||
|
icon_state = "blondiesslice"
|
||||||
|
trash = /obj/item/trash/plate
|
||||||
|
filling_color = "#F5B951"
|
||||||
|
bitesize = 2
|
||||||
|
nutriment_desc = list("vanilla" = 1)
|
||||||
|
center_of_mass = list("x"=16, "y"=12)
|
||||||
|
|
||||||
|
/obj/item/weapon/reagent_containers/food/snacks/blondiesslice/filled
|
||||||
|
nutriment_amt = 1
|
||||||
|
|
||||||
|
/obj/item/weapon/reagent_containers/food/snacks/blondiesslice/filled/Initialize()
|
||||||
|
. = ..()
|
||||||
|
reagents.add_reagent("protein", 1)
|
||||||
|
|||||||
@@ -20,4 +20,10 @@
|
|||||||
appliance = OVEN
|
appliance = OVEN
|
||||||
reagents = list("cinnamonpowder" = 5, "sugar" = 10, "cornoil" = 10)
|
reagents = list("cinnamonpowder" = 5, "sugar" = 10, "cornoil" = 10)
|
||||||
result = /obj/item/weapon/reagent_containers/food/snacks/spicy_boys
|
result = /obj/item/weapon/reagent_containers/food/snacks/spicy_boys
|
||||||
result_quantity = 6
|
result_quantity = 6
|
||||||
|
|
||||||
|
/datum/recipe/blondies
|
||||||
|
appliance = OVEN
|
||||||
|
reagents = list("blondiemix" = 10, "egg" = 3)
|
||||||
|
reagent_mix = RECIPE_REAGENT_REPLACE //No egg or mix in final recipe
|
||||||
|
result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/blondies
|
||||||
|
|||||||
@@ -13,3 +13,10 @@
|
|||||||
for(var/i = 1, i <= created_volume, i++)
|
for(var/i = 1, i <= created_volume, i++)
|
||||||
new /obj/item/weapon/reagent_containers/food/snacks/monkeycube/sarucube(location)
|
new /obj/item/weapon/reagent_containers/food/snacks/monkeycube/sarucube(location)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
/decl/chemical_reaction/instant/food/blondiemix
|
||||||
|
name = "Blondie Mix"
|
||||||
|
id = "blondie"
|
||||||
|
result = "blondie"
|
||||||
|
required_reagents = list("flour" = 5, "vanilla" = 5, "sugar" = 5)
|
||||||
|
result_amount = 15
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 26 KiB |
@@ -727,3 +727,10 @@
|
|||||||
glass_icon_state = "wormblood"
|
glass_icon_state = "wormblood"
|
||||||
glass_center_of_mass = list("x"=16, "y"=8)
|
glass_center_of_mass = list("x"=16, "y"=8)
|
||||||
glass_icon_file = 'icons/obj/drinks_yw.dmi'
|
glass_icon_file = 'icons/obj/drinks_yw.dmi'
|
||||||
|
|
||||||
|
/datum/reagent/blondiemix
|
||||||
|
name = "Blondie Mix"
|
||||||
|
id = "blondiemix"
|
||||||
|
description = "A dry mix for making delicious blondies."
|
||||||
|
reagent_state = SOLID
|
||||||
|
color = "#f3b44e"
|
||||||
|
|||||||
Reference in New Issue
Block a user