-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tinypaks, backpacks, but tiny [SLIGHTLY LESS MODULAR] (#4651)
* Add files via upload * Create tinypacks * Update flavor_misc.dm * Update tgstation.dme * Rename tinypacks to tinypacks.dm * Update clothing.dm * Update _job.dm * Update tinypacks.dm * Update tinypacks.dm * Update _job.dm * Apply suggestions from code review Co-authored-by: FlufflesTheDog <[email protected]> * Update modular_nova/modules/clothing_improvements/code/tinypacks.dm Co-authored-by: FlufflesTheDog <[email protected]> --------- Co-authored-by: Bloop <[email protected]> Co-authored-by: FlufflesTheDog <[email protected]>
- Loading branch information
1 parent
da3d1f0
commit 9e6ad04
Showing
7 changed files
with
61 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
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
Binary file not shown.
Binary file not shown.
29 changes: 29 additions & 0 deletions
29
modular_nova/modules/clothing_improvements/code/tinypacks.dm
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,29 @@ | ||
/obj/item/storage/backpack/tinypakb | ||
name = "storage belt" | ||
desc = "A small belt coated from front to back in pouches." | ||
icon_state = "tinypakb" | ||
inhand_icon_state = "messenger" | ||
icon = 'modular_nova/modules/clothing_improvements/code/clothing.dmi' | ||
worn_icon = 'modular_nova/modules/clothing_improvements/code/clothing_worn.dmi' | ||
lefthand_file = 'icons/mob/inhands/equipment/backpack_lefthand.dmi' | ||
righthand_file = 'icons/mob/inhands/equipment/backpack_righthand.dmi' | ||
|
||
/obj/item/storage/backpack/tinypaka | ||
name = "waistpack" | ||
desc = "A small, waist-mounted pack for... well, storing stuff!" | ||
icon_state = "tinypaka" | ||
inhand_icon_state = "messenger" | ||
icon = 'modular_nova/modules/clothing_improvements/code/clothing.dmi' | ||
worn_icon = 'modular_nova/modules/clothing_improvements/code/clothing_worn.dmi' | ||
lefthand_file = 'icons/mob/inhands/equipment/backpack_lefthand.dmi' | ||
righthand_file = 'icons/mob/inhands/equipment/backpack_righthand.dmi' | ||
|
||
/obj/item/storage/backpack/tinypakc | ||
name = "chest pouch" | ||
desc = "Like a fannypack, but for your chest! ...Seems to hold alot more, though." | ||
icon_state = "tinypakc" | ||
inhand_icon_state = "messenger" | ||
icon = 'modular_nova/modules/clothing_improvements/code/clothing.dmi' | ||
worn_icon = 'modular_nova/modules/clothing_improvements/code/clothing_worn.dmi' | ||
lefthand_file = 'icons/mob/inhands/equipment/backpack_lefthand.dmi' | ||
righthand_file = 'icons/mob/inhands/equipment/backpack_righthand.dmi' |
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