mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-16 17:43:35 +01:00
24 lines
635 B
Plaintext
24 lines
635 B
Plaintext
/obj/item/bio_chip/emp
|
|
name = "emp bio-chip"
|
|
desc = "Triggers an EMP."
|
|
icon_state = "emp"
|
|
origin_tech = "biotech=3;magnets=4;syndicate=1"
|
|
uses = 2
|
|
implant_data = /datum/implant_fluff/emp
|
|
implant_state = "implant-syndicate"
|
|
|
|
/obj/item/bio_chip/emp/activate()
|
|
uses--
|
|
INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(empulse), get_turf(imp_in), 3, 5, 1)
|
|
if(!uses)
|
|
qdel(src)
|
|
|
|
/obj/item/bio_chip_implanter/emp
|
|
name = "bio-chip implanter (EMP)"
|
|
implant_type = /obj/item/bio_chip/emp
|
|
|
|
/obj/item/bio_chip_case/emp
|
|
name = "bio-chip case - 'EMP'"
|
|
desc = "A glass case containing an EMP bio-chip."
|
|
implant_type = /obj/item/bio_chip/emp
|