Files
Bubberstation/modular_zubbers/code/modules/vending/clothmate.dm
Waterpig 1a7d805bb6 Brings back the old sombrero (#2358)
## About The Pull Request

Reintroduces the sombrero to the vendors and adds it to the loadout.


![image](https://github.com/user-attachments/assets/2449b383-fb3f-4eec-9289-c86e10ff2e36)

As beautiful as the day we lost it. Also makes it not hide hair

closes #2355

## Why It's Good For The Game

Cool item to add to char design, and keeps you from dying on
moonstation!

## Proof Of Testing

<details>
<summary>Screenshots/Videos</summary>


![image](https://github.com/user-attachments/assets/bd563ff7-78a6-4fed-8400-31e5406ceadd)

</details>

## Changelog

🆑
add: Sombreros return to clothes vendors and loadouts
qol: Sombreros no longer make you bald
/🆑
2024-11-09 00:17:49 +00:00

106 lines
3.4 KiB
Plaintext

/obj/machinery/vending/clothing
zubbers_product_categories = list(
list(
"name" = "Head",
"icon" = "hat-cowboy",
"products" = list(
/obj/item/clothing/head/henchmen_hat = 5,
/obj/item/clothing/head/avipilot = 5,
/obj/item/clothing/head/costume/ushanka/frosty = 5,
/obj/item/clothing/head/costume/sombrero = 3,
),
),
list(
"name" = "Accessories",
"icon" = "glasses",
"products" = list(
/obj/item/clothing/glasses/welding/steampunk_goggles = 5,
/obj/item/clothing/glasses/rosecolored = 5,
/obj/item/clothing/glasses/eyepatch/rosecolored = 5,
/obj/item/clothing/mask/gas/nightlight = 5,
/obj/item/clothing/mask/gas/nightlight/fir22 = 5,
/obj/item/clothing/gloves/fingerless/blutigen_wraps = 5,
/obj/item/clothing/neck/cloak/inferno = 5,
/obj/item/clothing/accessory/medal/steele = 5,
/obj/item/clothing/neck/cross = 5,
/obj/item/clothing/neck/cloak/fluffycloak = 5,
/obj/item/clothing/neck/fishpendant = 5,
/obj/item/clothing/accessory/badge/holo/jade = 5,
/obj/item/clothing/gloves/elofy = 5,
/obj/item/clothing/glasses/gold_aviators = 5,
/obj/item/clothing/gloves/skyy = 5,
),
),
list(
"name" = "Under",
"icon" = "shirt",
"products" = list(
/obj/item/clothing/under/syndicate/tacticool/black = 5,
/obj/item/clothing/under/custom/blutigen_undergarment = 5,
/obj/item/clothing/under/custom/lannese = 5,
/obj/item/clothing/under/custom/lannese/vambrace = 5,
/obj/item/clothing/under/tactichill = 5,
/obj/item/clothing/under/caged_dress/skirt = 5,
/obj/item/clothing/under/costume/skyrat/kimono/sigmar = 5,
/obj/item/clothing/under/pants/skyy = 5,
),
),
list(
"name" = "Suits & Skirts",
"icon" = "vest",
"products" = list(
/obj/item/clothing/suit/jacket/henchmen_coat = 5,
/obj/item/clothing/suit/furcoat = 5,
/obj/item/clothing/suit/jacket/cherno = 5,
/obj/item/clothing/suit/jacket/hydrogenrobes = 5,
/obj/item/clothing/suit/blutigen_kimono = 5,
/obj/item/clothing/suit/jacket/delta = 5,
/obj/item/clothing/suit/toggle/labcoat/skyrat/tenrai = 5,
/obj/item/clothing/suit/short_coat = 5,
/obj/item/clothing/suit/hooded/sigmarcoat = 5,
/obj/item/clothing/suit/jacket/skyy = 5,
/obj/item/clothing/suit/jacket/tailcoat = 5,
/obj/item/clothing/under/dress/skirt/skyrat/black_skirt = 5,
/obj/item/clothing/suit/misc/suit_harness = 5,
),
),
list(
"name" = "Shoes",
"icon" = "socks",
"products" = list(
/obj/item/clothing/shoes/jackboots/netra = 5,
/obj/item/clothing/shoes/fancy_heels/drag = 5,
/obj/item/clothing/shoes/jackboots/elofy = 5,
),
),
//Only put clothing in Special thats either Families or exteremly out-of-place
list(
"name" = "Special",
"icon" = "star",
"products" = list(
/obj/item/clothing/mask/animal/wolf = 5,
/obj/item/clothing/head/drake_skull = 5,
)
)
)
zubbers_premium = list( //being here means you're even more artificially rare, congratulations
/obj/item/clothing/head/razurathhat = 2,
/obj/item/clothing/suit/razurathcoat = 2,
/obj/item/clothing/suit/hooded/colorblockhoodie = 2,
/obj/item/clothing/shoes/jackboots/noble = 2,
)
zubbers_contraband = list(
/obj/item/clothing/suit/jacket/ryddid = 3,
/obj/item/clothing/neck/cloak/grunnyyy = 3,
/obj/item/clothing/gloves/ring/hypno/coffeepot = 2,
/obj/item/clothing/mask/hheart = 2,
/obj/item/clothing/suit/toggle/digicoat/glitched = 2,
)