forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
44 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#include "_gateway.dm" | ||
|
||
#include "code/exile.dm" | ||
#include "code/gateway.dm" | ||
#include "code/gateway_config.dm" | ||
#include "code/gateway_initialize.dm" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// 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 bio-chip" | ||
desc = "Prevents you from returning from away missions" | ||
origin_tech = "materials=2;biotech=3;magnets=2;bluespace=3" | ||
activated = BIOCHIP_ACTIVATED_PASSIVE | ||
implant_data = /datum/implant_fluff/exile | ||
implant_state = "implant-nanotrasen" | ||
|
||
/datum/implant_fluff/exile | ||
name = "Nanotrasen Employee Exile Bio-chip" | ||
life = "Known to last up to 3 to 4 years." | ||
notes = "The onboard station gateway system has been modified to reject entry by individuals containing this bio-chip." | ||
function = "Prevents the user from reentering the station through the gateway.... alive." | ||
|
||
/obj/item/implanter/exile | ||
name = "bio-chip implanter (exile)" | ||
implant_type = /obj/item/implant/exile | ||
|
||
/obj/item/implantcase/exile | ||
name = "bio-chip case - 'Exile'" | ||
desc = "A glass case containing an exile bio-chip." | ||
implant_type = /obj/item/implant/exile | ||
|
||
/obj/structure/closet/secure_closet/exile | ||
name = "exile bio-chips" | ||
req_access = list(ACCESS_ARMORY) | ||
|
||
/obj/structure/closet/secure_closet/exile/populate_contents() | ||
new /obj/item/implanter/exile(src) | ||
new /obj/item/implantcase/exile(src) | ||
new /obj/item/implantcase/exile(src) | ||
new /obj/item/implantcase/exile(src) | ||
new /obj/item/implantcase/exile(src) | ||
new /obj/item/implantcase/exile(src) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters