Files
CHOMPStation2/code/game/machinery/vending_yw.dm
2025-08-31 03:56:12 +02:00

35 lines
1.6 KiB
Plaintext

/obj/machinery/vending/cigarette/Initialize(mapload)
products += list(/obj/item/storage/fancy/cigarettes/yw/mauser = 5)
prices += list(/obj/item/storage/fancy/cigarettes/yw/mauser = 18)
. = ..()
/obj/machinery/vending/food/prison
name = "Prison Nutriment Vendor"
desc = "Delicious, probably not."
icon_state = "fridge_dark"
products = list(/obj/item/tray = 6,
/obj/item/material/kitchen/utensil/fork = 6,
/obj/item/material/knife/plastic = 6,
/obj/item/material/kitchen/utensil/spoon = 6,
/obj/item/reagent_containers/food/snacks/bugball = 10,
/obj/item/reagent_containers/food/snacks/candy_corn = 30,
/obj/item/reagent_containers/food/snacks/tofu = 10,
/obj/item/reagent_containers/food/snacks/wishsoup = 10,
/obj/item/reagent_containers/food/snacks/candy/proteinbar = 2,
/obj/item/reagent_containers/food/snacks/liquidfood = 10,
)
contraband = list(/obj/item/reagent_containers/food/snacks/tofupie = 3)
vend_delay = 15
/obj/machinery/vending/security/yw
name = "SecTech"
desc = "A security equipment vendor."
product_ads = "Crack capitalist skulls!;Beat some heads in!;Don't forget - harm is good!;Your weapons are right here.;Handcuffs!;Freeze, scumbag!;Don't tase me bro!;Tase them, bro.;Why not have a donut?"
icon_state = "sec"
req_access = list(ACCESS_SECURITY)
products = list(/obj/item/handcuffs = 8,/obj/item/grenade/flashbang = 4,/obj/item/flash = 5,
/obj/item/reagent_containers/food/snacks/donut/plain = 12,/obj/item/storage/box/evidence = 6)
contraband = list(/obj/item/clothing/glasses/sunglasses = 2,/obj/item/storage/box/donut = 2)
req_log_access = ACCESS_ARMORY
has_logs = 1