This commit is contained in:
silicons
2020-08-06 23:09:02 -07:00
parent c664279e74
commit 8edb374a20
18 changed files with 252 additions and 224 deletions

View File

@@ -4,7 +4,7 @@
name = "IF YOU SEE THIS, PING A CODER RIGHT NOW!"
slot = SLOT_IN_BACKPACK
path = /obj/item/bikehorn/golden
category = CATEGORY_DONATOR
category = LOADOUT_CATEGORY_DONATOR
ckeywhitelist = list("This entry should never appear with this variable set.") //If it does, then that means somebody fucked up the whitelist system pretty hard
/datum/gear/donator/donortestingbikehorn

View File

@@ -43,8 +43,8 @@ GLOBAL_LIST_EMPTY(loadout_whitelist_ids)
/datum/gear
var/name
var/category = "NOCATEGORY"
var/subcategory = "NOSUBCATEGORY"
var/category = "LOADOUT_CATEGORY_NONE"
var/subcategory = "LOADOUT_SUBCATEGORY_NONE"
var/slot
var/description
var/path //item-to-spawn path

View File

@@ -11,21 +11,21 @@
/datum/gear/uniform/bluescrubs
name = "Blue Scrubs"
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
path = /obj/item/clothing/under/rank/medical/doctor/blue
restricted_roles = list("Medical Doctor", "Chief Medical Officer", "Geneticist", "Chemist", "Virologist")
restricted_desc = "Medical"
/datum/gear/uniform/greenscrubs
name = "Green Scrubs"
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
path = /obj/item/clothing/under/rank/medical/doctor/green
restricted_roles = list("Medical Doctor", "Chief Medical Officer", "Geneticist", "Chemist", "Virologist")
restricted_desc = "Medical"
/datum/gear/uniform/purplescrubs
name = "Purple Scrubs"
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
path = /obj/item/clothing/under/rank/medical/doctor/purple
restricted_roles = list("Medical Doctor", "Chief Medical Officer", "Geneticist", "Chemist", "Virologist")
restricted_desc = "Medical"
@@ -33,13 +33,13 @@
/datum/gear/head/nursehat
name = "Nurse Hat"
path = /obj/item/clothing/head/nursehat
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_roles = list("Medical Doctor", "Chief Medical Officer", "Geneticist", "Chemist", "Virologist")
restricted_desc = "Medical"
/datum/gear/uniform/nursesuit
name = "Nurse Suit"
path = /obj/item/clothing/under/rank/medical/doctor/nurse
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_roles = list("Medical Doctor", "Chief Medical Officer", "Geneticist", "Chemist", "Virologist")
restricted_desc = "Medical"

View File

@@ -1,70 +1,70 @@
/datum/gear/uniform/navyblueuniformhos
name = "Head of Security navyblue uniform"
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
path = /obj/item/clothing/under/rank/security/head_of_security/formal
restricted_roles = list("Head of Security")
/datum/gear/head/navybluehosberet
name = "Head of security's navyblue beret"
path = /obj/item/clothing/head/beret/sec/navyhos
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_roles = list("Head of Security")
/datum/gear/suit/navybluejackethos
name = "head of security's navyblue jacket"
subcategory = SUBCATEGORY_SUIT_JOBS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS
path = /obj/item/clothing/suit/armor/hos/navyblue
restricted_roles = list("Head of Security")
/datum/gear/suit/navybluejacketofficer
name = "security officer's navyblue jacket"
subcategory = SUBCATEGORY_SUIT_JOBS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS
path = /obj/item/clothing/suit/armor/navyblue
restricted_roles = list("Security Officer")
/datum/gear/head/navyblueofficerberet
name = "Security officer's Navyblue beret"
path = /obj/item/clothing/head/beret/sec/navyofficer
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_roles = list("Security Officer")
/datum/gear/uniform/navyblueuniformofficer
name = "Security officer navyblue uniform"
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
path = /obj/item/clothing/under/rank/security/officer/formal
restricted_roles = list("Security Officer")
/datum/gear/suit/navybluejacketwarden
name = "warden navyblue jacket"
subcategory = SUBCATEGORY_SUIT_JOBS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS
path = /obj/item/clothing/suit/armor/vest/warden/navyblue
restricted_roles = list("Warden")
/datum/gear/head/navybluewardenberet
name = "Warden's navyblue beret"
path = /obj/item/clothing/head/beret/sec/navywarden
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_roles = list("Warden")
/datum/gear/uniform/navyblueuniformwarden
name = "Warden navyblue uniform"
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
path = /obj/item/clothing/under/rank/security/warden/formal
restricted_roles = list("Warden")
/datum/gear/uniform/secskirt
name = "Security skirt"
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
path = /obj/item/clothing/under/rank/security/officer/skirt
restricted_roles = list("Security Officer", "Warden", "Head of Security")
/datum/gear/uniform/hosskirt
name = "Head of security's skirt"
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
path = /obj/item/clothing/under/rank/security/head_of_security/skirt
restricted_roles = list("Head of Security")
/datum/gear/glasses/sechud
name = "Security Hud"
path = /obj/item/clothing/glasses/hud/security
restricted_roles = list("Security Officer", "Warden", "Head of Security")
restricted_roles = list("Security Officer", "Warden", "Head of Security")

