diff --git a/code/modules/food/recipes_candy.dm b/code/modules/food/recipes_candy.dm index 794fcb649e2..8067820786f 100644 --- a/code/modules/food/recipes_candy.dm +++ b/code/modules/food/recipes_candy.dm @@ -25,8 +25,37 @@ items = list() result = /obj/item/weapon/reagent_containers/food/snacks/chocolatebar +/datum/recipe/candy/fudge_peanut + reagents = list("sugar" = 5, "milk" = 5) + items = list(/obj/item/weapon/reagent_containers/food/snacks/chocolatebar) + fruit = list("peanuts" = 3) + result = /obj/item/weapon/reagent_containers/food/snacks/candy/fudge/peanut + +/datum/recipe/candy/fudge_cherry + reagents = list("sugar" = 5, "milk" = 5) + items = list(/obj/item/weapon/reagent_containers/food/snacks/chocolatebar) + fruit = list("cherries" = 3) + result = /obj/item/weapon/reagent_containers/food/snacks/candy/fudge/cherry + +/datum/recipe/candy/fudge_cookies_n_cream + reagents = list("sugar" = 5, "milk" = 5, "cream" = 5) + items = list( + /obj/item/weapon/reagent_containers/food/snacks/chocolatebar, + /obj/item/weapon/reagent_containers/food/snacks/cookie, + ) + result = /obj/item/weapon/reagent_containers/food/snacks/candy/fudge/cookies_n_cream + +/datum/recipe/candy/fudge_turtle + reagents = list("sugar" = 5, "milk" = 5) + items = list( + /obj/item/weapon/reagent_containers/food/snacks/chocolatebar, + /obj/item/weapon/reagent_containers/food/snacks/candy/caramel, + ) + fruit = list("peanuts" = 1) + result = /obj/item/weapon/reagent_containers/food/snacks/candy/fudge/turtle + /datum/recipe/candy/fudge - reagents = list("sugar" = 5, "cream" = 5) + reagents = list("sugar" = 5, "milk" = 5) items = list(/obj/item/weapon/reagent_containers/food/snacks/chocolatebar) result = /obj/item/weapon/reagent_containers/food/snacks/candy/fudge diff --git a/code/modules/hydroponics/seed_datums.dm b/code/modules/hydroponics/seed_datums.dm index d7ce6d9f49a..372e3df9a98 100644 --- a/code/modules/hydroponics/seed_datums.dm +++ b/code/modules/hydroponics/seed_datums.dm @@ -899,6 +899,7 @@ seed_name = "peanut" display_name = "peanut vines" chems = list("plantmatter" = list(1,10)) + kitchen_tag = "peanuts" preset_icon = "peanuts" /datum/seed/peanuts/New() diff --git a/code/modules/reagents/reagent_containers/food/snacks/candy.dm b/code/modules/reagents/reagent_containers/food/snacks/candy.dm index 39abcac4a6a..1370eff0093 100644 --- a/code/modules/reagents/reagent_containers/food/snacks/candy.dm +++ b/code/modules/reagents/reagent_containers/food/snacks/candy.dm @@ -96,6 +96,34 @@ reagents.add_reagent("chocolate",6) bitesize = 3 +/obj/item/weapon/reagent_containers/food/snacks/candy/fudge/peanut + name = "Peanut Fudge" + desc = "Chocolate fudge, with bits of peanuts mixed in. People with nut allergies shouldn't eat this." + icon_state = "fudge_peanut" + filling_color = "#7D5F46" + +/obj/item/weapon/reagent_containers/food/snacks/candy/fudge/cherry + name = "Chocolate Cherry Fudge" + desc = "Chocolate fudge surrounding sweet cherries. Good for tricking kids into eating some fruit." + icon_state = "fudge_cherry" + filling_color = "#7D5F46" + +/obj/item/weapon/reagent_containers/food/snacks/candy/fudge/cookies_n_cream + name = "Cookies 'n' Cream Fudge" + desc = "An extra creamy fudge with bits of real chocolate cookie mixed in. Crunchy!" + icon_state = "fudge_cookies_n_cream" + filling_color = "#7D5F46" + +/obj/item/weapon/reagent_containers/food/snacks/candy/fudge/cookies_n_cream/New() + ..() + reagents.add_reagent("cream", 3) + +/obj/item/weapon/reagent_containers/food/snacks/candy/fudge/turtle + name = "Turtle Fudge" + desc = "Chocolate fudge with caramel and nuts. It doesn't contain real turtles, thankfully." + icon_state = "fudge_turtle" + filling_color = "#7D5F46" + // *********************************************************** // Candy Products (Pre-existing) // *********************************************************** diff --git a/icons/obj/food/candy.dmi b/icons/obj/food/candy.dmi index ed86db2b0bd..4bf2f9b9862 100644 Binary files a/icons/obj/food/candy.dmi and b/icons/obj/food/candy.dmi differ