Finishes off my ancient "cinnamon expansion" of foods (#7780)

This commit is contained in:
KotetsuRedwood
2024-02-18 13:21:10 +01:00
committed by GitHub
parent 48ffe39bf8
commit cf48ea4e96
3 changed files with 42 additions and 11 deletions
+25 -10
View File
@@ -207,7 +207,7 @@
/obj/item/weapon/reagent_containers/food/snacks/slicable/buttspie
name = "Butterscotch-Cinnamon Pie"
desc = "A delightfully caramel-coloured filling in a crispy pie base, dotted with sprays of cream."
desc = "A delightfully caramel-coloured filling in a crispy pie base."
icon = 'icons/obj/food_ch.dmi'
icon_state = "butts_pie" //Sprite by Dinnel
slice_path = /obj/item/weapon/reagent_containers/food/snacks/slice/buttspie
@@ -218,11 +218,11 @@
/obj/item/weapon/reagent_containers/food/snacks/slicable/buttspie/Initialize()
..()
bitesize = 4
bitesize = 2
/obj/item/weapon/reagent_containers/food/snacks/slice/buttspie //TODO: Fix the numbers.
/obj/item/weapon/reagent_containers/food/snacks/slice/buttspie
name = "Slice of Butterscotch-Cinnamon Pie"
desc = "A slice of pie, filled with delightfully caramel-coloured filling. There a spray of cream on top."
desc = "A slice of pie, filled with delightfully caramel-coloured filling."
icon = 'icons/obj/food_ch.dmi'
icon_state = "butts_pie_slice" //Sprite by Dinnel
trash = /obj/item/trash/plate
@@ -237,18 +237,33 @@
desc = "Spicy little candy rounds for very naughty individuals."
icon = 'icons/obj/food_ch.dmi'
icon_state = "spicy_boys" //Sprite by Dinnel
nutriment_amt = 1 //todo - change numbers
nutriment_desc = list("a sweet, candy-like spiciness." = 2) //WIP flavour??
nutriment_amt = 2
nutriment_desc = list("sweet cinnamon candy" = 2)
/obj/item/weapon/reagent_containers/food/snacks/cinnamonroll
name = "cinnamon roll"
desc = "A precious little cinnamon roll, just begging to be eaten."
icon = 'icons/obj/food_ch.dmi'
icon_state = "cinnamon_roll" //Sprite by Dinnel
nutriment_amt = 1 //Todo - Change numbers.
nutriment_desc = list("a precious sweetness that needs protecting" = 2) //This is a WIP flavour, Could keep it if you don't mind the "gotta protect the precious cinnamon roll" joke
nutriment_amt = 2
nutriment_desc = list("a sweetness worth protecting" = 2)
//TODO: Maybe butterscotch candies?
/obj/item/weapon/reagent_containers/food/snacks/welders_original
name = "Welder's Original"
desc = "A golden, oblong sweet commonly eaten by both engineers and the elderly."
icon = 'icons/obj/food_ch.dmi'
icon_state = "welders_original" //Sprite by Dinnel
nutriment_amt = 2
nutriment_desc = list("smooth, creamy butterscotch and caramel" = 2)
//GRANNY CREAM'S HOT BUTTER ICE CREAM
/obj/item/weapon/reagent_containers/food/snacks/hotbuttericecream
name = "Hot Butter Ice Cream"
desc = "A bowl of ice cream and hot butter mixed together into an ominous, frothy concoction."
icon = 'icons/obj/food_ch.dmi'
icon_state = "hotbuttericecream" //Sprite by Dinnel
nutriment_amt = 4
nutriment_desc = list ("hot butter" = 2, "ice cream" = 2)
//So what if like yknow, you buy a bread tube and wow you actually get to test the new and improved producct.
/obj/item/weapon/reagent_containers/food/snacks/tastybread/sequel
@@ -263,7 +278,7 @@
if(prob(1))
new /obj/item/weapon/reagent_containers/food/snacks/tastybread/sequel(src)
qdel(src) //Dispose of the body, let no one find it.
/obj/item/weapon/reagent_containers/food/snacks/tastybread/sequel/Initialize()
. = ..()
bitesize = 4
@@ -106,3 +106,10 @@
)
result = /obj/item/weapon/reagent_containers/food/snacks/butterscotch
result_quantity = 2
/datum/recipe/hotbuttericecream
reagents = list("milk" = 5, "cream" = 5)
items = list(
/obj/item/weapon/reagent_containers/food/snacks/spreads/butter
)
result = /obj/item/weapon/reagent_containers/food/snacks/hotbuttericecream
+10 -1
View File
@@ -16,12 +16,21 @@
)
result = /obj/item/weapon/reagent_containers/food/snacks/cinnamonroll
/datum/recipe/spicy_boys
/datum/recipe/spicy_boys //TODO: Possibly see if recipe can be in the candymaker?
appliance = OVEN
reagents = list("cinnamonpowder" = 5, "sugar" = 10, "cornoil" = 10)
result = /obj/item/weapon/reagent_containers/food/snacks/spicy_boys
result_quantity = 6
/datum/recipe/welders_original //TODO: Possibly see if recipe can be in the candymaker?
appliance = OVEN
reagents = list("sugar" = 5)
items = list(
/obj/item/weapon/reagent_containers/food/snacks/butterscotch
)
result = /obj/item/weapon/reagent_containers/food/snacks/welders_original
result_quantity = 6
/datum/recipe/blondies
appliance = OVEN
reagents = list("blondiemix" = 10, "egg" = 3)