Adding more Skrell clothes (#14539)

This commit is contained in:
WhatsUpBrotendo
2022-08-08 23:16:52 +02:00
committed by GitHub
parent cc3e17170d
commit 11915d1b8c
8 changed files with 129 additions and 1 deletions
@@ -379,3 +379,45 @@ datum/gear_tweak/social_credit/tweak_item(var/obj/item/clothing/accessory/badge/
dress["maelstrom formal wetshirt"] = /obj/item/clothing/accessory/dressshirt/skrell/maelstrom
dress["reef formal wetshirt"] = /obj/item/clothing/accessory/dressshirt/skrell/reef
gear_tweaks += new /datum/gear_tweak/path(dress)
/datum/gear/uniform/skrell/wetsuit
display_name = "casual wetsuit"
path = /obj/item/clothing/under/skrell/wetsuit
whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI)
sort_category = "Xenowear - Skrell"
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION | GEAR_HAS_ADDITIONAL_COLOR_SELECTION
/datum/gear/ears/skrell/tailband
display_name = "SCS tailband"
path = /obj/item/clothing/ears/skrell/tailband
whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI)
sort_category = "Xenowear - Skrell"
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
cost = 0
/datum/gear/ears/skrell/tailband/New()
..()
var/list/tailband = list()
tailband["Ox Tailband"] = /obj/item/clothing/ears/skrell/tailband/
tailband["Ix Tailband"] = /obj/item/clothing/ears/skrell/tailband/ix
tailband["Oqi Tailband"] = /obj/item/clothing/ears/skrell/tailband/oqi
tailband["Iqi Tailband"] = /obj/item/clothing/ears/skrell/tailband/iqi
gear_tweaks += new /datum/gear_tweak/path(tailband)
/datum/gear/accessory/skrell/nationcapes
display_name = "nation capes"
path = /obj/item/clothing/accessory/poncho/shouldercape/nationcapes
whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI, SPECIES_VAURCA_WARRIOR, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_BREEDER)
sort_category = "Xenowear - Skrell"
flags = GEAR_HAS_DESC_SELECTION
/datum/gear/accessory/skrell/nationcapes/New()
..()
var/list/nationcapes = list()
nationcapes["Jargon Cape"] = /obj/item/clothing/accessory/poncho/shouldercape/nationcapes
nationcapes["Free Traverse Cape"] = /obj/item/clothing/accessory/poncho/shouldercape/nationcapes/traverse
nationcapes["Sol Cape"] = /obj/item/clothing/accessory/poncho/shouldercape/nationcapes/sol
nationcapes["Coalition Cape"] = /obj/item/clothing/accessory/poncho/shouldercape/nationcapes/coc
nationcapes["Biesel Cape"] = /obj/item/clothing/accessory/poncho/shouldercape/nationcapes/biesel
gear_tweaks += new /datum/gear_tweak/path(nationcapes)