Moves Polos from Undershirts to Loadout (#17349)

* graves

* shadow

* Update shirts.dm

* ac130

* shadow 01

* Update html/changelogs/CampinKiller24-polo.yml

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>

* Update code/modules/client/preference_setup/loadout/items/accessories.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>

* Update code/modules/client/preference_setup/loadout/items/accessories.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>

* Update code/modules/client/preference_setup/loadout/items/accessories.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>

* Update code/modules/client/preference_setup/loadout/items/accessories.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>

* Update code/modules/clothing/under/accessories/shirts.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>

---------

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
This commit is contained in:
CampinKiller24
2023-09-20 14:54:42 -05:00
committed by GitHub
parent d24268815e
commit dcc7a7923d
6 changed files with 126 additions and 58 deletions

View File

@@ -186,6 +186,46 @@
allowed_roles = list("Shaft Miner", "Xenoarchaeologist")
cost = 2
/datum/gear/accessory/polo
display_name = "polo shirts selection"
description = "A selection of polo shirts."
path = /obj/item/clothing/accessory/polo
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
/datum/gear/accessory/polo/New()
..()
var/list/polo = list()
polo["blue polo shirt"] = /obj/item/clothing/accessory/polo/polo_blue
polo["blue polo shirt (waist fitted)"] = /obj/item/clothing/accessory/polo/polo_blue_fem
polo["red polo shirt"] = /obj/item/clothing/accessory/polo/polo_red
polo["red polo shirt (waist fitted)"] = /obj/item/clothing/accessory/polo/polo_red_fem
polo["tan polo shirt"] = /obj/item/clothing/accessory/polo/polo_grayyellow
polo["tan polo shirt (waist fitted)"] = /obj/item/clothing/accessory/polo/polo_grayyellow_fem
polo["polo shirt, green strip"] = /obj/item/clothing/accessory/polo/polo_greenstrip
polo["polo shirt, green strip (waist fitted)"] = /obj/item/clothing/accessory/polo/polo_greenstrip_fem
polo["polo shirt, blue strip"] = /obj/item/clothing/accessory/polo/polo_bluestrip
polo["polo shirt, blue strip (waist fitted)"] = /obj/item/clothing/accessory/polo/polo_bluestrip_fem
polo["polo shirt, red strip"] = /obj/item/clothing/accessory/polo/polo_redstrip
polo["polo shirt, red strip (waist fitted)"] = /obj/item/clothing/accessory/polo/polo_redstrip_fem
gear_tweaks += new /datum/gear_tweak/path(polo)
/datum/gear/accessory/polo_colorable
display_name = "polo shirts selection (colorable)"
description = "A selection of colorable polo shirts."
path = /obj/item/clothing/accessory/polo
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
/datum/gear/accessory/polo_colorable/New()
..()
var/list/polo_colorable = list()
polo_colorable["polo shirt"] = /obj/item/clothing/accessory/polo
polo_colorable["polo shirt (waist fitted)"] = /obj/item/clothing/accessory/polo/polo_fem
gear_tweaks += new /datum/gear_tweak/path(polo_colorable)
/datum/gear/accessory/sweater
display_name = "sweater selection"
path = /obj/item/clothing/accessory/sweater