Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tool Pouch Allowed Items Change #4554

Merged
merged 1 commit into from
Oct 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading