mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 11:43:31 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
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/implanter/exile
|
|
name = "implanter-exile"
|
|
|
|
/obj/item/implanter/exile/New()
|
|
src.imp = new /obj/item/implant/exile( src )
|
|
..()
|
|
update()
|
|
return
|
|
|
|
|
|
/obj/item/implant/exile
|
|
name = "exile"
|
|
desc = "Prevents you from returning from away missions"
|
|
|
|
/obj/item/implant/exile/get_data()
|
|
var/dat = {"
|
|
<b>Implant Specifications:</b><BR>
|
|
<b>Name:</b> [using_map.company_name] 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/implantcase/exile
|
|
name = "Glass Case- 'Exile'"
|
|
desc = "A case containing an exile implant."
|
|
icon = 'icons/obj/items.dmi'
|
|
icon_state = "implantcase-r"
|
|
|
|
|
|
/obj/item/implantcase/exile/New()
|
|
src.imp = new /obj/item/implant/exile( src )
|
|
..()
|
|
return
|
|
|
|
|
|
/obj/structure/closet/secure_closet/exile
|
|
name = "Exile Implants"
|
|
req_access = list(access_hos)
|
|
starts_with = list(/obj/item/implanter/exile = 1, /obj/item/implantcase/exile = 5)
|