mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 04:22:39 +01:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user