Makes rechargers buildable, deconstructable and upgradable (#22657)

Adds circuit boards and parts for rechargers and wall rechargers.
Rechargers can be built, deconstructed and upgraded. Wall rechargers can
only be upgraded.
The required parts can be printed in R&D.

<img width="1086" height="613" alt="image"
src="https://github.com/user-attachments/assets/9deb7917-4c59-4149-b1db-85e53b0447d3"
/>
This commit is contained in:
FenodyreeAv
2026-06-13 20:53:46 +00:00
committed by GitHub
parent 6e2002c1be
commit a78a6796b5
5 changed files with 114 additions and 18 deletions
@@ -0,0 +1,16 @@
/obj/item/circuitboard/recharger
name = T_BOARD("recharger")
build_path = /obj/structure/machinery/recharger
board_type = BOARD_MACHINE
origin_tech = list(TECH_POWER = 2, TECH_ENGINEERING = 1)
req_components = list(
"/obj/item/stock_parts/capacitor" = 2
)
/obj/item/circuitboard/recharger/wallcharger
name = T_BOARD("wall recharger")
build_path = /obj/structure/machinery/recharger/wallcharger
origin_tech = list(TECH_DATA = 4, TECH_POWER = 3, TECH_ENGINEERING = 3)
req_components = list(
"/obj/item/stock_parts/capacitor" = 3
)