mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-31 20:11:56 +00:00
Straight from CentComm's R&D lab, the ANTI-TIDER-2500 is the ULTIMATE crowd-control device. Tired of being harassed by the crew for petty reasons? Sick of permabrigged prisoners constantly rioting over soggy tofu rations? The ANTI-TIDER-2500 is for YOU! For the modest sum of 710 credits you'll finally be able to hose clowns and whiners alike in pepper spray! Co-authored-by: coiax <yellowbounder@gmail.com>
42 lines
1.6 KiB
Plaintext
42 lines
1.6 KiB
Plaintext
/obj/machinery/vending/security
|
|
name = "\improper SecTech"
|
|
desc = "A security equipment vendor."
|
|
product_ads = "Crack communist 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"
|
|
icon_deny = "sec-deny"
|
|
light_mask = "sec-light-mask"
|
|
req_access = list(ACCESS_SECURITY)
|
|
products = list(/obj/item/restraints/handcuffs = 8,
|
|
/obj/item/restraints/handcuffs/cable/zipties = 10,
|
|
/obj/item/grenade/flashbang = 4,
|
|
/obj/item/assembly/flash/handheld = 5,
|
|
/obj/item/food/donut = 12,
|
|
/obj/item/storage/box/evidence = 6,
|
|
/obj/item/flashlight/seclite = 4,
|
|
/obj/item/restraints/legcuffs/bola/energy = 7)
|
|
contraband = list(/obj/item/clothing/glasses/sunglasses = 2,
|
|
/obj/item/storage/fancy/donut_box = 2)
|
|
premium = list(/obj/item/storage/belt/security/webbing = 5,
|
|
/obj/item/coin/antagtoken = 1,
|
|
/obj/item/clothing/head/helmet/blueshirt = 1,
|
|
/obj/item/clothing/suit/armor/vest/blueshirt = 1,
|
|
/obj/item/clothing/gloves/tackler = 5,
|
|
/obj/item/grenade/stingbang = 1,
|
|
/obj/item/watertank/pepperspray = 2)
|
|
refill_canister = /obj/item/vending_refill/security
|
|
default_price = PAYCHECK_MEDIUM
|
|
extra_price = PAYCHECK_HARD * 1.5
|
|
payment_department = ACCOUNT_SEC
|
|
|
|
/obj/machinery/vending/security/pre_throw(obj/item/I)
|
|
if(istype(I, /obj/item/grenade))
|
|
var/obj/item/grenade/G = I
|
|
G.arm_grenade()
|
|
else if(istype(I, /obj/item/flashlight))
|
|
var/obj/item/flashlight/F = I
|
|
F.on = TRUE
|
|
F.update_brightness()
|
|
|
|
/obj/item/vending_refill/security
|
|
icon_state = "refill_sec"
|