mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-02-07 06:39:57 +00:00
285 lines
9.0 KiB
Plaintext
285 lines
9.0 KiB
Plaintext
/obj/item/weapon/storage/belt
|
|
name = "belt"
|
|
desc = "Can hold various things."
|
|
icon = 'icons/obj/clothing/belts.dmi'
|
|
icon_state = "utility"
|
|
storage_slots = 7
|
|
max_storage_space = ITEMSIZE_COST_NORMAL * 7 //This should ensure belts always have enough room to store whatever.
|
|
max_w_class = ITEMSIZE_NORMAL
|
|
slot_flags = SLOT_BELT
|
|
attack_verb = list("whipped", "lashed", "disciplined")
|
|
sprite_sheets = list("Teshari" = 'icons/mob/species/seromi/belt.dmi')
|
|
|
|
var/show_above_suit = 0
|
|
|
|
/obj/item/weapon/storage/belt/verb/toggle_layer()
|
|
set name = "Switch Belt Layer"
|
|
set category = "Object"
|
|
|
|
if(show_above_suit == -1)
|
|
usr << "<span class='notice'>\The [src] cannot be worn above your suit!</span>"
|
|
return
|
|
show_above_suit = !show_above_suit
|
|
update_icon()
|
|
|
|
/obj/item/weapon/storage/update_icon()
|
|
if (ismob(src.loc))
|
|
var/mob/M = src.loc
|
|
M.update_inv_belt()
|
|
|
|
/obj/item/weapon/storage/belt/utility
|
|
name = "tool-belt" //Carn: utility belt is nicer, but it bamboozles the text parsing.
|
|
desc = "Can hold various tools."
|
|
icon_state = "utility"
|
|
can_hold = list(
|
|
///obj/item/weapon/combitool,
|
|
/obj/item/weapon/crowbar,
|
|
/obj/item/weapon/screwdriver,
|
|
/obj/item/weapon/weldingtool,
|
|
/obj/item/weapon/wirecutters,
|
|
/obj/item/weapon/wrench,
|
|
/obj/item/device/multitool,
|
|
/obj/item/device/flashlight,
|
|
/obj/item/weapon/cell/device,
|
|
/obj/item/stack/cable_coil,
|
|
/obj/item/device/t_scanner,
|
|
/obj/item/device/analyzer,
|
|
/obj/item/clothing/glasses,
|
|
/obj/item/clothing/gloves,
|
|
/obj/item/device/pda,
|
|
/obj/item/device/megaphone,
|
|
/obj/item/taperoll,
|
|
/obj/item/device/radio/headset,
|
|
/obj/item/device/robotanalyzer,
|
|
/obj/item/weapon/material/minihoe,
|
|
/obj/item/weapon/material/hatchet,
|
|
/obj/item/device/analyzer/plant_analyzer,
|
|
/obj/item/weapon/extinguisher/mini,
|
|
/obj/item/weapon/tape_roll,
|
|
/obj/item/device/integrated_electronics/wirer,
|
|
)
|
|
|
|
/obj/item/weapon/storage/belt/utility/full/New()
|
|
..()
|
|
new /obj/item/weapon/screwdriver(src)
|
|
new /obj/item/weapon/wrench(src)
|
|
new /obj/item/weapon/weldingtool(src)
|
|
new /obj/item/weapon/crowbar(src)
|
|
new /obj/item/weapon/wirecutters(src)
|
|
new /obj/item/stack/cable_coil(src,30,pick("red","yellow","orange"))
|
|
|
|
/obj/item/weapon/storage/belt/utility/atmostech/New()
|
|
..()
|
|
new /obj/item/weapon/screwdriver(src)
|
|
new /obj/item/weapon/wrench(src)
|
|
new /obj/item/weapon/weldingtool(src)
|
|
new /obj/item/weapon/crowbar(src)
|
|
new /obj/item/weapon/wirecutters(src)
|
|
new /obj/item/device/t_scanner(src)
|
|
|
|
/obj/item/weapon/storage/belt/medical
|
|
name = "medical belt"
|
|
desc = "Can hold various medical equipment."
|
|
icon_state = "medical"
|
|
can_hold = list(
|
|
/obj/item/device/healthanalyzer,
|
|
/obj/item/weapon/dnainjector,
|
|
/obj/item/weapon/reagent_containers/dropper,
|
|
/obj/item/weapon/reagent_containers/glass/beaker,
|
|
/obj/item/weapon/reagent_containers/glass/bottle,
|
|
/obj/item/weapon/reagent_containers/pill,
|
|
/obj/item/weapon/reagent_containers/syringe,
|
|
/obj/item/weapon/flame/lighter/zippo,
|
|
/obj/item/weapon/storage/fancy/cigarettes,
|
|
/obj/item/weapon/storage/pill_bottle,
|
|
/obj/item/stack/medical,
|
|
/obj/item/device/radio/headset,
|
|
/obj/item/device/pda,
|
|
/obj/item/taperoll,
|
|
/obj/item/device/megaphone,
|
|
/obj/item/clothing/mask/surgical,
|
|
/obj/item/clothing/head/surgery,
|
|
/obj/item/clothing/gloves,
|
|
/obj/item/weapon/reagent_containers/hypospray,
|
|
/obj/item/clothing/glasses,
|
|
/obj/item/weapon/crowbar,
|
|
/obj/item/device/flashlight,
|
|
/obj/item/weapon/cell/device,
|
|
/obj/item/weapon/extinguisher/mini
|
|
)
|
|
|
|
/obj/item/weapon/storage/belt/medical/emt
|
|
name = "EMT utility belt"
|
|
desc = "A sturdy black webbing belt with attached pouches."
|
|
icon_state = "ems"
|
|
|
|
/obj/item/weapon/storage/belt/security
|
|
name = "security belt"
|
|
desc = "Can hold security gear like handcuffs and flashes."
|
|
icon_state = "security"
|
|
max_w_class = ITEMSIZE_NORMAL
|
|
can_hold = list(
|
|
/obj/item/weapon/grenade,
|
|
/obj/item/weapon/reagent_containers/spray/pepper,
|
|
/obj/item/weapon/handcuffs,
|
|
/obj/item/device/flash,
|
|
/obj/item/clothing/glasses,
|
|
/obj/item/ammo_casing/shotgun,
|
|
/obj/item/ammo_magazine,
|
|
/obj/item/weapon/cell/device,
|
|
/obj/item/weapon/reagent_containers/food/snacks/donut/,
|
|
/obj/item/weapon/melee/baton,
|
|
/obj/item/weapon/gun/energy/taser,
|
|
/obj/item/weapon/gun/energy/stunrevolver,
|
|
/obj/item/weapon/gun/energy/gun,
|
|
/obj/item/weapon/flame/lighter,
|
|
/obj/item/device/flashlight,
|
|
/obj/item/device/pda,
|
|
/obj/item/device/radio/headset,
|
|
/obj/item/clothing/gloves,
|
|
/obj/item/device/hailer,
|
|
/obj/item/device/megaphone,
|
|
/obj/item/weapon/melee,
|
|
/obj/item/clothing/accessory/badge,
|
|
/obj/item/weapon/gun/projectile/sec,
|
|
/obj/item/taperoll,
|
|
/obj/item/weapon/gun/projectile/colt/detective
|
|
)
|
|
|
|
/obj/item/weapon/storage/belt/detective
|
|
name = "forensic utility belt"
|
|
desc = "A belt for holding forensics equipment."
|
|
icon_state = "security"
|
|
storage_slots = 7
|
|
max_w_class = ITEMSIZE_NORMAL
|
|
can_hold = list(
|
|
/obj/item/device/taperecorder,
|
|
/obj/item/clothing/glasses,
|
|
/obj/item/device/flashlight,
|
|
/obj/item/weapon/cell/device,
|
|
/obj/item/weapon/reagent_containers/spray/luminol,
|
|
/obj/item/weapon/sample,
|
|
/obj/item/weapon/forensics/sample_kit/powder,
|
|
/obj/item/weapon/forensics/swab,
|
|
/obj/item/device/uv_light,
|
|
/obj/item/weapon/forensics/sample_kit,
|
|
/obj/item/weapon/photo,
|
|
/obj/item/device/camera_film,
|
|
/obj/item/device/camera,
|
|
/obj/item/weapon/autopsy_scanner,
|
|
/obj/item/device/mass_spectrometer,
|
|
/obj/item/clothing/accessory/badge,
|
|
/obj/item/device/reagent_scanner,
|
|
/obj/item/weapon/reagent_containers/dropper,
|
|
/obj/item/weapon/reagent_containers/syringe,
|
|
/obj/item/device/pda,
|
|
/obj/item/device/hailer,
|
|
/obj/item/device/megaphone,
|
|
/obj/item/device/radio/headset,
|
|
/obj/item/clothing/gloves,
|
|
/obj/item/taperoll,
|
|
/obj/item/weapon/reagent_containers/spray/pepper,
|
|
/obj/item/weapon/handcuffs,
|
|
/obj/item/device/flash,
|
|
/obj/item/weapon/flame/lighter,
|
|
/obj/item/weapon/reagent_containers/food/snacks/donut/,
|
|
/obj/item/ammo_magazine,
|
|
/obj/item/weapon/gun/projectile/colt/detective
|
|
)
|
|
|
|
/obj/item/weapon/storage/belt/soulstone
|
|
name = "soul stone belt"
|
|
desc = "Designed for ease of access to the shards during a fight, as to not let a single enemy spirit slip away"
|
|
icon_state = "soulstone"
|
|
storage_slots = 6
|
|
can_hold = list(
|
|
/obj/item/device/soulstone
|
|
)
|
|
|
|
/obj/item/weapon/storage/belt/soulstone/full/New()
|
|
..()
|
|
new /obj/item/device/soulstone(src)
|
|
new /obj/item/device/soulstone(src)
|
|
new /obj/item/device/soulstone(src)
|
|
new /obj/item/device/soulstone(src)
|
|
new /obj/item/device/soulstone(src)
|
|
new /obj/item/device/soulstone(src)
|
|
|
|
|
|
/obj/item/weapon/storage/belt/champion
|
|
name = "championship belt"
|
|
desc = "Proves to the world that you are the strongest!"
|
|
icon_state = "champion"
|
|
storage_slots = 1
|
|
can_hold = list(
|
|
"/obj/item/clothing/mask/luchador"
|
|
)
|
|
|
|
/obj/item/weapon/storage/belt/security/tactical
|
|
name = "combat belt"
|
|
desc = "Can hold security gear like handcuffs and flashes, with more pouches for more storage."
|
|
icon_state = "swat"
|
|
storage_slots = 9
|
|
max_w_class = ITEMSIZE_NORMAL
|
|
max_storage_space = ITEMSIZE_COST_NORMAL * 7
|
|
|
|
/obj/item/weapon/storage/belt/security/tactical/bandolier
|
|
name = "combat belt"
|
|
desc = "Can hold security gear like handcuffs and flashes, with more pouches for more storage."
|
|
icon_state = "bandolier"
|
|
|
|
/obj/item/weapon/storage/belt/janitor
|
|
name = "janitorial belt"
|
|
desc = "A belt used to hold most janitorial supplies."
|
|
icon_state = "janitor"
|
|
storage_slots = 7
|
|
max_w_class = ITEMSIZE_NORMAL
|
|
can_hold = list(
|
|
/obj/item/clothing/glasses,
|
|
/obj/item/device/flashlight,
|
|
/obj/item/weapon/cell/device,
|
|
/obj/item/weapon/grenade,
|
|
/obj/item/device/pda,
|
|
/obj/item/device/radio/headset,
|
|
/obj/item/clothing/gloves,
|
|
/obj/item/clothing/mask/surgical, //sterile mask,
|
|
/obj/item/device/assembly/mousetrap,
|
|
/obj/item/weapon/light/bulb,
|
|
/obj/item/weapon/light/tube,
|
|
/obj/item/weapon/flame/lighter,
|
|
/obj/item/device/megaphone,
|
|
/obj/item/taperoll,
|
|
/obj/item/weapon/reagent_containers/spray,
|
|
/obj/item/weapon/soap
|
|
)
|
|
|
|
/obj/item/weapon/storage/belt/archaeology
|
|
name = "excavation gear-belt"
|
|
desc = "Can hold various excavation gear."
|
|
icon_state = "gear"
|
|
can_hold = list(
|
|
/obj/item/weapon/storage/box/samplebags,
|
|
/obj/item/device/core_sampler,
|
|
/obj/item/device/beacon_locator,
|
|
/obj/item/device/radio/beacon,
|
|
/obj/item/device/gps,
|
|
/obj/item/device/measuring_tape,
|
|
/obj/item/device/flashlight,
|
|
/obj/item/weapon/cell/device,
|
|
/obj/item/weapon/pickaxe,
|
|
/obj/item/device/depth_scanner,
|
|
/obj/item/device/camera,
|
|
/obj/item/weapon/paper,
|
|
/obj/item/weapon/photo,
|
|
/obj/item/weapon/folder,
|
|
/obj/item/weapon/pen,
|
|
/obj/item/weapon/folder,
|
|
/obj/item/weapon/clipboard,
|
|
/obj/item/weapon/anodevice,
|
|
/obj/item/clothing/glasses,
|
|
/obj/item/weapon/wrench,
|
|
/obj/item/weapon/storage/excavation,
|
|
/obj/item/weapon/anobattery,
|
|
/obj/item/device/ano_scanner,
|
|
/obj/item/weapon/pickaxe/hand
|
|
) |