mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-01-01 20:54:38 +00:00
15 lines
334 B
Plaintext
15 lines
334 B
Plaintext
|
|
/datum/wires/tesla_coil
|
|
randomize = 1 //Only one wire don't need blueprints
|
|
holder_type = /obj/machinery/power/tesla_coil
|
|
req_knowledge = JOB_SKILL_TRAINED
|
|
|
|
/datum/wires/tesla_coil/New(atom/holder)
|
|
wires = list(WIRE_ZAP)
|
|
..()
|
|
|
|
/datum/wires/tesla_coil/on_pulse(wire)
|
|
var/obj/machinery/power/tesla_coil/C = holder
|
|
C.zap()
|
|
..()
|