User Tools

Site Tools


en:rpd:equipment

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:rpd:equipment [2026/01/01 19:45] – namespace move Mikeen:rpd:equipment [2026/01/01 19:46] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Equipment ======
  
 +Equipment refers to items that can be worn by the hero to improve their capabilities in Remixed Dungeon.
 +
 +==== Description ====
 +Equipment items provide various benefits to the hero when worn. They include weapons for improved combat, armor for protection, and accessories for various special effects.
 +
 +==== Equipment Slots ====
 +  * **Main Hand** - Weapons or shields
 +  * **Second Hand** - Off-hand weapons or shields
 +  * **Armor** - Body armor for protection
 +  * **Accessories** - Rings, amulets, and other accessories with special effects
 +
 +==== Equipment Categories ====
 +  * **Weapons** - Improve damage output and attack effectiveness
 +  * **Armor** - Reduce incoming damage and provide other benefits
 +  * **Accessories** - Provide special effects like magic resistance or healing
 +  * **Class Armor** - Special armor for hero subclasses
 +
 +==== Common Mechanics ====
 +  * **Strength Requirements**: Heavier equipment requires sufficient strength
 +  * **Enchantments**: Equipment can be enhanced with special effects
 +  * **Identification**: Equipment must be identified to see enchantments
 +  * **Durability**: Equipment slowly degrades with use
 +
 +==== Code References ====
 +  * Equipment System: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/Belongings.java|Belongings.java]] - Equipment slots and system
 +  * Item System: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/Item.java|Item.java]] - Base item mechanics
 +  * Equipment Mechanics: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/Hero.java#L150-L200|Hero equipment code]] - How equipment affects the hero
 +  * String Resources: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|strings_all.xml]] - All equipment names and descriptions
 +
 +==== Common Equipment Types ====
 +  * [[en:rpd:weapon_item|Weapons]]
 +  * [[en:rpd:armor_item|Armor]]
 +  * [[en:rpd:rings|Accessories]]
 +  * [[en:rpd:shields|Shields]]
 +  * [[en:rpd:artifacts|Artifacts]]
 +
 +==== See Also ====
 +  * [[en:rpd:items|Items]]
 +  * [[en:rpd:combat_mechanics|Combat]]
 +  * [[en:rpd:armor|Armor]]
 +  * [[en:rpd:weapon_item|Weapons]]
 +
 +{{tag> rpd items equipment }}