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

Adds One Slot to IFAK/Tools Pouches. #5680

Closed
wants to merge 1 commit into from
Closed
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
7 changes: 5 additions & 2 deletions code/game/objects/items/storage/pouch.dm
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@
name = "first-aid pouch"
desc = "It contains, by default, autoinjectors. But it may also hold ointments, bandages, and pill packets."
icon_state = "firstaid"
storage_slots = 4
storage_slots = 5
can_hold = list(
/obj/item/stack/medical/ointment,
/obj/item/reagent_container/hypospray/autoinjector,
Expand All @@ -209,9 +209,11 @@
new /obj/item/reagent_container/hypospray/autoinjector/kelotane(src)
new /obj/item/reagent_container/hypospray/autoinjector/tramadol(src)
new /obj/item/reagent_container/hypospray/autoinjector/emergency(src)
new /obj/item/stack/medical/splint(src)

/obj/item/storage/pouch/firstaid/full/alternate/fill_preset_inventory()
new /obj/item/reagent_container/hypospray/autoinjector/tricord(src)
new /obj/item/reagent_container/hypospray/autoinjector/tramadol(src)
new /obj/item/stack/medical/splint(src)
new /obj/item/stack/medical/ointment(src)
new /obj/item/stack/medical/bruise_pack(src)
Expand All @@ -221,6 +223,7 @@
new /obj/item/storage/pill_bottle/packet/kelotane(src)
new /obj/item/storage/pill_bottle/packet/tramadol(src)
new /obj/item/storage/pill_bottle/packet/tramadol(src)
new /obj/item/stack/medical/splint(src)

/obj/item/storage/pouch/firstaid/ert
desc = "It can contain autoinjectors, ointments, and bandages. This one has some extra stuff."
Expand Down Expand Up @@ -1194,7 +1197,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
Loading