Files
Paradise/code/datums/wires/tesla_coil.dm
Fox-McCloud ee44034138 Tesla Update
2017-03-26 17:53:55 -04:00

23 lines
476 B
Plaintext

/datum/wires/tesla_coil
wire_count = 1
holder_type = /obj/machinery/power/tesla_coil
var/const/WIRE_ZAP = 1
/datum/wires/tesla_coil/GetWireName(index)
switch(index)
if(WIRE_ZAP)
return "Zap"
/datum/wires/tesla_coil/CanUse(mob/living/L)
var/obj/machinery/power/tesla_coil/T = holder
if(T && T.panel_open)
return 1
return 0
/datum/wires/tesla_coil/UpdatePulsed(index)
var/obj/machinery/power/tesla_coil/T = holder
switch(index)
if(WIRE_ZAP)
T.zap()
..()