Skip to content

Commit

Permalink
CommitTime
Browse files Browse the repository at this point in the history
  • Loading branch information
Steelpoint committed Oct 27, 2023
1 parent 274e56e commit 6c5d534
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/game/machinery/vending/vendor_types/crew/synthetic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list(
list("Maintenance Jack", 15, /obj/item/maintenance_jack, null, VENDOR_ITEM_REGULAR),
list("Portable Dialysis Machine", 15, /obj/item/tool/portadialysis, null, VENDOR_ITEM_REGULAR),
list("Telescopic Baton", 15, /obj/item/weapon/telebaton, null, VENDOR_ITEM_REGULAR),
list("Tactical Tools and C4", 15, /obj/item/storage/box/kit/tactical_kit, null, VENDOR_ITEM_REGULAR),
list("Tactical Equipment and C4", 15, /obj/item/storage/box/kit/tactical_kit, null, VENDOR_ITEM_REGULAR),
)

//------------EXPERIMENTAL TOOL KITS---------------
Expand Down
9 changes: 9 additions & 0 deletions code/game/objects/items/storage/pouch.dm
Original file line number Diff line number Diff line change
Expand Up @@ -683,6 +683,10 @@
new /obj/item/reagent_container/hypospray/autoinjector/stimulant/redemption_stimulant(src)
new /obj/item/reagent_container/hypospray/autoinjector/stimulant/speed_stimulant(src)

/obj/item/storage/pouch/medical/socmed/synth
desc = "A heavy pouch that can carry a full suite of medical supplies, this one is a limited issue version sometimes given to USCM synthetic units."
storage_slots = 7

/obj/item/storage/pouch/medical/socmed/dutch
name = "\improper Dutch's Medical Pouch"
desc = "A pouch bought from a black market trader by Dutch quite a few years ago. Rumoured to be stolen from secret USCM assets. Its contents have been slowly used up and replaced over the years."
Expand Down Expand Up @@ -1256,6 +1260,11 @@
new /obj/item/tool/weldingtool(src)
new /obj/item/tool/wrench(src)

/obj/item/storage/pouch/tools/tactical/synth
desc = "This particular toolkit full of sharp, heavy objects was designed for breaking into things rather than fixing them. Still does the latter pretty well, though. Special issue version given to some USCM synthetic units."
icon_state = "soctools"
storage_slots = 4

/obj/item/storage/pouch/sling
name = "sling strap"
desc = "Keeps a single item attached to a strap."
Expand Down
4 changes: 3 additions & 1 deletion code/modules/cm_marines/equipment/kit_boxes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -546,9 +546,11 @@
new /obj/item/clothing/glasses/welding(src)

/obj/item/storage/box/kit/tactical_kit
name = "\improper Tactical Engineering Kit"
name = "\improper Tactical Equipment Kit"

/obj/item/storage/box/kit/tactical_kit/fill_preset_inventory()
new /obj/item/storage/pouch/medical/socmed/synth(src)
new /obj/item/storage/pouch/tools/tactical/synth(src)
new /obj/item/tool/screwdriver/tactical(src)
new /obj/item/tool/wirecutters/tactical(src)
new /obj/item/tool/crowbar/tactical(src)
Expand Down

0 comments on commit 6c5d534

Please sign in to comment.