====== Equipment Slots ====== In Remixed Dungeon, equipment is organized into different slots that determine where specific items can be equipped on your character. The equipment slot system is managed through the [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/Belongings.java|Belongings]] class which handles all hero inventory and equipment. ==== Equipment Slot Types ==== * **Weapon Slot:** For weapons (swords, wands, etc.) - only one weapon can be equipped at a time * **Armor Slot:** For armor pieces (cloth armor, leather armor, etc.) - only one armor piece can be equipped at a time * **Ring Slot 1:** For rings - allows equipping one ring at a time (can be changed at any time) * **Ring Slot 2:** For rings - allows equipping a second ring * **Accessory Slot:** For artifacts and special items like Amulet of Yendor ==== Equipment Mechanics ==== * Each slot has specific item types that can be equipped in it * Equipment provides various bonuses such as increased damage, defense, or special abilities * Items can be upgraded to improve their effectiveness * Some items have charges that need to be managed ==== Strategy ==== * Prioritize equipment upgrades based on your current needs * Different equipment serves different playstyles * Consider the weight of equipment as it affects movement speed ==== See Also ==== * [[en:rpd:items|Items]] - General information about items in the game * [[en:rpd:weapons|Weapons]] - Information about weapon types * [[en:rpd:armor_mechanic|Armor]] - Information about armor types and mechanics * [[en:rpd:rings|Rings]] - Information about ring types * [[en:rpd:accessories|Accessories]] - Information about accessory items ==== Source Code ==== * Equipment management: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/Belongings.java|Belongings.java]] - Handles all hero equipment slots * Hero inventory: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/Hero.java|Hero.java]] - Hero character logic * Quickslot system: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/ui/QuickSlot.java|QuickSlot.java]] - Quickslot UI implementation {{tag> rpd mechanics equipment}}