From a183fd277f1aff52eacc146d2db1cd4637ba996a Mon Sep 17 00:00:00 2001 From: ddorou Date: Sun, 28 Jan 2024 21:39:50 +0300 Subject: [PATCH] =?UTF-8?q?+=D1=81=D0=BB=D0=BE=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- baystation12.dme | 3 +- mods/_master_files/maps/sierra/pouches.dm | 37 +++++++++++++++++++++++ 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 mods/_master_files/maps/sierra/pouches.dm diff --git a/baystation12.dme b/baystation12.dme index d2c0b3c64a723..fe363a0d13bf8 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" @@ -3366,6 +3366,7 @@ #include "mods\_master_files\code\modules\mob\new_player\new_player.dm" #include "mods\_master_files\code\modules\power\gravitygenerator.dm" #include "mods\_master_files\maps\mapsystem\maps.dm" +#include "mods\_master_files\maps\sierra\pouches.dm" #include "mods\_master_files\maps\sierra\sierra_ranks.dm" #include "~code\global_init.dm" // END_INCLUDE diff --git a/mods/_master_files/maps/sierra/pouches.dm b/mods/_master_files/maps/sierra/pouches.dm new file mode 100644 index 0000000000000..3e5b7927bdf5f --- /dev/null +++ b/mods/_master_files/maps/sierra/pouches.dm @@ -0,0 +1,37 @@ +/obj/item/clothing/accessory/storage/pouches + name = "storage pouches" + desc = "A collection of black pouches that can be attached to a plate carrier. Carries up to three items." + icon_override = 'icons/mob/onmob/onmob_modular_armor.dmi' + icon = 'icons/obj/clothing/obj_suit_modular_armor.dmi' + accessory_icons = list( + slot_tie_str = 'icons/mob/onmob/onmob_modular_armor.dmi', + slot_wear_suit_str = 'icons/mob/onmob/onmob_modular_armor.dmi' + ) + icon_state = "pouches" + gender = PLURAL + slot = ACCESSORY_SLOT_ARMOR_S + slots = 3 STORAGE_SLOTS + + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_modular_armor_unathi.dmi' + ) + + +/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." + icon_state = "pouches_blue" + + +/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." + icon_state = "pouches_navy" + + +/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." + icon_state = "pouches_green" + + +/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." + icon_state = "pouches_tan"