mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-29 18:40:42 +00:00
* POLICE TAPE WOO hmmgh * Much things, read desc Placed tape is a structure now instead of an item, door sprites are actually torn, all code besides destruction works (mostly) * TAPE WORKS 99% just need to have a visual for lifted tape.. * Adds lifted visual + starts on making tape obtainable ahgghbkaghb * finishes the vendors. 100% complete(?) AAAAAAAAAAAAAAAAAAA * detdrobe vending abghb * lifted alpha is better hbgb * change opacity hngh * indentation bhgjknbg im so tired * walking can crumple the tape too * desc
35 lines
1.6 KiB
Plaintext
35 lines
1.6 KiB
Plaintext
/obj/machinery/vending/engivend
|
|
name = "\improper Engi-Vend"
|
|
desc = "Spare tool vending. What? Did you expect some witty description?"
|
|
icon_state = "engivend"
|
|
icon_deny = "engivend-deny"
|
|
req_access = list(ACCESS_ENGINE_EQUIP)
|
|
products = list(/obj/item/clothing/glasses/meson/engine = 5, // Skyrat edit - 5 goggles
|
|
/obj/item/construction/rcd/loaded = 3, // Skyrat edit - 3 RCDs
|
|
/obj/item/clothing/glasses/welding = 3,
|
|
/obj/item/multitool = 4,
|
|
/obj/item/grenade/chem_grenade/smart_metal_foam = 10,
|
|
/obj/item/geiger_counter = 5,
|
|
/obj/item/stock_parts/cell/high = 10,
|
|
/obj/item/electronics/airlock = 10,
|
|
/obj/item/electronics/apc = 10,
|
|
/obj/item/electronics/airalarm = 10,
|
|
/obj/item/electronics/firealarm = 10,
|
|
/obj/item/electronics/firelock = 10,
|
|
/obj/item/storage/bag/material = 3, // Skyrat edit - ported ammo pouches
|
|
/obj/item/taperoll/engi = 2, //SKYRAT EDIT - Job tape!
|
|
/obj/item/taperoll/atmos = 2) //SKYRAT EDIT - Job tape! (This one should be for atmos techs but they dont have their own tool vendor so)
|
|
contraband = list(/obj/item/stock_parts/cell/potato = 3)
|
|
premium = list(/obj/item/storage/belt/utility = 3,
|
|
// /obj/item/construction/rcd/loaded = 2, -- Skyrat edit - moved back to regular product price
|
|
/obj/item/storage/box/smart_metal_foam = 1)
|
|
refill_canister = /obj/item/vending_refill/engivend
|
|
default_price = PAYCHECK_EASY
|
|
extra_price = PAYCHECK_COMMAND * 1.5
|
|
payment_department = ACCOUNT_ENG
|
|
light_mask = "engivend-light-mask"
|
|
|
|
/obj/item/vending_refill/engivend
|
|
machine_name = "Engi-Vend"
|
|
icon_state = "refill_engi"
|