Last active
October 3, 2018 03:32
-
-
Save SpaceManiac/3cf56dda8292be6aec65423f1333cfdd to your computer and use it in GitHub Desktop.
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
#define JOB_MODIFICATION_MAP_NAME "NSS Frenzy" | |
// Command | |
/datum/job/New() | |
..() | |
MAP_JOB_CHECK | |
supervisors = "the captain and the head of personnel" | |
/datum/job/captain/New() | |
..() | |
MAP_JOB_CHECK | |
supervisors = "Nanotrasen and Central Command" | |
MAP_REMOVE_JOB(hop) | |
// Service | |
MAP_REMOVE_JOB(bartender) | |
MAP_REMOVE_JOB(hydro) | |
MAP_REMOVE_JOB(clown) | |
MAP_REMOVE_JOB(mime) | |
MAP_REMOVE_JOB(curator) | |
MAP_REMOVE_JOB(lawyer) | |
/datum/outfit/job/chaplain/New() | |
..() | |
MAP_JOB_CHECK | |
backpack_contents[/obj/item/soapstone] = 1 | |
// Supply | |
MAP_REMOVE_JOB(qm) | |
MAP_REMOVE_JOB(cargo_tech) | |
/datum/job/mining/New() | |
..() | |
MAP_JOB_CHECK | |
title = "Supply Technician" | |
total_positions = 2 | |
spawn_positions = 3 | |
/datum/outfit/job/mining/New() | |
..() | |
MAP_JOB_CHECK | |
box = /obj/item/storage/box/survival_mining | |
// Engineering | |
/datum/job/engineer/New() | |
..() | |
MAP_JOB_CHECK | |
title = "Ship Engineer" | |
supervisors = initial(supervisors) | |
spawn_positions = 2 | |
total_positions = 2 | |
/datum/job/atmos/New() | |
..() | |
MAP_JOB_CHECK | |
title = "Life Support Technician" | |
supervisors = initial(supervisors) | |
spawn_positions = 0 | |
total_positions = 1 | |
// Medical | |
MAP_REMOVE_JOB(cmo) | |
MAP_REMOVE_JOB(chemist) | |
MAP_REMOVE_JOB(geneticist) | |
MAP_REMOVE_JOB(virologist) | |
/datum/job/doctor/New() | |
..() | |
MAP_JOB_CHECK | |
spawn_positions = 1 | |
total_positions = 2 | |
// Research | |
MAP_REMOVE_JOB(rd) | |
MAP_REMOVE_JOB(roboticist) | |
/datum/job/scientist/New() | |
..() | |
MAP_JOB_CHECK | |
spawn_positions = 1 | |
total_positions = 2 | |
// Security | |
MAP_REMOVE_JOB(warden) | |
MAP_REMOVE_JOB(detective) | |
/datum/job/officer/New() | |
..() | |
MAP_JOB_CHECK | |
supervisors = initial(supervisors) | |
spawn_positions = 1 | |
total_positions = 2 | |
// Silicon | |
MAP_REMOVE_JOB(cyborg) |
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
#define JOB_MODIFICATION_MAP_NAME "SB Station" | |
MAP_REMOVE_JOB(curator) | |
MAP_REMOVE_JOB(virologist) | |
MAP_REMOVE_JOB(warden) | |
// With no curator, give the soapstone to the chaplain | |
/datum/outfit/job/chaplain/New() | |
..() | |
MAP_JOB_CHECK | |
backpack_contents[/obj/item/soapstone] = 1 | |
/datum/job/hydro/New() | |
..() | |
MAP_JOB_CHECK | |
spawn_positions = 1 | |
/datum/job/chemist/New() | |
..() | |
MAP_JOB_CHECK | |
spawn_positions = 1 | |
/datum/job/lawyer/New() | |
..() | |
MAP_JOB_CHECK | |
spawn_positions = 1 |
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
#define JOB_MODIFICATION_MAP_NAME "ScienceStation" | |
// Research Director - all-access / Captain equivalent. | |
/datum/job/rd/New() | |
..() | |
MAP_JOB_CHECK | |
supervisors = "Nanotrasen and Central Command" | |
/datum/job/rd/get_access() | |
MAP_JOB_CHECK_BASE | |
return get_all_accesses() | |
/datum/job/rd/announce(mob/living/carbon/human/H) | |
..() | |
MAP_JOB_CHECK | |
SSticker.OnRoundstart(CALLBACK(GLOBAL_PROC, .proc/minor_announce, "Director [H.real_name] on deck!")) | |
/datum/outfit/job/rd/New() | |
..() | |
MAP_JOB_CHECK | |
id = /obj/item/card/id/gold | |
ears = /obj/item/radio/headset/heads/captain/alt | |
backpack_contents[/obj/item/station_charter] = 1 | |
// Lieutenant - a CentCom representative to replace the Head of Personnel. | |
/datum/job/hop/New() | |
..() | |
MAP_JOB_CHECK | |
title = "Lieutenant" | |
supervisors = "Nanotrasen and Central Command" | |
GLOB.command_positions |= "Lieutenant" | |
/datum/job/hop/get_access() | |
. = ..() | |
MAP_JOB_CHECK | |
. += ACCESS_BRIG | |
. -= ACCESS_ENGINE | |
/datum/outfit/job/hop/New() | |
..() | |
MAP_JOB_CHECK | |
uniform = /obj/item/clothing/under/rank/centcom_officer | |
suit = /obj/item/clothing/suit/armor/vest | |
shoes = /obj/item/clothing/shoes/sneakers/black | |
gloves = /obj/item/clothing/gloves/color/black | |
ears = /obj/item/radio/headset/headset_cent/commander | |
glasses = /obj/item/clothing/glasses/hud/security/sunglasses/eyepatch | |
mask = /obj/item/clothing/mask/cigarette/cigar/cohiba | |
head = /obj/item/clothing/head/centhat | |
belt = /obj/item/gun/ballistic/revolver/mateba | |
r_pocket = /obj/item/lighter | |
l_pocket = /obj/item/pda/heads/hop | |
back = /obj/item/storage/backpack/satchel/leather | |
id = /obj/item/card/id | |
backpack = /obj/item/storage/backpack/satchel/leather | |
satchel = /obj/item/storage/backpack/satchel/leather | |
duffelbag = /obj/item/storage/backpack/duffelbag/sec | |
pda_slot = SLOT_L_STORE | |
implants = list(/obj/item/implant/mindshield) | |
backpack_contents -= /obj/item/modular_computer/tablet/preset/advanced | |
backpack_contents[/obj/item/storage/wallet/random] = 1 | |
/datum/outfit/job/hop/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE) | |
..() | |
MAP_JOB_CHECK | |
var/obj/item/card/id/W = H.wear_id | |
W.icon_state = "centcom" | |
// Lieutenant oversees the Janitor and Warden and handles supply | |
/datum/job/janitor/New() | |
..() | |
MAP_JOB_CHECK | |
spawn_positions = 1 | |
total_positions = 1 | |
supervisors = "the Lieutenant" | |
/datum/job/warden/New() | |
..() | |
MAP_JOB_CHECK | |
supervisors = "the Lieutenant" | |
// Research Director oversees unlimited scientists and cyborgs | |
/datum/job/scientist/New() | |
..() | |
MAP_JOB_CHECK | |
title = "Physical Scientist" | |
supervisors = "the Research Director" | |
total_positions = -1 | |
spawn_positions = -1 | |
/datum/job/scientist/get_access() | |
. = ..() | |
MAP_JOB_CHECK | |
. -= list(ACCESS_XENOBIOLOGY) | |
. |= list(ACCESS_ROBOTICS) | |
/datum/job/doctor/New() | |
..() | |
MAP_JOB_CHECK | |
title = "Biological Scientist" | |
supervisors = "the Research Director" | |
total_positions = -1 | |
spawn_positions = -1 | |
/datum/job/doctor/get_access() | |
. = ..() | |
MAP_JOB_CHECK | |
. |= list(ACCESS_CHEMISTRY, ACCESS_GENETICS, ACCESS_XENOBIOLOGY, ACCESS_VIROLOGY) | |
/datum/job/cyborg/New() | |
..() | |
MAP_JOB_CHECK | |
total_positions = -1 | |
spawn_positions = -1 | |
// Borgs are restricted to Engineering and Mining duty only | |
/mob/living/silicon/robot/pick_module() | |
MAP_JOB_CHECK_BASE | |
if(module.type != /obj/item/robot_module) | |
return | |
if(wires.is_cut(WIRE_RESET_MODULE)) | |
to_chat(src,"<span class='userdanger'>ERROR: Module installer reply timeout. Please check internal connections.</span>") | |
return | |
var/list/modulelist = list("Engineering" = /obj/item/robot_module/engineering, "Miner" = /obj/item/robot_module/miner) | |
var/input_module = input("Please, select a module!", "Robot", null, null) as null|anything in modulelist | |
if(!input_module || module.type != /obj/item/robot_module) | |
return | |
module.transform_to(modulelist[input_module]) | |
// Everyone else begone | |
MAP_REMOVE_JOB(captain) | |
MAP_REMOVE_JOB(bartender) | |
MAP_REMOVE_JOB(cook) | |
MAP_REMOVE_JOB(hydro) | |
MAP_REMOVE_JOB(clown) | |
MAP_REMOVE_JOB(mime) | |
MAP_REMOVE_JOB(curator) | |
MAP_REMOVE_JOB(lawyer) | |
MAP_REMOVE_JOB(chaplain) | |
MAP_REMOVE_JOB(qm) | |
MAP_REMOVE_JOB(cargo_tech) | |
MAP_REMOVE_JOB(mining) | |
MAP_REMOVE_JOB(chief_engineer) | |
MAP_REMOVE_JOB(engineer) | |
MAP_REMOVE_JOB(atmos) | |
MAP_REMOVE_JOB(cmo) | |
MAP_REMOVE_JOB(chemist) | |
MAP_REMOVE_JOB(geneticist) | |
MAP_REMOVE_JOB(virologist) | |
MAP_REMOVE_JOB(roboticist) | |
MAP_REMOVE_JOB(hos) | |
MAP_REMOVE_JOB(detective) | |
MAP_REMOVE_JOB(officer) | |
MAP_REMOVE_JOB(ai) | |
MAP_REMOVE_JOB(assistant) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment