mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-19 10:06:56 +01:00
* CHIPS * microchip implanter * more chips to purge * bio-chip * catches more things * tgui * final merge changes * Update code/game/machinery/cloning.dm Co-authored-by: Farie82 <farie82@users.noreply.github.com> * oops Co-authored-by: Farie82 <farie82@users.noreply.github.com>
26 lines
740 B
Plaintext
26 lines
740 B
Plaintext
/obj/item/implant/tracking
|
|
name = "tracking bio-chip"
|
|
desc = "Track with this."
|
|
activated = BIOCHIP_ACTIVATED_PASSIVE
|
|
origin_tech = "materials=2;magnets=2;programming=2;biotech=2"
|
|
implant_data = /datum/implant_fluff/tracking
|
|
implant_state = "implant-nanotrasen"
|
|
var/warn_cooldown = 0
|
|
|
|
/obj/item/implant/tracking/Initialize(mapload)
|
|
. = ..()
|
|
GLOB.tracked_implants += src
|
|
|
|
/obj/item/implant/tracking/Destroy()
|
|
GLOB.tracked_implants -= src
|
|
return ..()
|
|
|
|
/obj/item/implanter/tracking
|
|
name = "bio-chip implanter (tracking)"
|
|
implant_type = /obj/item/implant/tracking
|
|
|
|
/obj/item/implantcase/tracking
|
|
name = "bio-chip case - 'Tracking'"
|
|
desc = "A glass case containing a tracking bio-chip."
|
|
implant_type = /obj/item/implant/tracking
|