mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Suit&Uniform Supplement.
This commit is contained in:
@@ -143,3 +143,11 @@ Talon winter coat
|
||||
hoodies[initial(hoodie.name)] = hoodie
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(hoodies))
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
|
||||
/datum/gear/suit/cyberpunk_recolorable
|
||||
display_name = "cyberpunk jacket (recolorable)"
|
||||
path = /obj/item/clothing/suit/cyberpunk/recolorable
|
||||
cost = 2 //It's got armor, yo.
|
||||
|
||||
/datum/gear/suit/cyberpunk_recolorable/New()
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
|
||||
@@ -301,4 +301,18 @@ Talon jumpsuit
|
||||
var/list/pants = list()
|
||||
for(var/obj/item/clothing/under/pants/altevian/pants_type as anything in typesof(/obj/item/clothing/under/pants/altevian))
|
||||
pants[initial(pants_type.name)] = pants_type
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(pants))
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(pants))
|
||||
|
||||
|
||||
//Feminine Colored Jumpsuits.
|
||||
/datum/gear/suit/f_jumpsuit_alt
|
||||
display_name = "Colored Feminine Jumpsuit"
|
||||
path = /obj/item/clothing/under/color/fjumpsuit
|
||||
|
||||
/datum/gear/uniform/f_jumpsuit_alt/New()
|
||||
..()
|
||||
var/list/jumpsuits = list()
|
||||
for(var/jumpsuit_style in typesof(/obj/item/clothing/under/color/fjumpsuit))
|
||||
var/obj/item/clothing/under/color/fjumpsuit/jumpsuit = jumpsuit_style
|
||||
jumpsuits[initial(jumpsuit.name)] = jumpsuit
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(jumpsuits))
|
||||
|
||||
Reference in New Issue
Block a user