Files
GS13NG/code/game/objects/items/implants/implant_exile.dm
evilew 10ef9e374a Nanotrasen to GATO - comments
I know it's a mess, but the least I can do is add comments anywhere I can
2024-11-19 01:59:28 +01:00

23 lines
832 B
Plaintext

//Exile implants will allow you to use the station gate, but not return home.
//This will allow security to exile badguys/for badguys to exile their kill targets
/obj/item/implant/exile
name = "exile implant"
desc = "Prevents you from returning from away missions."
activated = 0
/obj/item/implant/exile/get_data() //GS13 - Nanotrasen to GATO
var/dat = {"<b>Implant Specifications:</b><BR>
<b>Name:</b> GATO Employee Exile Implant<BR>
<b>Implant Details:</b> The onboard gateway system has been modified to reject entry by individuals containing this implant<BR>"}
return dat
/obj/item/implanter/exile
name = "implanter (exile)"
imp_type = /obj/item/implant/exile
/obj/item/implantcase/exile
name = "implant case - 'Exile'"
desc = "A glass case containing an exile implant."
imp_type = /obj/item/implant/exile