mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-28 07:39:13 +01:00
[MIRROR] Update & Cleanup Loadouts (#9877)
Co-authored-by: Cameron Lennox <killer65311@gmail.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
co-authored by
Cameron Lennox
Kashargul
parent
59db02b286
commit
fecffcf15b
@@ -453,3 +453,100 @@
|
||||
"pilot helmet, major bill's transport"=/obj/item/clothing/head/pilot_vr/mbill
|
||||
)
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(selector_uniforms))
|
||||
|
||||
/datum/gear/head/headbando
|
||||
display_name = "basic headband"
|
||||
path = /obj/item/clothing/head/fluff/headbando
|
||||
|
||||
/datum/gear/head/headbando/New()
|
||||
..()
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
|
||||
/datum/gear/head/maid
|
||||
display_name = "maid headband selection"
|
||||
path = /obj/item/clothing/head/headband/maid
|
||||
|
||||
/datum/gear/head/maid/New()
|
||||
..()
|
||||
var/list/headbands_list = list()
|
||||
for(var/obj/item/clothing/head/bands as anything in typesof(/obj/item/clothing/head/headband/maid))
|
||||
headbands_list[initial(bands.name)] = bands
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(headbands_list))
|
||||
|
||||
//Detective alternative
|
||||
/datum/gear/head/detective_alt
|
||||
display_name = "cyberscope headgear, detective"
|
||||
path = /obj/item/clothing/head/helmet/detective_alt
|
||||
allowed_roles = list(JOB_HEAD_OF_SECURITY, JOB_DETECTIVE)
|
||||
|
||||
/datum/gear/head/bearpelt
|
||||
display_name = "animal pelt selection"
|
||||
description = "Select from a range of (probably, hopefully) synthetic/artificial animal pelts."
|
||||
path = /obj/item/clothing/head/pelt
|
||||
|
||||
/datum/gear/head/bearpelt/New()
|
||||
..()
|
||||
var/list/selector_uniforms = list(
|
||||
"bear, brown"=/obj/item/clothing/head/pelt,
|
||||
"wolf, brown"=/obj/item/clothing/head/pelt/wolfpelt,
|
||||
"wolf, black"=/obj/item/clothing/head/pelt/wolfpeltblack,
|
||||
"tiger, plain"=/obj/item/clothing/head/pelt/tigerpelt,
|
||||
"tiger, white"=/obj/item/clothing/head/pelt/tigerpeltsnow,
|
||||
"tiger, pink"=/obj/item/clothing/head/pelt/tigerpeltpink
|
||||
)
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(selector_uniforms))
|
||||
|
||||
/datum/gear/head/magic_hat
|
||||
display_name = "wizard hat, colorable"
|
||||
path = /obj/item/clothing/head/wizard/fake/realistic/colorable
|
||||
|
||||
/datum/gear/head/magic_hat/New()
|
||||
..()
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
|
||||
/datum/gear/head/wedding
|
||||
display_name = "wedding veil"
|
||||
path = /obj/item/clothing/head/wedding
|
||||
|
||||
/datum/gear/head/wedding/New()
|
||||
..()
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
|
||||
/datum/gear/head/halo/alt
|
||||
display_name = "halo, alt"
|
||||
path = /obj/item/clothing/head/halo/alt
|
||||
|
||||
/datum/gear/head/buckethat
|
||||
display_name = "hat, bucket"
|
||||
path = /obj/item/clothing/head/buckethat
|
||||
|
||||
/datum/gear/head/buckethat/New()
|
||||
..()
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
|
||||
/datum/gear/head/nonla
|
||||
display_name = "hat, non la"
|
||||
path = /obj/item/clothing/head/nonla
|
||||
|
||||
/*
|
||||
Talon hats
|
||||
*/
|
||||
/datum/gear/head/cap/talon
|
||||
display_name = "cap, Talon"
|
||||
path = /obj/item/clothing/head/soft/talon
|
||||
|
||||
/datum/gear/head/beret/talon
|
||||
display_name = "beret, Talon"
|
||||
path = /obj/item/clothing/head/beret
|
||||
|
||||
// tiny tophat
|
||||
|
||||
/datum/gear/head/tiny_tophat
|
||||
display_name = "tiny tophat"
|
||||
path = /obj/item/clothing/head/tinytophat
|
||||
|
||||
//Replikant hat
|
||||
|
||||
/datum/gear/head/eulrhat
|
||||
display_name = "Sleek side cap"
|
||||
path = /obj/item/clothing/head/eulrhat
|
||||
|
||||
Reference in New Issue
Block a user