From d79f16c5df232ebcf1488e17ae42d7778fed82a5 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Mon, 22 Sep 2025 09:25:46 -0400 Subject: [PATCH] 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. --- code/modules/research/designs/protolathe/power_designs.dm | 8 ++++++++ .../changelogs/hellfirejag-heavy-duty-cell-bounty-fix.yml | 4 ++++ 2 files changed, 12 insertions(+) create mode 100644 html/changelogs/hellfirejag-heavy-duty-cell-bounty-fix.yml diff --git a/code/modules/research/designs/protolathe/power_designs.dm b/code/modules/research/designs/protolathe/power_designs.dm index 1c15e966bc2..4c8e9311f19 100644 --- a/code/modules/research/designs/protolathe/power_designs.dm +++ b/code/modules/research/designs/protolathe/power_designs.dm @@ -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) diff --git a/html/changelogs/hellfirejag-heavy-duty-cell-bounty-fix.yml b/html/changelogs/hellfirejag-heavy-duty-cell-bounty-fix.yml new file mode 100644 index 00000000000..6c8970abdc5 --- /dev/null +++ b/html/changelogs/hellfirejag-heavy-duty-cell-bounty-fix.yml @@ -0,0 +1,4 @@ +author: Hellfirejag +delete-after: True +changes: + - rscadd: "Heavy-Duty power cells required for logistics bounties can now actually be made in protolathes without having to steal them from APCs."