mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-24 00:51:26 +00:00
-add reflection and parry to the wizard rune sword -tweaks and add more things to the custom loadout -remove the linebin and thermals from cargo -add exosuit paint kits and some other things to cargo spawn -re-add the non slip flag to skrells - Fixes #1890 -adds more hats -beastmen botanists now get some snowflake gloves -unathi are now poisoned by alcohol, at jackboot's request -fix smacking people against toilets having no delay -fix some visible message issues and wrong date in the sink and shower -removed being able to select bst gear using chameleon clothing -fix some grammer -fix vaurca voidsuits having an outdated species
147 lines
5.4 KiB
Plaintext
147 lines
5.4 KiB
Plaintext
/datum/gear/head
|
|
display_name = "ushanka"
|
|
path = /obj/item/clothing/head/ushanka
|
|
slot = slot_head
|
|
sort_category = "Hats and Headwear"
|
|
|
|
/datum/gear/head/bandana
|
|
display_name = "bandana selection"
|
|
path = /obj/item/clothing/head/bandana
|
|
|
|
/datum/gear/head/bandana/New()
|
|
..()
|
|
var/bandanas = list()
|
|
bandanas["green bandana"] = /obj/item/clothing/head/greenbandana
|
|
bandanas["orange bandana"] = /obj/item/clothing/head/orangebandana
|
|
bandanas["pirate bandana"] = /obj/item/clothing/head/bandana
|
|
gear_tweaks += new/datum/gear_tweak/path(bandanas)
|
|
|
|
/datum/gear/head/cap
|
|
display_name = "cap selection"
|
|
path = /obj/item/clothing/head/soft/blue
|
|
|
|
/datum/gear/head/cap/New()
|
|
..()
|
|
var/caps = list()
|
|
caps["blue cap"] = /obj/item/clothing/head/soft/blue
|
|
caps["flat cap"] = /obj/item/clothing/head/flatcap
|
|
caps["green cap"] = /obj/item/clothing/head/soft/green
|
|
caps["grey cap"] = /obj/item/clothing/head/soft/grey
|
|
caps["mailman cap"] = /obj/item/clothing/head/mailman
|
|
caps["orange cap"] = /obj/item/clothing/head/soft/orange
|
|
caps["purple cap"] = /obj/item/clothing/head/soft/purple
|
|
caps["rainbow cap"] = /obj/item/clothing/head/soft/rainbow
|
|
caps["red cap"] = /obj/item/clothing/head/soft/red
|
|
caps["white cap"] = /obj/item/clothing/head/soft/mime
|
|
caps["yellow cap"] = /obj/item/clothing/head/soft/yellow
|
|
gear_tweaks += new/datum/gear_tweak/path(caps)
|
|
|
|
/datum/gear/head/beret
|
|
display_name = "beret, red"
|
|
path = /obj/item/clothing/head/beret
|
|
|
|
/datum/gear/head/beret/eng
|
|
display_name = "beret, engie-orange"
|
|
path = /obj/item/clothing/head/beret/engineering
|
|
allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Engineering Apprentice")
|
|
|
|
/datum/gear/head/beret/purp
|
|
display_name = "beret, purple"
|
|
path = /obj/item/clothing/head/beret/purple
|
|
|
|
/datum/gear/head/beret/sec
|
|
display_name = "beret,security"
|
|
path = /obj/item/clothing/head/beret/sec
|
|
allowed_roles = list("Security Officer","Head of Security","Warden","Security Cadet","Detective")
|
|
|
|
/datum/gear/head/beret/warden
|
|
display_name = "beret,security (warden)"
|
|
path = /obj/item/clothing/head/beret/sec/warden
|
|
allowed_roles = list("Head of Security","Warden")
|
|
|
|
/datum/gear/head/beret/hos
|
|
display_name = "beret,security (head of security)"
|
|
path = /obj/item/clothing/head/beret/sec/hos
|
|
allowed_roles = list("Head of Security")
|
|
|
|
/datum/gear/head/corp
|
|
display_name = "cap, corporate (security)"
|
|
path = /obj/item/clothing/head/soft/sec/corp
|
|
allowed_roles = list("Security Officer","Head of Security","Warden","Security Cadet","Detective")
|
|
|
|
/datum/gear/head/sec
|
|
display_name = "cap, security"
|
|
path = /obj/item/clothing/head/soft/sec
|
|
allowed_roles = list("Security Officer","Head of Security","Warden","Security Cadet","Detective")
|
|
|
|
/datum/gear/head/hardhat
|
|
display_name = "hardhat selection"
|
|
path = /obj/item/clothing/head/hardhat
|
|
allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Engineering Apprentice")
|
|
|
|
/datum/gear/head/hardhat/New()
|
|
..()
|
|
var/hardhat = list()
|
|
hardhat["hardhat, yellow"] = /obj/item/clothing/head/hardhat
|
|
hardhat["hardhat, blue"] = /obj/item/clothing/head/hardhat/dblue
|
|
hardhat["hardhat, orange"] = /obj/item/clothing/head/hardhat/orange
|
|
hardhat["hardhat, red"] = /obj/item/clothing/head/hardhat/red
|
|
gear_tweaks += new/datum/gear_tweak/path(hardhat)
|
|
|
|
/datum/gear/head/hairflower
|
|
display_name = "hair flower pin, red"
|
|
path = /obj/item/clothing/head/hairflower
|
|
|
|
/datum/gear/head/hats
|
|
display_name = "hat selection"
|
|
path = /obj/item/clothing/head/boaterhat
|
|
|
|
/datum/gear/head/hats/New()
|
|
..()
|
|
var/hats = list()
|
|
hats["hat, boatsman"] = /obj/item/clothing/head/boaterhat
|
|
hats["hat, bowler"] = /obj/item/clothing/head/bowler
|
|
hats["hat, fez"] = /obj/item/clothing/head/fez
|
|
hats["hat, tophat"] = /obj/item/clothing/head/that
|
|
hats["hat, feather trilby"] = /obj/item/clothing/head/feathertrilby
|
|
hats["hat, fedora"] = /obj/item/clothing/head/fedora
|
|
hats["hat, beaver"] = /obj/item/clothing/head/beaverhat
|
|
hats["hat, cowboy"] = /obj/item/clothing/head/cowboy
|
|
hats["hat, wide-brimmed cowboy"] = /obj/item/clothing/head/cowboy/wide
|
|
hats["hat, sombrero"] = /obj/item/clothing/head/sombrero
|
|
gear_tweaks += new/datum/gear_tweak/path(hats)
|
|
|
|
/datum/gear/head/philosopher_wig
|
|
display_name = "natural philosopher's wig"
|
|
path = /obj/item/clothing/head/philosopher_wig
|
|
|
|
/datum/gear/head/hijab
|
|
display_name = "hijab selection"
|
|
path = /obj/item/clothing/head/hijab
|
|
|
|
/datum/gear/head/hijab/New()
|
|
..()
|
|
var/hijab = list()
|
|
hijab["black hijab"] = /obj/item/clothing/head/hijab
|
|
hijab["grey hijab"] = /obj/item/clothing/head/hijab/grey
|
|
hijab["red hijab"] = /obj/item/clothing/head/hijab/red
|
|
hijab["brown hijab"] = /obj/item/clothing/head/hijab/brown
|
|
hijab["green hijab"] = /obj/item/clothing/head/hijab/green
|
|
hijab["blue hijab"] = /obj/item/clothing/head/hijab/blue
|
|
|
|
gear_tweaks += new/datum/gear_tweak/path(hijab)
|
|
|
|
/datum/gear/head/surgical
|
|
display_name = "surgical cap selection"
|
|
path = /obj/item/clothing/head/surgery/blue
|
|
allowed_roles = list("Scientist","Chief Medical Officer","Medical Doctor","Geneticist","Chemist","Paramedic","Nursing Intern","Xenobiologist","Roboticist","Research Director","Detective")
|
|
|
|
/datum/gear/head/surgical/New()
|
|
..()
|
|
var/surgical = list()
|
|
surgical["surgical cap, purple"] = /obj/item/clothing/head/surgery/purple
|
|
surgical["surgical cap, blue"] = /obj/item/clothing/head/surgery/blue
|
|
surgical["surgical cap, green"] = /obj/item/clothing/head/surgery/green
|
|
surgical["surgical cap, black"] = /obj/item/clothing/head/surgery/black
|
|
gear_tweaks += new/datum/gear_tweak/path(surgical)
|