Skip to content

Commit

Permalink
+слот
Browse files Browse the repository at this point in the history
  • Loading branch information
ddorou committed Jan 28, 2024
1 parent 0453bef commit a183fd2
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
3 changes: 2 additions & 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 Expand Up @@ -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
37 changes: 37 additions & 0 deletions mods/_master_files/maps/sierra/pouches.dm
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit a183fd2

Please sign in to comment.