Skip to content

Commit

Permalink
base
Browse files Browse the repository at this point in the history
  • Loading branch information
Staykeu committed Feb 7, 2024
1 parent b1e7b70 commit fc79dd9
Showing 1 changed file with 5 additions and 2 deletions.
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

0 comments on commit fc79dd9

Please sign in to comment.