Skip to content

Commit

Permalink
Update command_secretary.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
silicons authored Sep 22, 2023
1 parent d597d5f commit 14d236f
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions code/modules/jobs/job_types/station/command/command_secretary.dm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/datum/role/job/station/command_secretary
id = JOB_ID_COMMAND_SECRETARY
title = "Command Secretary"
title = "Bridge Officer"
economy_payscale = ECONOMY_PAYSCALE_JOB_HELM
flag = BRIDGE
departments = list(DEPARTMENT_COMMAND)
Expand All @@ -20,37 +20,43 @@
ACCESS_ENGINEERING_MAINT,
)

outfit_type = /datum/outfit/job/station/command_secretary
desc = "A Command Secretary handles paperwork duty for the Heads of Staff, so they can better focus on managing their departments. \
They are not Heads of Staff, and have no real authority."
outfit_type = /datum/outfit/job/station/command_secretary/bridge_officer
desc = "A bridge officer is often considered command staff in-training. Their duties are to assist the command staff with things like paperwork, \
as well as to assist in piloting the ship when deemed necessary and applicable."

alt_titles = list(
"Command Liaison" = /datum/prototype/struct/alt_title/command_liaison,
"Bridge Secretary" = /datum/prototype/struct/alt_title/bridge_secretary,
"Command Assistant" = /datum/prototype/struct/alt_title/command_assistant,
"Command Intern" = /datum/prototype/struct/alt_title/command_intern,
"Helmsman" = /datum/prototype/struct/alt_title/commsec/helmsman,
"Bridge Officer" = /datum/prototype/struct/alt_title/commsec/officer
"Command Secretary" = /datum/prototype/struct/alt_title/commsec/actually_commsec
)

//! todo: WHY DO WE HAVE SO MANY GET RID OF THEM

/datum/prototype/struct/alt_title/command_liaison
title = "Command Liaison"
title_outfit = /datum/outfit/job/station/command_secretary

/datum/prototype/struct/alt_title/bridge_secretary
title = "Bridge Secretary"
title_outfit = /datum/outfit/job/station/command_secretary

/datum/prototype/struct/alt_title/command_assistant
title = "Command Assistant"
title_outfit = /datum/outfit/job/station/command_secretary

/datum/prototype/struct/alt_title/command_intern
title = "Command Intern"
title_outfit = /datum/outfit/job/station/command_secretary

/datum/prototype/struct/alt_title/commsec/helmsman
title = "Helmsman"

/datum/prototype/struct/alt_title/commsec/officer
title = "Bridge Officer"
title_outfit = /datum/outfit/job/station/command_secretary/bridge_officer
/datum/prototype/struct/alt_title/commsec/actually_commsec
title = "Command Secretary"
title_outfit = /datum/outfit/job/station/command_secretary

/datum/outfit/job/station/command_secretary
name = OUTFIT_JOB_NAME("Command Secretary")
Expand Down

0 comments on commit 14d236f

Please sign in to comment.