Adds vysokan/himean clothing to loadout (#9176)

This commit is contained in:
kyres1
2020-06-22 22:54:44 -05:00
committed by GitHub
parent 776c4808eb
commit 5e8eeeb2fd
11 changed files with 117 additions and 0 deletions
@@ -252,3 +252,13 @@
display_name = "padded cap"
path = /obj/item/clothing/head/padded
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
/datum/gear/head/himeo
display_name = "himean cap"
path = /obj/item/clothing/head/soft/himeo
flags = GEAR_HAS_DESC_SELECTION
/datum/gear/head/vysoka
display_name = "vysokan fur cap"
path = /obj/item/clothing/head/soft/vysoka
flags = GEAR_HAS_DESC_SELECTION
@@ -324,3 +324,21 @@
cardigan["sweater cardigan"] = /obj/item/clothing/suit/storage/toggle/cardigan/sweater
cardigan["argyle cardigan"] = /obj/item/clothing/suit/storage/toggle/cardigan/argyle
gear_tweaks += new/datum/gear_tweak/path(cardigan)
/datum/gear/suit/himeo
display_name = "himean coat"
path = /obj/item/clothing/suit/storage/toggle/himeo
flags = GEAR_HAS_DESC_SELECTION
/datum/gear/suit/vysoka
display_name = "chokha selection"
description = "A selection of Vysokan chokhas."
path = /obj/item/clothing/suit/storage/vysoka_m
flags = GEAR_HAS_DESC_SELECTION
/datum/gear/suit/vysoka/New()
..()
var/coat = list()
coat["feminine chokha"] = /obj/item/clothing/suit/storage/vysoka_f
coat["masculine chokha"] = /obj/item/clothing/suit/storage/vysoka_m
gear_tweaks += new/datum/gear_tweak/path(coat)