mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-01-03 21:54:24 +00:00
53 lines
2.2 KiB
Plaintext
53 lines
2.2 KiB
Plaintext
/obj/machinery/vending/clothing/Initialize()
|
|
var/list/extra_products = list(
|
|
/obj/item/clothing/suit/assu_suit = 16,
|
|
/obj/item/clothing/head/assu_helmet = 16,
|
|
/obj/item/clothing/glasses/aviators = 10,
|
|
/obj/item/clothing/glasses/sunglasses = 10,
|
|
/obj/item/clothing/suit/toggle/rp_jacket = 3,
|
|
/obj/item/clothing/suit/toggle/rp_jacket/orange = 3,
|
|
/obj/item/clothing/suit/toggle/rp_jacket/purple = 3,
|
|
/obj/item/clothing/suit/toggle/rp_jacket/red = 3,
|
|
/obj/item/clothing/suit/toggle/rp_jacket/white = 3,
|
|
/obj/item/clothing/under/goner/fake/poly = 10,
|
|
/obj/item/clothing/suit/goner/fake/poly = 10,
|
|
/obj/item/clothing/head/helmet/goner/fake/poly = 10,
|
|
/obj/item/clothing/under/raccveralls = 3,
|
|
/obj/item/clothing/under/officesexy = 3,
|
|
/obj/item/clothing/suit/toggle/tunnelfox = 3,
|
|
/obj/item/clothing/under/performer = 2,
|
|
/obj/item/clothing/under/bluedress = 3,
|
|
/obj/item/clothing/under/misc/leia_outfit = 2,
|
|
/obj/item/clothing/under/performer/polychromic = 2
|
|
)
|
|
var/list/extra_contraband = list(
|
|
/obj/item/clothing/under/rank/civilian/lawyer/galaxy_red = 3,
|
|
/obj/item/clothing/mask/gas/goner/basic = 10
|
|
)
|
|
var/list/extra_premium = list(
|
|
/obj/item/clothing/under/rank/civilian/lawyer/galaxy_blue = 3,
|
|
/obj/item/clothing/head/helmet/goner/officer/fake/poly = 10
|
|
)
|
|
|
|
if(SSevents.holidays && SSevents.holidays[CHRISTMAS])
|
|
extra_products += list(
|
|
/obj/item/clothing/accessory/sweater/uglyxmas = 3,
|
|
/obj/item/clothing/under/costume/christmas = 3,
|
|
/obj/item/clothing/under/costume/christmas/green = 3,
|
|
/obj/item/clothing/under/costume/christmas/croptop = 3,
|
|
/obj/item/clothing/under/costume/christmas/croptop/green = 3,
|
|
/obj/item/clothing/suit/hooded/wintercoat/christmascoatr = 3,
|
|
/obj/item/clothing/suit/hooded/wintercoat/christmascoatg = 3,
|
|
/obj/item/clothing/suit/hooded/wintercoat/christmascoatrg = 3,
|
|
/obj/item/clothing/head/christmashat = 3,
|
|
/obj/item/clothing/head/christmashatg = 3,
|
|
/obj/item/clothing/shoes/winterboots/christmasbootsr = 3,
|
|
/obj/item/clothing/shoes/winterboots/christmasbootsg = 3,
|
|
/obj/item/clothing/shoes/winterboots/santaboots = 3,
|
|
)
|
|
|
|
LAZYADD(products, extra_products)
|
|
LAZYADD(contraband, extra_contraband)
|
|
LAZYADD(premium, extra_premium)
|
|
. = ..()
|