mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-21 11:07:12 +01:00
* make changes do good * implements requested changes * Apply suggestions from code review Co-authored-by: Farie82 <farie82@users.noreply.github.com> * Abstracts checks * guh Co-authored-by: Farie82 <farie82@users.noreply.github.com>
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
/obj/item/implant/tracking
|
|
name = "tracking implant"
|
|
desc = "Track with this."
|
|
activated = IMPLANT_ACTIVATED_PASSIVE
|
|
origin_tech = "materials=2;magnets=2;programming=2;biotech=2"
|
|
var/id = 1
|
|
var/warn_cooldown = 0
|
|
|
|
|
|
/obj/item/implant/tracking/New()
|
|
..()
|
|
GLOB.tracked_implants += src
|
|
|
|
/obj/item/implant/tracking/Destroy()
|
|
GLOB.tracked_implants -= src
|
|
return ..()
|
|
|
|
/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> None<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.<HR>
|
|
Implant Specifics:<BR>"}
|
|
return dat
|