mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 12:29:46 +01:00
Adds Konyanger clothes, comics. (#13126)
This commit is contained in:
@@ -13,6 +13,18 @@
|
||||
display_name = "headphones"
|
||||
path = /obj/item/clothing/ears/earmuffs/headphones
|
||||
|
||||
/datum/gear/ears/double/earphones
|
||||
display_name = "earphones selection"
|
||||
description = "A selection of earphones."
|
||||
path = /obj/item/clothing/ears/earmuffs/headphones/earphones
|
||||
|
||||
/datum/gear/ears/double/earphones/New()
|
||||
..()
|
||||
var/list/earphones = list()
|
||||
earphones["earphones"] = /obj/item/clothing/ears/earmuffs/headphones/earphones
|
||||
earphones["blue earphones"] = /obj/item/clothing/ears/earmuffs/headphones/earphones/blue
|
||||
gear_tweaks += new /datum/gear_tweak/path(earphones)
|
||||
|
||||
/datum/gear/ears/earrings
|
||||
display_name = "earring selection"
|
||||
description = "A selection of eye-catching earrings."
|
||||
|
||||
@@ -276,6 +276,19 @@
|
||||
plushies["plushie, Aphy"] = /obj/item/toy/plushie/ipc
|
||||
gear_tweaks += new /datum/gear_tweak/path(plushies)
|
||||
|
||||
/datum/gear/comic
|
||||
display_name = "comic selection"
|
||||
description = "A selection of comics and manga from across the Spur."
|
||||
path = /obj/item/toy/comic
|
||||
|
||||
/datum/gear/comic/New()
|
||||
..()
|
||||
var/list/comics = list()
|
||||
comics["comic book"] = /obj/item/toy/comic
|
||||
comics["comic book"] = /obj/item/toy/comic/inspector
|
||||
comics["comic book"] = /obj/item/toy/comic/stormman
|
||||
gear_tweaks += new /datum/gear_tweak/path(comics)
|
||||
|
||||
/datum/gear/toothpaste
|
||||
display_name = "toothpaste and toothbrush"
|
||||
path = /obj/item/storage/box/toothpaste
|
||||
|
||||
@@ -273,6 +273,10 @@
|
||||
display_name = "non la hat"
|
||||
path = /obj/item/clothing/head/nonla
|
||||
|
||||
/datum/gear/head/konyang
|
||||
display_name = "gat"
|
||||
path = /obj/item/clothing/head/konyang
|
||||
|
||||
/datum/gear/head/iac
|
||||
display_name = "IAC headgear selection"
|
||||
description = "A selection of hats worn by Interstellar Aid Corps volunteers."
|
||||
|
||||
@@ -70,6 +70,19 @@
|
||||
cape["tribunalist surcoat"] = /obj/item/clothing/accessory/poncho/dominia/red/surcoat
|
||||
gear_tweaks += new /datum/gear_tweak/path(cape)
|
||||
|
||||
/datum/gear/religion/assunzione/robe
|
||||
display_name = "assunzione robe selection"
|
||||
description = "A selection of robes worn by adherents to Luceism."
|
||||
path = /obj/item/clothing/accessory/poncho/assunzione
|
||||
|
||||
/datum/gear/religion/assunzione/robe/New()
|
||||
..()
|
||||
var/list/assunzionerobe = list()
|
||||
assunzionerobe["assunzione robe"] = /obj/item/clothing/accessory/poncho/assunzione
|
||||
assunzionerobe["assunzione vine-inlaid robe"] = /obj/item/clothing/accessory/poncho/assunzione/vine
|
||||
assunzionerobe["assunzione gold-inlaid robe"] = /obj/item/clothing/accessory/poncho/assunzione/gold
|
||||
gear_tweaks += new /datum/gear_tweak/path(assunzionerobe)
|
||||
|
||||
/datum/gear/religion/dominia/accessory
|
||||
display_name = "tribunal necklace"
|
||||
path = /obj/item/clothing/accessory/dominia
|
||||
|
||||
@@ -134,7 +134,7 @@ datum/gear/suit/colorvest
|
||||
iac_outerwear["IAC vest"] = /obj/item/clothing/suit/storage/iacvest
|
||||
iac_outerwear["IAC labcoat"] = /obj/item/clothing/suit/storage/toggle/labcoat/iac
|
||||
gear_tweaks += new /datum/gear_tweak/path(iac_outerwear)
|
||||
|
||||
|
||||
/datum/gear/suit/poncho
|
||||
display_name = "poncho selection"
|
||||
path = /obj/item/clothing/accessory/poncho
|
||||
@@ -439,6 +439,23 @@ datum/gear/suit/colorvest
|
||||
path = /obj/item/clothing/suit/storage/toggle/overlay/submariner
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
||||
|
||||
/datum/gear/suit/konyang
|
||||
display_name = "konyanger outerwear selection"
|
||||
description = "A selection of jackets and coats from the wind-beaten shores of Konyang."
|
||||
path = /obj/item/clothing/suit/storage/hooded/wintercoat/konyang
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
|
||||
|
||||
/datum/gear/suit/konyang/New()
|
||||
..()
|
||||
var/list/konyangcoat = list()
|
||||
konyangcoat["konyang village coat"] = /obj/item/clothing/suit/storage/hooded/wintercoat/konyang
|
||||
konyangcoat["red konyanger jacket"] = /obj/item/clothing/suit/storage/toggle/konyang
|
||||
konyangcoat["red short-sleeved konyanger jacket"] = /obj/item/clothing/suit/storage/toggle/konyang/akira
|
||||
konyangcoat["red konyanger jumpjacket"] = /obj/item/clothing/suit/storage/toggle/konyang/pants
|
||||
konyangcoat["orange konyanger jumpjacket"] = /obj/item/clothing/suit/storage/toggle/konyang/orange
|
||||
konyangcoat["blue konyanger jumpjacket"] = /obj/item/clothing/suit/storage/toggle/konyang/blue
|
||||
gear_tweaks += new /datum/gear_tweak/path(konyangcoat)
|
||||
|
||||
/datum/gear/suit/gadpathur
|
||||
display_name = "gadpathurian coat selection"
|
||||
path = /obj/item/clothing/suit/storage/gadpathur
|
||||
|
||||
@@ -364,8 +364,19 @@
|
||||
var/list/hanbok = list()
|
||||
hanbok["magenta-blue hanbok"] = /obj/item/clothing/under/konyang
|
||||
hanbok["white-pink hanbok"] = /obj/item/clothing/under/konyang/pink
|
||||
hanbok["male hanbok"] = /obj/item/clothing/under/konyang/male
|
||||
gear_tweaks += new /datum/gear_tweak/path(hanbok)
|
||||
|
||||
/datum/gear/uniform/konyang
|
||||
display_name = "konyanger dress"
|
||||
path = /obj/item/clothing/under/konyangdress
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
|
||||
|
||||
/datum/gear/uniform/zhongshan
|
||||
display_name = "zhongshan suit"
|
||||
path = /obj/item/clothing/under/zhongshan
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
|
||||
|
||||
/datum/gear/uniform/gadpathur
|
||||
display_name = "gadpathurian fatigues"
|
||||
path = /obj/item/clothing/under/uniform/gadpathur
|
||||
|
||||
Reference in New Issue
Block a user