Files
Paradise/code/modules/economy/Job_Departments.dm
2014-06-27 17:57:18 -04:00

70 lines
1.7 KiB
Plaintext

var/list/station_departments = list("Command", "Medical", "Engineering", "Science", "Security", "Cargo", "Support", "Civilian")
// The department the job belongs to.
/datum/job/var/department = null
// Whether this is a head position
/datum/job/var/head_position = 0
/datum/job/captain/department = "Command"
/datum/job/captain/head_position = 1
/datum/job/hop/department = "Support"
/datum/job/hop/head_position = 1
/datum/job/civilian/department = "Civilian"
/datum/job/bartender/department = "Support"
/datum/job/chef/department = "Support"
/datum/job/hydro/department = "Support"
/datum/job/mining/department = "Support"
/datum/job/janitor/department = "Support"
/datum/job/librarian/department = "Support"
/datum/job/lawyer/department = "Support"
/datum/job/chaplain/department = "Support"
/datum/job/qm/department = "Cargo"
/datum/job/qm/head_position = 1
/datum/job/cargo_tech/department = "Cargo"
/datum/job/chief_engineer/department = "Engineering"
/datum/job/chief_engineer/head_position = 1
/datum/job/engineer/department = "Engineering"
/datum/job/atmos/department = "Engineering"
/datum/job/cmo/department = "Medical"
/datum/job/cmo/head_position = 1
/datum/job/doctor/department = "Medical"
/datum/job/chemist/department = "Medical"
/datum/job/geneticist/department = "Medical"
/datum/job/psychiatrist/department = "Medical"
/datum/job/rd/department = "Science"
/datum/job/rd/head_position = 1
/datum/job/scientist/department = "Science"
/datum/job/roboticist/department = "Science"
/datum/job/hos/department = "Security"
/datum/job/hos/head_position = 1
/datum/job/warden/department = "Security"
/datum/job/detective/department = "Security"
/datum/job/officer/department = "Security"