Suit&Uniform Supplement.

This commit is contained in:
Casey
2022-10-09 23:07:27 -04:00
committed by CHOMPStation2
parent 0972599a01
commit 224d985529
7 changed files with 114 additions and 2 deletions

View File

@@ -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

View File

@@ -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))