diff --git a/code/game/objects/items/food/cake.dm b/code/game/objects/items/food/cake.dm index f35a121d5a94..f1645857c90f 100644 --- a/code/game/objects/items/food/cake.dm +++ b/code/game/objects/items/food/cake.dm @@ -665,3 +665,36 @@ ) tastes = list("cake" = 2, "cream" = 3, "pineapple" = 4) foodtypes = GRAIN | DAIRY | SUGAR | FRUIT | PINEAPPLE + +/obj/item/food/cake/yellow_cake + name = "yellow cake" + desc = "A chalky yellow cake.. has a weird aura about it." + icon_state = "yellow_cake" + food_reagents = list( + /datum/reagent/uranium = 18, + /datum/reagent/consumable/sugar = 12, + /datum/reagent/consumable/nutriment = 6, + /datum/reagent/consumable/nutriment/vitamin = 6, + /datum/reagent/toxin/polonium = 12, + ) + tastes = list("uranium" = 2, "chalk" = 4) + foodtypes = GRAIN | DAIRY | SUGAR | GROSS + slice_type = /obj/item/food/cakeslice/yellow_cake + +/obj/item/food/cake/yellow_cake/make_processable() + ..() + radiation_pulse(src, 50) + +/obj/item/food/cakeslice/yellow_cake + name = "yellow cake slice" + desc = "A chalky yellow cake.. has a weird aura about it." + icon_state = "yellow_cake_slice" + food_reagents = list( + /datum/reagent/uranium = 3, + /datum/reagent/consumable/sugar = 2, + /datum/reagent/consumable/nutriment = 1, + /datum/reagent/consumable/nutriment/vitamin = 1, + /datum/reagent/toxin/polonium = 2, + ) + tastes = list("uranium" = 2, "chalk" = 4) + foodtypes = GRAIN | DAIRY | SUGAR | GROSS diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm index b70b3b9114c1..84e9983955c3 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm @@ -267,3 +267,13 @@ ) result = /obj/item/food/cake/pineapple_cream_cake category = CAT_CAKE + +/datum/crafting_recipe/food/yellow_cake + name = "yellow cake" + reqs = list ( + /datum/reagent/consumable/sugar = 5, + /datum/reagent/uranium = 20, + /obj/item/food/cake/plain = 1, + ) + result = /obj/item/food/cake/yellow_cake + category = CAT_CAKE diff --git a/icons/obj/food/piecake.dmi b/icons/obj/food/piecake.dmi index 9fc4da69c2ba..e1fe1623a314 100644 Binary files a/icons/obj/food/piecake.dmi and b/icons/obj/food/piecake.dmi differ