mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-26 09:03:37 +00:00
* the descs * Update chameleonproj.dm * Update dualsaber.dm * Update implant_misc.dm * Update energy.dm * Update toys.dm * Update toys.dm * Update chameleon.dm * Update pen.dm * grammar * Update implantuplink.dm * Update implant_stealth.dm * Update energy.dm * Update chameleon.dm * Update pen.dm Co-authored-by: MLGTASTICa <ak9bc01d@yahoo.com>
47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
/obj/item/implant/freedom
|
|
name = "freedom implant"
|
|
desc = "Use this to escape from those evil Red Shirts."
|
|
icon_state = "freedom"
|
|
implant_color = "r"
|
|
uses = 4
|
|
|
|
|
|
/obj/item/implant/freedom/activate()
|
|
. = ..()
|
|
uses--
|
|
to_chat(imp_in, "<span class='hear'>You feel a faint click.</span>")
|
|
if(iscarbon(imp_in))
|
|
var/mob/living/carbon/C_imp_in = imp_in
|
|
C_imp_in.uncuff()
|
|
if(!uses)
|
|
qdel(src)
|
|
|
|
|
|
/obj/item/implant/freedom/get_data()
|
|
var/dat = {"
|
|
<b>Implant Specifications:</b><BR>
|
|
<b>Name:</b> Freedom Beacon<BR>
|
|
<b>Life:</b> optimum 5 uses<BR>
|
|
<b>Important Notes:</b> <font color='red'>Illegal</font><BR>
|
|
<HR>
|
|
<b>Implant Details:</b> <BR>
|
|
<b>Function:</b> Transmits a specialized cluster of signals to override handcuff locking
|
|
mechanisms<BR>
|
|
<b>Special Features:</b><BR>
|
|
<i>Neuro-Scan</i>- Analyzes certain shadow signals in the nervous system<BR>
|
|
<HR>
|
|
No Implant Specifics"}
|
|
return dat
|
|
|
|
|
|
/obj/item/implanter/freedom
|
|
name = "implanter" // Skyrat edit , was implanter (freedom)
|
|
imp_type = /obj/item/implant/freedom
|
|
special_desc_requirement = EXAMINE_CHECK_SYNDICATE // Skyrat edit
|
|
special_desc = "A Syndicate implanter used for a freedom implant" // Skyrat edit
|
|
|
|
/obj/item/implantcase/freedom
|
|
name = "implant case - 'Freedom'"
|
|
desc = "A glass case containing a freedom implant."
|
|
imp_type = /obj/item/implant/freedom
|