Skip to content

Commit

Permalink
[MIRROR] Bandolier quality of life and minor buff [MDB IGNORE] (#522)
Browse files Browse the repository at this point in the history
* Bandolier quality of life and minor buff (#79518)
---------

Co-authored-by: SkyratBot <[email protected]>
Co-authored-by: starrm4nn <[email protected]>
  • Loading branch information
3 people authored Nov 9, 2023
1 parent 165402f commit e490f9c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions code/game/objects/items/storage/belt.dm
Original file line number Diff line number Diff line change
Expand Up @@ -725,19 +725,23 @@

/obj/item/storage/belt/bandolier
name = "bandolier"
desc = "A bandolier for holding rifle and shotgun ammunition."
desc = "A bandolier for holding rifle shotgun, and bigger revolver caliber ammunition."
icon_state = "bandolier"
inhand_icon_state = "bandolier"
worn_icon_state = "bandolier"

/obj/item/storage/belt/bandolier/Initialize(mapload)
. = ..()
atom_storage.max_slots = 18
atom_storage.max_total_storage = 18
atom_storage.max_slots = 24
atom_storage.max_total_storage = 24
atom_storage.numerical_stacking = TRUE
atom_storage.allow_quick_gather = TRUE
atom_storage.allow_quick_empty = TRUE
atom_storage.numerical_stacking = TRUE
atom_storage.set_holdable(list(
/obj/item/ammo_casing/strilka310,
/obj/item/ammo_casing/shotgun,
/obj/item/ammo_casing/a357,
))

/obj/item/storage/belt/fannypack
Expand Down

0 comments on commit e490f9c

Please sign in to comment.