View File

@@ -1,33 +1,33 @@
/datum/gear/uniform/greytidestationwide
name = "Staff Assistant's jumpsuit"
path = /obj/item/clothing/under/misc/staffassistant
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_roles = list("Assistant")
/datum/gear/suit/neetsuit
name = "D.A.B. suit"
path = /obj/item/clothing/suit/assu_suit
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_roles = list("Assistant")
cost = 2
/datum/gear/head/neethelm
name = "D.A.B. helmet"
path = /obj/item/clothing/head/assu_helmet
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_roles = list("Assistant")
cost = 2
/datum/gear/backpack/plushvar
name = "Ratvar Plushie"
path = /obj/item/toy/plush/plushvar
subcategory = SUBCATEGORY_BACKPACK_TOYS
subcategory = LOADOUT_SUBCATEGORY_BACKPACK_TOYS
cost = 5
restricted_roles = list("Chaplain")
/datum/gear/backpack/narplush
name = "Narsie Plushie"
path = /obj/item/toy/plush/narplush
subcategory = SUBCATEGORY_BACKPACK_TOYS
subcategory = LOADOUT_SUBCATEGORY_BACKPACK_TOYS
cost = 5
restricted_roles = list("Chaplain")

View File

@@ -1,17 +1,17 @@
/datum/gear/backpack
category = CATEGORY_BACKPACK
subcategory = SUBCATEGORY_BACKPACK_GENERAL
category = LOADOUT_CATEGORY_BACKPACK
subcategory = LOADOUT_SUBCATEGORY_BACKPACK_GENERAL
slot = SLOT_IN_BACKPACK
/datum/gear/backpack/plushbox
name = "Plushie Choice Box"
path = /obj/item/choice_beacon/box/plushie
subcategory = SUBCATEGORY_BACKPACK_TOYS
subcategory = LOADOUT_SUBCATEGORY_BACKPACK_TOYS
/datum/gear/backpack/tennis
name = "Classic Tennis Ball"
path = /obj/item/toy/tennis
subcategory = SUBCATEGORY_BACKPACK_TOYS
subcategory = LOADOUT_SUBCATEGORY_BACKPACK_TOYS
/datum/gear/backpack/tennis/red
name = "Red Tennis Ball"
@@ -40,12 +40,12 @@
/datum/gear/backpack/dildo
name = "Customizable dildo"
path = /obj/item/dildo/custom
subcategory = SUBCATEGORY_BACKPACK_TOYS
subcategory = LOADOUT_SUBCATEGORY_BACKPACK_TOYS
/datum/gear/backpack/toykatana
name = "Toy Katana"
path = /obj/item/toy/katana
subcategory = SUBCATEGORY_BACKPACK_TOYS
subcategory = LOADOUT_SUBCATEGORY_BACKPACK_TOYS
cost = 3
/datum/gear/backpack/tapeplayer
@@ -63,7 +63,7 @@
/datum/gear/backpack/crayons
name = "Box of crayons"
path = /obj/item/storage/crayons
subcategory = SUBCATEGORY_BACKPACK_TOYS
subcategory = LOADOUT_SUBCATEGORY_BACKPACK_TOYS
/datum/gear/backpack/multipen
name = "A multicolored pen"

