diff --git a/baystation12.dme b/baystation12.dme index 524cf816f2fcd..8a322268c0dd0 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -88,8 +88,8 @@ #include "code\__defines\xenoarcheaology.dm" #include "code\__defines\ZAS.dm" #include "code\__defines\zmimic.dm" -#include "code\__defines\~mods\rust_g.dm" #include "code\__defines\~mods\expanded_culture_descriptor.dm" +#include "code\__defines\~mods\rust_g.dm" #include "code\__defines\~mods\~master_defines.dm" #include "code\_global_vars\edible.dm" #include "code\_global_vars\logging.dm" diff --git a/maps/sierra/items/pouches.dm b/maps/sierra/items/pouches.dm new file mode 100644 index 0000000000000..54ece2a71b43a --- /dev/null +++ b/maps/sierra/items/pouches.dm @@ -0,0 +1,19 @@ +/obj/item/clothing/accessory/storage/pouches + desc = "A collection of black pouches that can be attached to a plate carrier. Carries up to three items." + slots = 3 STORAGE_SLOTS + + +/obj/item/clothing/accessory/storage/pouches/blue + desc = "A collection of blue pouches that can be attached to a plate carrier. Carries up to three items." + + +/obj/item/clothing/accessory/storage/pouches/navy + desc = "A collection of navy blue pouches that can be attached to a plate carrier. Carries up to three items." + + +/obj/item/clothing/accessory/storage/pouches/green + desc = "A collection of green pouches that can be attached to a plate carrier. Carries up to three items." + + +/obj/item/clothing/accessory/storage/pouches/tan + desc = "A collection of tan pouches that can be attached to a plate carrier. Carries up to three items." diff --git a/maps/sierra/sierra.dm b/maps/sierra/sierra.dm index d99b22d1947e2..d504588a22c88 100644 --- a/maps/sierra/sierra.dm +++ b/maps/sierra/sierra.dm @@ -66,6 +66,7 @@ #include "items/papers.dm" #include "items/rigs.dm" #include "items/stamps.dm" + #include "items/pouches.dm" #include "items/clothing/clothing.dm" #include "items/clothing/exploration.dm"