User Tools

Site Tools


rpd:armor_durability

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
rpd:armor_durability [2025/12/30 13:08] – Add armor_durability.txt page with armor degradation mechanics info mikerpd:armor_durability [2025/12/30 13:12] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Armor Durability ======
  
 +Armor Durability is a system in Remixed Dungeon that causes armor to degrade with use over time, eventually reducing its effectiveness.
 +
 +==== Description ====
 +Armor Durability is a mechanic that causes armor to degrade each time it absorbs damage. As durability decreases, the armor's effectiveness may be reduced until it eventually breaks completely.
 +
 +==== Mechanics ====
 +  * **Degradation Rate:** Armor degrades when it absorbs damage from attacks
 +  * **Protection Reduction:** As durability decreases, armor may provide less protection
 +  * **Complete Failure:** When durability reaches zero, the armor may break completely or become ineffective
 +
 +==== Implementation ====
 +  * **Base Class:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/Armor.java|Armor.java]]
 +  * **Durability Tracking:** Integrated into the base Armor class
 +  * **Damage Absorption:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/Armor.java#L136|Armor absorb() method]]
 +
 +==== Affected Items ====
 +  * All armor types have durability mechanics:
 +    * [[rpd:cloth_armor_item|Cloth Armor]]
 +    * [[rpd:leather_armor_item|Leather Armor]]
 +    * [[rpd:scale_armor_item|Scale Armor]]
 +    * [[rpd:mail_armor_item|Mail Armor]]
 +    * [[rpd:plate_armor_item|Plate Armor]]
 +    * [[rpd:dragon_armor_item|Dragon Armor]]
 +
 +==== Maintenance ====
 +  * **Repairing:** Armor can potentially be repaired using repair tools or services
 +  * **Prevention:** Using shields or other defensive measures may reduce armor wear
 +
 +==== Related ====
 +  * [[rpd:armor|Armor]]
 +  * [[rpd:equipment|Equipment]]
 +  * [[rpd:weapon_durability|Weapon Durability]]
 +
 +{{tag> rpd mechanics equipment armor }}