Power Cell Bounty Fix (#21366)

Logistics bounties sometimes asked for a "Heavy Duty Power Cell" which
was an item that was not actually manufacturable by the ship, and could
only be obtained by stealing them from the APCs they spawned in. This PR
adds the ability for protolathes to manufacture them directly, just like
the other upgraded versions of APC power cells.
This commit is contained in:
VMSolidus
2025-09-22 13:25:46 +00:00
committed by GitHub
parent 501638e19f
commit d79f16c5df
2 changed files with 12 additions and 0 deletions
@@ -13,12 +13,20 @@
C.charge = 0 //shouldn't produce power out of thin air.
return C
// This is actually a battery.
/datum/design/item/powercell/basic
name = "Basic"
req_tech = list(TECH_POWER = 1)
materials = list(DEFAULT_WALL_MATERIAL = 700, MATERIAL_GLASS = 50)
build_path = /obj/item/cell
// This is actually the standard power cell found in APCs. And is called for by logistics bounties.
/datum/design/item/powercell/apc
name = "Heavy-Duty"
req_tech = list(TECH_POWER = 1)
materials = list(DEFAULT_WALL_MATERIAL = 700, MATERIAL_GLASS = 50)
build_path = /obj/item/cell/apc
/datum/design/item/powercell/high
name = "High-Capacity"
req_tech = list(TECH_POWER = 2)