Skip to content

Commit

Permalink
Tool Pouch Allowed Items Change (#4554)
Browse files Browse the repository at this point in the history
# About the pull request

The tool pouch can now hold the same items that the toolbelt is allowed
to hold. It is still restricted to four item slots.

# Explain why it's good for the game

Consistency in item management. It felt odd the tool pouch was excluded
from holding items the toolbelt can hold.


# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog
:cl:
balance: Tool Pouch can now hold the same types of items that a toolbelt
can hold. It is still restricted to 4 inventory slots.
/:cl:

Co-authored-by: Steelpoint <[email protected]>
  • Loading branch information
Steelpoint and Steelpoint authored Oct 1, 2023
1 parent 15a73af commit a5d81fc
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions code/game/objects/items/storage/pouch.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1172,23 +1172,37 @@

/obj/item/storage/pouch/tools
name = "tools pouch"
desc = "It's designed to hold maintenance tools - screwdriver, wrench, cable coil, etc. It also has a hook for an entrenching tool."
desc = "It's designed to hold maintenance tools - screwdriver, wrench, cable coil, etc. It also has a hook for an entrenching tool or light replacer."
storage_slots = 4
max_w_class = SIZE_MEDIUM
icon_state = "tools"
can_hold = list(
/obj/item/tool/wirecutters,
/obj/item/tool/shovel/etool,
/obj/item/tool/screwdriver,
/obj/item/tool/crowbar,
/obj/item/tool/screwdriver,
/obj/item/tool/weldingtool,
/obj/item/device/multitool,
/obj/item/tool/wirecutters,
/obj/item/tool/wrench,
/obj/item/stack/cable_coil,
/obj/item/tool/extinguisher/mini,
/obj/item/tool/shovel/etool,
/obj/item/stack/cable_coil,
/obj/item/weapon/gun/smg/nailgun/compact,
/obj/item/cell,
/obj/item/circuitboard,
/obj/item/stock_parts,
/obj/item/device/demo_scanner,
/obj/item/device/reagent_scanner,
/obj/item/device/assembly,
/obj/item/device/multitool,
/obj/item/device/flashlight,
/obj/item/device/t_scanner,
/obj/item/device/analyzer,
/obj/item/explosive/plastic,
/obj/item/device/lightreplacer,
)
bypass_w_limit = list(
/obj/item/tool/shovel/etool,
/obj/item/device/lightreplacer,
)
bypass_w_limit = list(/obj/item/tool/shovel/etool)

/obj/item/storage/pouch/tools/tactical
name = "tactical tools pouch"
Expand Down

0 comments on commit a5d81fc

Please sign in to comment.