mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-19 19:10:05 +01:00
Circuitboard Back and Forth (#8433)
You can now convert ghetto PSU boards back into standard APC power control modules by using a multi-tool.
This commit is contained in:
@@ -18,7 +18,14 @@
|
||||
|
||||
/obj/item/circuitboard/ghettosmes
|
||||
name = T_BOARD("makeshift PSU")
|
||||
desc = "An APC circuit repurposed into some power storage device controller"
|
||||
desc = "An APC circuit repurposed into some power storage device controller."
|
||||
build_path = "/obj/machinery/power/smes/batteryrack/makeshift"
|
||||
board_type = "machine"
|
||||
req_components = list("/obj/item/cell" = 3)
|
||||
|
||||
/obj/item/circuitboard/ghettosmes/attackby(obj/item/W, mob/user)
|
||||
if(W.ismultitool())
|
||||
var/obj/item/module/power_control/new_circuit = new /obj/item/module/power_control(get_turf(src))
|
||||
to_chat(user, SPAN_NOTICE("You modify \the [src] into an APC power control module."))
|
||||
qdel(src)
|
||||
user.put_in_hands(new_circuit)
|
||||
|
||||
Reference in New Issue
Block a user