mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-08-21 12:18:11 +01:00
18 lines
589 B
Plaintext
18 lines
589 B
Plaintext
/obj/machinery/vending/clothing/Initialize(mapload)
|
|
products += list(/obj/item/clothing/head/wig = 5,
|
|
/obj/item/clothing/suit/jacket/duster = 5,
|
|
/obj/item/clothing/head/slouch_hat = 5,
|
|
/obj/item/clothing/head/lawdog = 5,
|
|
/obj/item/clothing/head/gunfighter = 5
|
|
)
|
|
for(var/P in typesof(/datum/gear/underwear))
|
|
var/datum/gear/G = P
|
|
products[initial(G.path)] = 5
|
|
for(var/P in typesof(/datum/gear/shirt))
|
|
var/datum/gear/G = P
|
|
products[initial(G.path)] = 5
|
|
for(var/P in typesof(/datum/gear/socks))
|
|
var/datum/gear/G = P
|
|
products[initial(G.path)] = 5
|
|
. = ..()
|