====== Belongings ====== **Belongings** refers to the hero's inventory system and equipment slots in Remixed Dungeon. It encompasses all items carried by the hero and their equipment. ==== Inventory System ==== The inventory system in Remixed Dungeon consists of several distinct sections: * **Main Inventory**: 22 slots for carrying items * **Equipment Slots**: Specific slots for equipped items * **Quickslots**: 4 slots for items that can be accessed quickly during combat ==== Equipment Slots ==== * **Weapon**: Main hand weapon (or two-handed weapon) * **Left Hand**: Secondary weapon/shield (off-hand) * **Armor**: Body armor * **Rings**: Two ring slots (left and right hand) * **Amulet**: Amulet of Yendor slot * **Artifact**: Special artifact slot ==== Inventory Management ==== * **Capacity**: Limited to 22 items in the main inventory * **Bags**: Special items like [[en:rpd:potion_belt_item|Potion Belt]], [[en:rpd:scroll_holster_item|Scroll Holster]], and [[en:rpd:seed_pouch_item|Seed Pouch]] expand storage for specific item types * **Quickslots**: Allow rapid access to frequently used items during combat * **Stacking**: Certain items stack (potions, scrolls, ammunition, etc.) ==== Equipment Effects ==== * **Active Bonuses**: Equipped items provide ongoing benefits * **Passive Effects**: Some items have passive effects when carried * **Restrictions**: Some items require specific stats (like strength for heavy armor) to use effectively ==== Code References ==== * **Implementation:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/Belongings.java|Belongings.java]] * **Inventory System:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/Belongings.java#L15-L150|Belongings class definition]] * **String resources (English):** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L1581-L1589|Belongings strings]] * **String resources (Russian):** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1649-L1657|Belongings strings]] ==== See Also ==== * [[en:rpd:items|Items]] * [[en:rpd:equipment|Equipment]] * [[en:rpd:inventory|Inventory]] * [[en:rpd:quickslots|Quickslots]] * [[en:rpd:hero|Hero]] {{tag> rpd mechanics inventory equipment}}