mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-22 23:15:13 +00:00
* Grammar fixes to atom descriptions - Capitalization and punctuation on most descriptions - CentCom instead of centcom where appropriate - Earth instead of earth where appropriate * Remove spaces before newlines and oneline some strings
24 lines
871 B
Plaintext
24 lines
871 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."
|
|
origin_tech = "materials=2;biotech=3;magnets=2;bluespace=3"
|
|
activated = 0
|
|
|
|
/obj/item/implant/exile/get_data()
|
|
var/dat = {"<b>Implant Specifications:</b><BR>
|
|
<b>Name:</b> Nanotrasen 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
|