forked from Baystation12/Baystation12
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |