Skip to content

Commit

Permalink
[MIRROR] Battery acid pie (#2142)
Browse files Browse the repository at this point in the history
* Battery acid pie (#81663)

## About The Pull Request

I added a battery acid pie you make with 2 batteries and one plain pie


![image](https://github.com/tgstation/tgstation/assets/55806451/f7d4ed6f-9d71-46ea-ac62-0035c28612d7)


## Why It's Good For The Game

The game had a very noticeable and substantial lack of battery acid pies
(plus I wanted there to be more dishes for ethereals)

edit: sorry I couldn't figure out how to add labels

## Changelog
🆑 
add: Added the battery acid pie
/:cl:

* Battery acid pie

---------

Co-authored-by: NovaBot <[email protected]>
Co-authored-by: L0pz <[email protected]>
  • Loading branch information
3 people authored Feb 29, 2024
1 parent 580010f commit 0eb5f2a
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
27 changes: 27 additions & 0 deletions code/game/objects/items/food/pie.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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
Binary file modified icons/obj/food/piecake.dmi
Binary file not shown.

0 comments on commit 0eb5f2a

Please sign in to comment.