From d9710f2ba5ff4775206c23bcc084b5135052475b Mon Sep 17 00:00:00 2001 From: KnighTheThrasher Date: Tue, 25 Jun 2024 17:48:54 +0200 Subject: [PATCH] science uniforms --- .../modules/loadouts/items/under/under.dm | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/monkestation/code/modules/loadouts/items/under/under.dm b/monkestation/code/modules/loadouts/items/under/under.dm index 52d22403ab09..2ae5d9f8ac50 100644 --- a/monkestation/code/modules/loadouts/items/under/under.dm +++ b/monkestation/code/modules/loadouts/items/under/under.dm @@ -566,3 +566,25 @@ GLOBAL_LIST_INIT(loadout_miscunders, generate_loadout_items(/datum/loadout_item/ item_path = /obj/item/clothing/under/rank/cargo/qm/nova/casual restricted_roles = list(JOB_QUARTERMASTER) requires_purchase = FALSE + + //SCIENCE + +/datum/loadout_item/under/formal/nova/rnd/scientist/utility + name = "science utility uniform" + item_path = /obj/item/clothing/under/rank/rnd/scientist/nova/utility + restricted_roles = list(JOB_SCIENTIST, JOB_GENETICIST, JOB_RESEARCH_DIRECTOR) + requires_purchase = FALSE + +/datum/loadout_item/under/formal/nova/rnd/scientist/hluniform + name = "science team uniform" + item_path = /obj/item/clothing/under/rank/rnd/scientist/nova/hlscience + restricted_roles = list(JOB_SCIENTIST, JOB_GENETICIST, JOB_RESEARCH_DIRECTOR) + requires_purchase = FALSE + + //RESEARCH DIRECTOR + +/datum/loadout_item/under/formal/nova/rnd/scientist/hluniform + name = "research director's naval jumpsuit" + item_path = /obj/item/clothing/under/rank/rnd/research_director/nova/imperial + restricted_roles = list(JOB_RESEARCH_DIRECTOR) + requires_purchase = FALSE