mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* Buffs TRAC rounds and allows dets to use the tracking program - TRAC implant now lasts 5 minutes - Dets now start with a modular PDA - Radar programs now work on PDAs - Tracking program now only requires brig access * I cant count * Updates the comments It was technically correct
47 lines
1.6 KiB
Plaintext
47 lines
1.6 KiB
Plaintext
/obj/item/implant/tracking
|
|
name = "tracking implant"
|
|
desc = "Track with this."
|
|
activated = FALSE
|
|
var/lifespan_postmortem = 10 MINUTES //for how long after user death will the implant work?
|
|
var/allow_teleport = TRUE //will people implanted with this act as teleporter beacons?
|
|
|
|
/obj/item/implant/tracking/c38
|
|
name = "TRAC implant"
|
|
desc = "A smaller tracking implant that supplies power for only a few minutes."
|
|
var/lifespan = 15 MINUTES //how long does the implant last?
|
|
allow_teleport = FALSE
|
|
|
|
/obj/item/implant/tracking/c38/Initialize()
|
|
. = ..()
|
|
QDEL_IN(src, lifespan)
|
|
|
|
/obj/item/implant/tracking/New()
|
|
..()
|
|
GLOB.tracked_implants += src
|
|
|
|
/obj/item/implant/tracking/Destroy()
|
|
. = ..()
|
|
GLOB.tracked_implants -= src
|
|
|
|
/obj/item/implanter/tracking
|
|
imp_type = /obj/item/implant/tracking
|
|
|
|
/obj/item/implanter/tracking/gps
|
|
imp_type = /obj/item/gps/mining/internal
|
|
|
|
/obj/item/implant/tracking/get_data()
|
|
var/dat = {"<b>Implant Specifications:</b><BR>
|
|
<b>Name:</b> Tracking Beacon<BR>
|
|
<b>Life:</b> 10 minutes after death of host.<BR>
|
|
<b>Important Notes:</b> Implant also works as a teleporter beacon.<BR>
|
|
<HR>
|
|
<b>Implant Details:</b> <BR>
|
|
<b>Function:</b> Continuously transmits low power signal. Useful for tracking.<BR>
|
|
<b>Special Features:</b><BR>
|
|
<i>Neuro-Safe</i>- Specialized shell absorbs excess voltages self-destructing the chip if
|
|
a malfunction occurs thereby securing safety of subject. The implant will melt and
|
|
disintegrate into bio-safe elements.<BR>
|
|
<b>Integrity:</b> Gradient creates slight risk of being overcharged and frying the
|
|
circuitry. As a result neurotoxins can cause massive damage."}
|
|
return dat
|