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

Add slot a pouches #1846

Merged
merged 9 commits into from
Feb 5, 2024
2 changes: 1 addition & 1 deletion baystation12.dme
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
19 changes: 19 additions & 0 deletions maps/sierra/items/pouches.dm
Original file line number Diff line number Diff line change
@@ -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."
1 change: 1 addition & 0 deletions maps/sierra/sierra.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading