Konyang loadout additions (#14518)

This commit is contained in:
niennab
2022-08-02 12:40:44 +02:00
committed by GitHub
parent e182e812cc
commit 0379f4ae08
14 changed files with 93 additions and 1 deletions

View File

@@ -400,6 +400,11 @@
path = /obj/item/clothing/accessory/sash/horizontal
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
/datum/gear/accessory/konyang_belt
display_name = "hanbok belt (colourable)"
path = /obj/item/clothing/accessory/konyang
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
/datum/gear/accessory/passcard
display_name = "human passcard selection"
path = /obj/item/clothing/accessory/badge/passcard

View File

@@ -66,6 +66,11 @@
path = /obj/item/clothing/shoes/sandal/flipflop
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
/datum/gear/shoes/woodensandals
display_name = "wooden sandals"
path = /obj/item/clothing/shoes/sandal/wooden
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
/datum/gear/shoes/hitops
display_name = "high-top selection"
description = "High-top sneakers, in a selection of colors."
@@ -107,6 +112,11 @@
display_name = "lyodsuit boots"
path = /obj/item/clothing/shoes/lyodsuit
/datum/gear/shoes/konyang_gomusin
display_name = "gomusin"
path = /obj/item/clothing/shoes/konyang
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
/datum/gear/shoes/circuitry
display_name = "boots, circuitry (empty)"
path = /obj/item/clothing/shoes/circuitry

View File

@@ -305,6 +305,7 @@
var/list/hanbok = list()
hanbok["magenta-blue hanbok"] = /obj/item/clothing/under/konyang
hanbok["white-pink hanbok"] = /obj/item/clothing/under/konyang/pink
hanbok["white-blue hanbok"] = /obj/item/clothing/under/konyang/blue
hanbok["male hanbok"] = /obj/item/clothing/under/konyang/male
gear_tweaks += new /datum/gear_tweak/path(hanbok)