Merge pull request #8519 from KillianKirilenko/kk-misc2

Explorer/Pathfinder Belts
This commit is contained in:
Novacat
2020-08-25 17:15:14 -04:00
committed by GitHub
4 changed files with 54 additions and 1 deletions

View File

@@ -1,4 +1,55 @@
/obj/item/weapon/storage/belt
sprite_sheets = list(
SPECIES_TESHARI = 'icons/mob/species/seromi/belt.dmi',
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/belt.dmi')
SPECIES_WEREBEAST = 'icons/mob/species/werebeast/belt.dmi')
/obj/item/weapon/storage/belt/explorer
name = "explorer's belt"
desc = "A versatile belt with several pouches. It can hold a very wide variety of items, but less items overall than a dedicated belt. Still, it's useful for any explorer who wants to be prepared for anything they might find."
icon_state = "explorer_belt"
icon = 'icons/obj/clothing/belts_vr.dmi'
icon_override = 'icons/mob/belt_vr.dmi'
storage_slots = 5 //makes it strictly inferior to any specialized belt as they have seven slots, but it's far more versatile
max_w_class = ITEMSIZE_NORMAL //limits the max size of thing that can be put in, so no using it to hold five laser cannons
max_storage_space = ITEMSIZE_COST_NORMAL * 5
can_hold = list(
/obj/item/weapon/grenade,
/obj/item/weapon/tool,
/obj/item/weapon/weldingtool,
/obj/item/weapon/pickaxe,
/obj/item/device/multitool,
/obj/item/stack/cable_coil,
/obj/item/device/analyzer,
/obj/item/device/flashlight,
/obj/item/weapon/cell,
/obj/item/weapon/gun,
/obj/item/weapon/material,
/obj/item/weapon/melee,
/obj/item/weapon/shield,
/obj/item/ammo_casing,
/obj/item/ammo_magazine,
/obj/item/device/healthanalyzer,
/obj/item/device/robotanalyzer,
/obj/item/weapon/reagent_containers/glass/beaker,
/obj/item/weapon/reagent_containers/glass/bottle,
/obj/item/weapon/storage/pill_bottle,
/obj/item/stack/medical,
/obj/item/stack/marker_beacon,
/obj/item/weapon/extinguisher/mini,
/obj/item/weapon/storage/quickdraw/syringe_case,
/obj/item/weapon/photo,
/obj/item/device/camera_film,
/obj/item/device/camera,
/obj/item/device/taperecorder,
/obj/item/device/tape,
/obj/item/device/geiger,
/obj/item/device/gps,
/obj/item/device/ano_scanner,
/obj/item/device/cataloguer
)
/obj/item/weapon/storage/belt/explorer/pathfinder
name = "pathfinder's belt"
desc = "A deluxe belt with many pouches. It can hold a very wide variety of items, but less items overall than a dedicated belt. Still, it's useful for any explorer who wants to be prepared for anything they might find."
storage_slots = 7 //two more, bringing it on par with normal belts
max_storage_space = ITEMSIZE_COST_NORMAL * 7

View File

@@ -44,6 +44,7 @@
/obj/item/clothing/under/explorer,
/obj/item/clothing/suit/storage/hooded/explorer,
/obj/item/clothing/mask/gas/explorer,
/obj/item/weapon/storage/belt/explorer,
/obj/item/clothing/shoes/boots/winter/explorer,
/obj/item/clothing/gloves/black,
/obj/item/device/radio/headset/explorer,
@@ -159,6 +160,7 @@
/obj/item/clothing/under/explorer,
/obj/item/clothing/suit/storage/hooded/explorer,
/obj/item/clothing/mask/gas/explorer,
/obj/item/weapon/storage/belt/explorer/pathfinder,
/obj/item/clothing/shoes/boots/winter/explorer,
/obj/item/clothing/gloves/black,
/obj/item/device/radio/headset/pathfinder,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 361 B