mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Links many map-specific details such as the station name, z-level information, and allowed jobs from global vars to map datum vars, which should help us maintain multiple maps at once in the future, which will be needed for the future Southern Cross. Note that a config change will be needed to change GENERATE_ASTEROID to GENERATE_MAP, otherwise no changes should be required to continue normal map usage. To change to a different map, it's suggested to tick the file that ticks all the other needed files, which for the Northern Star is called northern_star.dm.
51 lines
1.4 KiB
Plaintext
51 lines
1.4 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/weapon/implanter/exile
|
|
name = "implanter-exile"
|
|
|
|
/obj/item/weapon/implanter/exile/New()
|
|
src.imp = new /obj/item/weapon/implant/exile( src )
|
|
..()
|
|
update()
|
|
return
|
|
|
|
|
|
/obj/item/weapon/implant/exile
|
|
name = "exile"
|
|
desc = "Prevents you from returning from away missions"
|
|
|
|
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/weapon/implantcase/exile
|
|
name = "Glass Case- 'Exile'"
|
|
desc = "A case containing an exile implant."
|
|
icon = 'icons/obj/items.dmi'
|
|
icon_state = "implantcase-r"
|
|
|
|
|
|
New()
|
|
src.imp = new /obj/item/weapon/implant/exile( src )
|
|
..()
|
|
return
|
|
|
|
|
|
/obj/structure/closet/secure_closet/exile
|
|
name = "Exile Implants"
|
|
req_access = list(access_hos)
|
|
|
|
New()
|
|
..()
|
|
sleep(2)
|
|
new /obj/item/weapon/implanter/exile(src)
|
|
new /obj/item/weapon/implantcase/exile(src)
|
|
new /obj/item/weapon/implantcase/exile(src)
|
|
new /obj/item/weapon/implantcase/exile(src)
|
|
new /obj/item/weapon/implantcase/exile(src)
|
|
new /obj/item/weapon/implantcase/exile(src)
|
|
return |