diff --git a/code/game/objects/items/food/pie.dm b/code/game/objects/items/food/pie.dm index 46674fb735e..e5775991520 100644 --- a/code/game/objects/items/food/pie.dm +++ b/code/game/objects/items/food/pie.dm @@ -484,3 +484,30 @@ tastes = list("pie" = 1, "the far off year of 2010" = 1) foodtypes = GRAIN crafting_complexity = FOOD_COMPLEXITY_2 + +/obj/item/food/pie/bacid_pie + name = "battery acid pie" + desc = "Ooh it's a pie made of... battery acid? You suppose an ethereal could find some enjoyement in eating this." + icon_state = "bacid_pie" + food_reagents = list( + /datum/reagent/consumable/nutriment = 18, + /datum/reagent/consumable/liquidelectricity/enriched = 18 + ) + tastes = list("battery acid" = 2, "electricity" = 2, "a cyber world" = 2) + foodtypes = TOXIC + slice_type = /obj/item/food/pieslice/bacid_pie + yield = 4 + crafting_complexity = FOOD_COMPLEXITY_3 + + +/obj/item/food/pieslice/bacid_pie + name = "battery acid pie slice" + desc = "The battery acid filling has a concerningly appealing bright green color" + icon_state = "bacid_pie_slice" + food_reagents = list( + /datum/reagent/consumable/nutriment = 4.5, + /datum/reagent/consumable/liquidelectricity/enriched = 4.5 + ) + tastes = list("battery acid" = 1, "electricity" = 1, "a cyber world" = 1) + foodtypes = TOXIC + crafting_complexity = FOOD_COMPLEXITY_3 diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm index 93851558cff..a9f1ad23d8e 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm @@ -237,3 +237,11 @@ ) result = /obj/item/food/pie/asdfpie category = CAT_PIE + +/datum/crafting_recipe/food/bacid_pie + reqs = list( + /obj/item/food/pie/plain = 1, + /obj/item/stock_parts/cell = 2, + ) + result = /obj/item/food/pie/bacid_pie + category = CAT_PIE diff --git a/icons/obj/food/piecake.dmi b/icons/obj/food/piecake.dmi index 8474ba29fe9..e6c0a71022d 100644 Binary files a/icons/obj/food/piecake.dmi and b/icons/obj/food/piecake.dmi differ