Skip to content

Commit

Permalink
tool pouch buff
Browse files Browse the repository at this point in the history
  • Loading branch information
morrowwolf committed Oct 27, 2023
1 parent 7910800 commit 794a048
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion code/game/objects/items/storage/pouch.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,7 @@
/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 or light replacer."
storage_slots = 4
storage_slots = 5
max_w_class = SIZE_MEDIUM
icon_state = "tools"
can_hold = list(
Expand Down Expand Up @@ -1192,30 +1192,35 @@
new /obj/item/tool/wirecutters(src)
new /obj/item/device/multitool(src)
new /obj/item/tool/wrench(src)
new /obj/item/stack/cable_coil(src)

/obj/item/storage/pouch/tools/pfc/fill_preset_inventory()
new /obj/item/tool/screwdriver(src)
new /obj/item/tool/wirecutters(src)
new /obj/item/tool/weldingtool(src)
new /obj/item/tool/wrench(src)
new /obj/item/stack/cable_coil(src)

/obj/item/storage/pouch/tools/synth/fill_preset_inventory()
new /obj/item/tool/screwdriver(src)
new /obj/item/device/multitool(src)
new /obj/item/tool/weldingtool(src)
new /obj/item/stack/cable_coil(src)
new /obj/item/stack/cable_coil(src)

/obj/item/storage/pouch/tools/tank/fill_preset_inventory()
new /obj/item/tool/crowbar(src)
new /obj/item/tool/wrench(src)
new /obj/item/tool/weldingtool/hugetank(src)
new /obj/item/tool/extinguisher/mini(src)
new /obj/item/stack/cable_coil(src)

/obj/item/storage/pouch/tools/mortar/fill_preset_inventory()
new /obj/item/tool/crowbar(src)
new /obj/item/tool/wrench(src)
new /obj/item/tool/wirecutters(src)
new /obj/item/tool/shovel/etool(src)
new /obj/item/stack/cable_coil(src)

/obj/item/storage/pouch/tools/tactical/full/fill_preset_inventory()
new /obj/item/tool/screwdriver/tactical(src)
Expand All @@ -1232,6 +1237,7 @@
new /obj/item/tool/wirecutters(src)
new /obj/item/tool/weldingtool(src)
new /obj/item/tool/wrench(src)
new /obj/item/stack/cable_coil(src)

/obj/item/storage/pouch/sling
name = "sling strap"
Expand Down

0 comments on commit 794a048

Please sign in to comment.