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