View File

@@ -1,5 +1,5 @@
/datum/gear/glasses
category = CATEGORY_GLASSES
category = LOADOUT_CATEGORY_GLASSES
slot = SLOT_GLASSES
/datum/gear/glasses/blindfold

View File

@@ -1,5 +1,5 @@
/datum/gear/gloves
category = CATEGORY_GLOVES
category = LOADOUT_CATEGORY_GLOVES
slot = SLOT_GLOVES
/datum/gear/gloves/fingerless

View File

@@ -1,5 +1,5 @@
/datum/gear/hands
category = CATEGORY_HANDS
category = LOADOUT_CATEGORY_HANDS
slot = SLOT_HANDS
/datum/gear/hands/cane

View File

@@ -1,6 +1,6 @@
/datum/gear/head
category = CATEGORY_HEAD
subcategory = SUBCATEGORY_HEAD_GENERAL
category = LOADOUT_CATEGORY_HEAD
subcategory = LOADOUT_SUBCATEGORY_HEAD_GENERAL
slot = SLOT_HEAD
/datum/gear/head/baseball
@@ -63,33 +63,33 @@
/datum/gear/head/trekcap
name = "Federation Officer's Cap (White)"
path = /obj/item/clothing/head/caphat/formal/fedcover
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_roles = list("Captain","Head of Personnel")
/datum/gear/head/trekcapcap
name = "Federation Officer's Cap (Black)"
path = /obj/item/clothing/head/caphat/formal/fedcover/black
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_roles = list("Captain","Head of Personnel")
/datum/gear/head/trekcapmedisci
name = "Federation Officer's Cap (Blue)"
path = /obj/item/clothing/head/caphat/formal/fedcover/medsci
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_desc = "Medical and Science"
restricted_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Virologist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist")
/datum/gear/head/trekcapeng
name = "Federation Officer's Cap (Yellow)"
path = /obj/item/clothing/head/caphat/formal/fedcover/eng
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_desc = "Engineering, Security, and Cargo"
restricted_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Cargo Technician", "Shaft Miner", "Quartermaster")
/datum/gear/head/trekcapsec
name = "Federation Officer's Cap (Red)"
path = /obj/item/clothing/head/caphat/formal/fedcover/sec
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_desc = "Engineering, Security, and Cargo"
restricted_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Cargo Technician", "Shaft Miner", "Quartermaster")
@@ -98,7 +98,7 @@
name = "Federation Kepi, command"
description = "A visored cap. Intended to be used with ORV uniform."
path = /obj/item/clothing/head/kepi/orvi/command
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_desc = "Heads of Staff"
restricted_roles = list("Head of Security", "Captain", "Head of Personnel", "Chief Engineer", "Research Director", "Chief Medical Officer", "Quartermaster")
@@ -106,7 +106,7 @@
name = "Federation Kepi, ops/sec"
description = "A visored cap. Intended to be used with ORV uniform."
path = /obj/item/clothing/head/kepi/orvi/engsec
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_desc = "Engineering, Security and Cargo"
restricted_roles = list("Chief Engineer", "Atmospheric Technician", "Station Engineer", "Warden", "Detective", "Security Officer", "Head of Security", "Cargo Technician", "Shaft Miner", "Quartermaster")
@@ -114,7 +114,7 @@
name = "Federation Kepi, medsci"
description = "A visored cap. Intended to be used with ORV uniform."
path = /obj/item/clothing/head/kepi/orvi/medsci
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_desc = "Medical and Science"
restricted_roles = list("Chief Medical Officer", "Medical Doctor", "Chemist", "Virologist", "Paramedic", "Geneticist", "Research Director", "Scientist", "Roboticist")
@@ -122,7 +122,7 @@
name = "Federation Kepi, service"
description = "A visored cap. Intended to be used with ORV uniform."
path = /obj/item/clothing/head/kepi/orvi/service
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_desc = "Service and Civilian, barring Clown, Mime and Lawyer"
restricted_roles = list("Assistant", "Bartender", "Botanist", "Cook", "Curator", "Janitor", "Chaplain")
@@ -130,7 +130,7 @@
name = "Federation Kepi, assistant"
description = "A visored cap. Intended to be used with ORV uniform."
path = /obj/item/clothing/head/kepi/orvi
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_roles = list("Assistant")
/*Commenting out Until next Christmas or made automatic
@@ -165,7 +165,7 @@
/datum/gear/head/cowboyhat/sec
name = "Cowboy Hat, Security"
path = /obj/item/clothing/head/cowboyhat/sec
subcategory = SUBCATEGORY_HEAD_JOBS
subcategory = LOADOUT_SUBCATEGORY_HEAD_JOBS
restricted_desc = "Security"
restricted_roles = list("Warden","Detective","Security Officer","Head of Security")

View File

@@ -1,5 +1,5 @@
/datum/gear/mask
category = CATEGORY_MASK
category = LOADOUT_CATEGORY_MASK
slot = SLOT_WEAR_MASK
/datum/gear/mask/balaclava

View File

@@ -1,21 +1,21 @@
/datum/gear/neck
category = CATEGORY_NECK
subcategory = SUBCATEGORY_NECK_GENERAL
category = LOADOUT_CATEGORY_NECK
subcategory = LOADOUT_SUBCATEGORY_NECK_GENERAL
slot = SLOT_NECK
/datum/gear/neck/bluetie
name = "Blue tie"
subcategory = SUBCATEGORY_NECK_TIE
subcategory = LOADOUT_SUBCATEGORY_NECK_TIE
path = /obj/item/clothing/neck/tie/blue
/datum/gear/neck/redtie
name = "Red tie"
subcategory = SUBCATEGORY_NECK_TIE
subcategory = LOADOUT_SUBCATEGORY_NECK_TIE
path = /obj/item/clothing/neck/tie/red
/datum/gear/neck/blacktie
name = "Black tie"
subcategory = SUBCATEGORY_NECK_TIE
subcategory = LOADOUT_SUBCATEGORY_NECK_TIE
path = /obj/item/clothing/neck/tie/black
/datum/gear/neck/collar
@@ -32,7 +32,7 @@
/datum/gear/neck/scarf
name = "White scarf"
subcategory = SUBCATEGORY_NECK_SCARVES
subcategory = LOADOUT_SUBCATEGORY_NECK_SCARVES
path = /obj/item/clothing/neck/scarf
/datum/gear/neck/scarf/black

View File

@@ -1,5 +1,5 @@
/datum/gear/shoes
category = CATEGORY_SHOES
category = LOADOUT_CATEGORY_SHOES
slot = SLOT_SHOES
/datum/gear/shoes/laceup

View File

@@ -1,6 +1,6 @@
/datum/gear/suit
category = CATEGORY_SUIT
subcategory = SUBCATEGORY_SUIT_GENERAL
category = LOADOUT_CATEGORY_SUIT
subcategory = LOADOUT_SUBCATEGORY_SUIT_GENERAL
slot = SLOT_WEAR_SUIT
/datum/gear/suit/poncho
@@ -23,67 +23,67 @@
/datum/gear/suit/jacketbomber
name = "Bomber jacket"
path = /obj/item/clothing/suit/jacket
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
/datum/gear/suit/jacketflannelblack // all of these are reskins of bomber jackets but with the vibe to make you look like a true lumberjack
name = "Black flannel jacket"
path = /obj/item/clothing/suit/jacket/flannel
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
/datum/gear/suit/jacketflannelred
name = "Red flannel jacket"
path = /obj/item/clothing/suit/jacket/flannel/red
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
/datum/gear/suit/jacketflannelaqua
name = "Aqua flannel jacket"
path = /obj/item/clothing/suit/jacket/flannel/aqua
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
/datum/gear/suit/jacketflannelbrown
name = "Brown flannel jacket"
path = /obj/item/clothing/suit/jacket/flannel/brown
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
/datum/gear/suit/jacketleather
name = "Leather jacket"
path = /obj/item/clothing/suit/jacket/leather
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
/datum/gear/suit/overcoatleather
name = "Leather overcoat"
path = /obj/item/clothing/suit/jacket/leather/overcoat
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
/datum/gear/suit/jacketpuffer
name = "Puffer jacket"
path = /obj/item/clothing/suit/jacket/puffer
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
/datum/gear/suit/vestpuffer
name = "Puffer vest"
path = /obj/item/clothing/suit/jacket/puffer/vest
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
/datum/gear/suit/jacketlettermanbrown
name = "Brown letterman jacket"
path = /obj/item/clothing/suit/jacket/letterman
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
/datum/gear/suit/jacketlettermanred
name = "Red letterman jacket"
path = /obj/item/clothing/suit/jacket/letterman_red
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
/datum/gear/suit/jacketlettermanNT
name = "Nanotrasen letterman jacket"
path = /obj/item/clothing/suit/jacket/letterman_nanotrasen
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
/datum/gear/suit/coat
name = "Winter coat"
path = /obj/item/clothing/suit/hooded/wintercoat
subcategory = SUBCATEGORY_SUIT_COATS
subcategory = LOADOUT_SUBCATEGORY_SUIT_COATS
/datum/gear/suit/coat/aformal
name = "Assistant's formal winter coat"
@@ -155,7 +155,7 @@
/datum/gear/suit/militaryjacket
name = "Military Jacket"
path = /obj/item/clothing/suit/jacket/miljacket
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
/datum/gear/suit/ianshirt
name = "Ian Shirt"
@@ -164,13 +164,13 @@
/datum/gear/suit/flakjack
name = "Flak Jacket"
path = /obj/item/clothing/suit/flakjack
subcategory = SUBCATEGORY_SUIT_JACKETS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
cost = 2
/datum/gear/suit/trekds9_coat
name = "DS9 Overcoat (use uniform)"
path = /obj/item/clothing/suit/storage/trek/ds9
subcategory = SUBCATEGORY_SUIT_JOBS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS
restricted_desc = "All, barring Service and Civilian"
restricted_roles = list("Head of Security","Captain","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Quartermaster",
"Medical Doctor","Chemist","Virologist","Paramedic","Geneticist","Scientist", "Roboticist",
@@ -180,27 +180,27 @@
/datum/gear/suit/trekcmdcap
name = "Fed (movie) uniform, Black"
path = /obj/item/clothing/suit/storage/fluff/fedcoat/capt
subcategory = SUBCATEGORY_SUIT_JOBS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS
restricted_roles = list("Captain","Head of Personnel")
/datum/gear/suit/trekcmdmov
name = "Fed (movie) uniform, Red"
path = /obj/item/clothing/suit/storage/fluff/fedcoat
subcategory = SUBCATEGORY_SUIT_JOBS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS
restricted_desc = "Heads of Staff and Security"
restricted_roles = list("Head of Security","Captain","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Quartermaster","Warden","Detective","Security Officer")
/datum/gear/suit/trekmedscimov
name = "Fed (movie) uniform, Blue"
path = /obj/item/clothing/suit/storage/fluff/fedcoat/medsci
subcategory = SUBCATEGORY_SUIT_JOBS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS
restricted_desc = "Medical and Science"
restricted_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Virologist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist")
/datum/gear/suit/trekengmov
name = "Fed (movie) uniform, Yellow"
path = /obj/item/clothing/suit/storage/fluff/fedcoat/eng
subcategory = SUBCATEGORY_SUIT_JOBS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS
restricted_desc = "Engineering and Cargo"
restricted_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Cargo Technician", "Shaft Miner", "Quartermaster")
@@ -212,38 +212,38 @@
/datum/gear/suit/trekcmdmod
name = "Fed (Modern) uniform, Red"
path = /obj/item/clothing/suit/storage/fluff/modernfedcoat/sec
subcategory = SUBCATEGORY_SUIT_JOBS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS
restricted_desc = "Heads of Staff and Security"
restricted_roles = list("Head of Security","Captain","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Quartermaster","Warden","Detective","Security Officer")
/datum/gear/suit/trekmedscimod
name = "Fed (Modern) uniform, Blue"
path = /obj/item/clothing/suit/storage/fluff/modernfedcoat/medsci
subcategory = SUBCATEGORY_SUIT_JOBS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS
restricted_desc = "Medical and Science"
restricted_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Virologist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist")
/datum/gear/suit/trekengmod
name = "Fed (Modern) uniform, Yellow"
path = /obj/item/clothing/suit/storage/fluff/modernfedcoat/eng
subcategory = SUBCATEGORY_SUIT_JOBS
subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS
restricted_desc = "Engineering and Cargo"
restricted_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Cargo Technician", "Shaft Miner", "Quartermaster")
/datum/gear/suit/christmascoatr
name = "Red Christmas Coat"
path = /obj/item/clothing/suit/hooded/wintercoat/christmascoatr
subcategory = SUBCATEGORY_SUIT_COATS
subcategory = LOADOUT_SUBCATEGORY_SUIT_COATS
/datum/gear/suit/christmascoatg
name = "Green Christmas Coat"
path = /obj/item/clothing/suit/hooded/wintercoat/christmascoatg
subcategory = SUBCATEGORY_SUIT_COATS
subcategory = LOADOUT_SUBCATEGORY_SUIT_COATS
/datum/gear/suit/christmascoatrg
name = "Red and Green Christmas Coat"
path = /obj/item/clothing/suit/hooded/wintercoat/christmascoatrg
subcategory = SUBCATEGORY_SUIT_COATS
subcategory = LOADOUT_SUBCATEGORY_SUIT_COATS
/datum/gear/suit/samurai
name = "Samurai outfit"

View File

@@ -1,12 +1,12 @@
/datum/gear/uniform
category = CATEGORY_UNIFORM
subcategory = SUBCATEGORY_UNIFORM_GENERAL
category = LOADOUT_CATEGORY_UNIFORM
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_GENERAL
slot = SLOT_W_UNIFORM
/datum/gear/uniform/suit
name = "Black suit"
path = /obj/item/clothing/under/suit/black
subcategory = SUBCATEGORY_UNIFORM_SUITS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_SUITS
/datum/gear/uniform/suit/green
name = "Green suit"
@@ -51,7 +51,7 @@
/datum/gear/uniform/skirt
name = "Black skirt"
path = /obj/item/clothing/under/dress/skirt
subcategory = SUBCATEGORY_UNIFORM_SKIRTS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_SKIRTS
/datum/gear/uniform/skirt/blue
name = "Blue skirt"
@@ -88,7 +88,7 @@
/datum/gear/uniform/dress
name = "Striped Dress"
path = /obj/item/clothing/under/dress/striped
subcategory = SUBCATEGORY_UNIFORM_DRESSES
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_DRESSES
/datum/gear/uniform/dress/sun/white
name = "White Sundress"
@@ -121,7 +121,7 @@
/datum/gear/uniform/pants
name = "Yoga Pants"
path = /obj/item/clothing/under/pants/yoga
subcategory = SUBCATEGORY_UNIFORM_PANTS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_PANTS
/datum/gear/uniform/kilt
name = "Kilt"
@@ -134,7 +134,7 @@
/datum/gear/uniform/shorts
name = "Athletic Shorts"
path = /obj/item/clothing/under/shorts/red
subcategory = SUBCATEGORY_UNIFORM_SHORTS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_SHORTS
/datum/gear/uniform/pants/bjeans
name = "Black Jeans"
@@ -185,7 +185,7 @@
/datum/gear/uniform/sweater
name = "Cream Commando Sweater"
path = /obj/item/clothing/under/sweater
subcategory = SUBCATEGORY_UNIFORM_SWEATERS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_SWEATERS
/datum/gear/uniform/sweater/black
name = "Black Commando Sweater"
@@ -251,21 +251,21 @@
/datum/gear/uniform/trekcmdtos
name = "TOS uniform, cmd"
path = /obj/item/clothing/under/trek/command
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Heads of Staff"
restricted_roles = list("Head of Security","Captain","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Quartermaster")
/datum/gear/uniform/trekmedscitos
name = "TOS uniform, med/sci"
path = /obj/item/clothing/under/trek/medsci
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Medical and Science"
restricted_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Virologist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist")
/datum/gear/uniform/trekengtos
name = "TOS uniform, ops/sec"
path = /obj/item/clothing/under/trek/engsec
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Engineering, Security, and Cargo"
restricted_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Cargo Technician", "Shaft Miner", "Quartermaster")
@@ -273,21 +273,21 @@
/datum/gear/uniform/trekcmdtng
name = "TNG uniform, cmd"
path = /obj/item/clothing/under/trek/command/next
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Heads of Staff"
restricted_roles = list("Head of Security","Captain","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Quartermaster")
/datum/gear/uniform/trekmedscitng
name = "TNG uniform, med/sci"
path = /obj/item/clothing/under/trek/medsci/next
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Medical and Science"
restricted_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Virologist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist")
/datum/gear/uniform/trekengtng
name = "TNG uniform, ops/sec"
path = /obj/item/clothing/under/trek/engsec/next
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Engineering, Security, and Cargo"
restricted_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Cargo Technician", "Shaft Miner", "Quartermaster")
@@ -295,21 +295,21 @@
/datum/gear/uniform/trekcmdvoy
name = "VOY uniform, cmd"
path = /obj/item/clothing/under/trek/command/voy
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Heads of Staff"
restricted_roles = list("Head of Security","Captain","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Quartermaster")
/datum/gear/uniform/trekmedscivoy
name = "VOY uniform, med/sci"
path = /obj/item/clothing/under/trek/medsci/voy
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Medical and Science"
restricted_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Virologist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist")
/datum/gear/uniform/trekengvoy
name = "VOY uniform, ops/sec"
path = /obj/item/clothing/under/trek/engsec/voy
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Engineering, Security, and Cargo"
restricted_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Cargo Technician", "Shaft Miner", "Quartermaster")
@@ -317,21 +317,21 @@
/datum/gear/uniform/trekcmdds9
name = "DS9 uniform, cmd"
path = /obj/item/clothing/under/trek/command/ds9
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Heads of Staff"
restricted_roles = list("Head of Security","Captain","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Quartermaster")
/datum/gear/uniform/trekmedscids9
name = "DS9 uniform, med/sci"
path = /obj/item/clothing/under/trek/medsci/ds9
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Medical and Science"
restricted_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Virologist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist")
/datum/gear/uniform/trekengds9
name = "DS9 uniform, ops/sec"
path = /obj/item/clothing/under/trek/engsec/ds9
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Engineering, Security, and Cargo"
restricted_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Cargo Technician", "Shaft Miner", "Quartermaster")
@@ -339,21 +339,21 @@
/datum/gear/uniform/trekcmdent
name = "ENT uniform, cmd"
path = /obj/item/clothing/under/trek/command/ent
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Heads of Staff"
restricted_roles = list("Head of Security","Captain","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Quartermaster")
/datum/gear/uniform/trekmedscient
name = "ENT uniform, med/sci"
path = /obj/item/clothing/under/trek/medsci/ent
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Medical and Science"
restricted_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Virologist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist")
/datum/gear/uniform/trekengent
name = "ENT uniform, ops/sec"
path = /obj/item/clothing/under/trek/engsec/ent
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Engineering, Security, and Cargo"
restricted_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Cargo Technician", "Shaft Miner", "Quartermaster")
@@ -361,7 +361,7 @@
/datum/gear/uniform/trekfedutil
name = "TMP uniform"
path = /obj/item/clothing/under/trek/fedutil
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "All, barring Service and Civilian"
restricted_roles = list("Head of Security","Captain","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Quartermaster",
"Medical Doctor","Chemist","Virologist","Paramedic","Geneticist","Scientist", "Roboticist",
@@ -371,13 +371,13 @@
/datum/gear/uniform/trekfedtrainee
name = "TMP uniform, trainee"
path = /obj/item/clothing/under/trek/fedutil/trainee
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_roles = list("Assistant", "Janitor", "Cargo Technician")
/datum/gear/uniform/trekfedservice
name = "TMP uniform, service"
path = /obj/item/clothing/under/trek/fedutil/service
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Service and Civilian, barring Clown, Mime and Lawyer"
restricted_roles = list("Assistant", "Bartender", "Botanist", "Cook", "Curator", "Janitor", "Chaplain")
@@ -385,52 +385,52 @@
/datum/gear/uniform/orvcmd
name = "ORV uniform, cmd"
path = /obj/item/clothing/under/trek/command/orv
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Heads of Staff"
restricted_roles = list("Head of Security", "Captain", "Head of Personnel", "Chief Engineer", "Research Director", "Chief Medical Officer", "Quartermaster")
/datum/gear/uniform/orvcmd_capt
name = "ORV uniform, capt"
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
path = /obj/item/clothing/under/trek/command/orv/captain
restricted_roles = list("Captain")
/datum/gear/uniform/orvmedsci
name = "ORV uniform, med/sci"
path = /obj/item/clothing/under/trek/medsci/orv
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Medical and Science"
restricted_roles = list("Chief Medical Officer", "Medical Doctor", "Chemist", "Virologist", "Paramedic", "Geneticist", "Research Director", "Scientist", "Roboticist")
/datum/gear/uniform/orvcmd_medsci
name = "ORV uniform, med/sci, cmd"
path = /obj/item/clothing/under/trek/command/orv/medsci
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_roles = list("Chief Medical Officer", "Research Director")
/datum/gear/uniform/orvops
name = "ORV uniform, ops/sec"
path = /obj/item/clothing/under/trek/engsec/orv
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_desc = "Engineering, Security and Cargo"
restricted_roles = list("Chief Engineer", "Atmospheric Technician", "Station Engineer", "Warden", "Detective", "Security Officer", "Head of Security", "Cargo Technician", "Shaft Miner", "Quartermaster")
/datum/gear/uniform/orvcmd_ops
name = "ORV uniform, ops/sec, cmd"
path = /obj/item/clothing/under/trek/command/orv/engsec
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_roles = list("Chief Engineer", "Head of Security")
/datum/gear/uniform/orvass
name = "ORV uniform, assistant"
path = /obj/item/clothing/under/trek/orv
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_roles = list("Assistant")
/datum/gear/uniform/orvsrv
name = "ORV uniform, service"
path = /obj/item/clothing/under/trek/orv/service
subcategory = SUBCATEGORY_UNIFORM_JOBS
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_JOBS
restricted_roles = list("Assistant", "Bartender", "Botanist", "Cook", "Curator", "Janitor", "Chaplain")
restricted_desc = "Service and Civilian, barring Clown, Mime and Lawyer"
@@ -476,37 +476,37 @@
/datum/gear/uniform/qipao
name = "Qipao, Black"
path = /obj/item/clothing/under/costume/qipao
subcategory = SUBCATEGORY_UNIFORM_DRESSES
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_DRESSES
cost = 3
/datum/gear/uniform/qipao/white
name = "Qipao, White"
path = /obj/item/clothing/under/costume/qipao/white
subcategory = SUBCATEGORY_UNIFORM_DRESSES
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_DRESSES
cost = 3
/datum/gear/uniform/qipao/red
name = "Qipao, Red"
path = /obj/item/clothing/under/costume/qipao/red
subcategory = SUBCATEGORY_UNIFORM_DRESSES
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_DRESSES
cost = 3
/datum/gear/uniform/cheongsam
name = "Cheongsam, Black"
path = /obj/item/clothing/under/costume/cheongsam
subcategory = SUBCATEGORY_UNIFORM_DRESSES
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_DRESSES
cost = 3
/datum/gear/uniform/cheongsam/white
name = "Cheongsam, White"
path = /obj/item/clothing/under/costume/cheongsam/white
subcategory = SUBCATEGORY_UNIFORM_DRESSES
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_DRESSES
cost = 3
/datum/gear/uniform/cheongsam/red
name = "Cheongsam, Red"
path = /obj/item/clothing/under/costume/cheongsam/red
subcategory = SUBCATEGORY_UNIFORM_DRESSES
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_DRESSES
cost = 3
/datum/gear/uniform/dress/black
@@ -539,4 +539,4 @@
/datum/gear/uniform/kimono/sakura
name = "Sakura kimono"
path = /obj/item/clothing/under/costume/kimono/sakura
path = /obj/item/clothing/under/costume/kimono/sakura