====== Gladiator Armor ====== {{ rpd:images:gladiator_armor_item.png|Gladiator Armor }} The **Gladiator Armor** is a special class armor for the [[en:rpd:gladiator_subclass|Gladiator]] subclass in Remixed Dungeon. It extends [[en:rpd:warrior_armor_item|Warrior Armor]] and provides the same Leap special ability. ==== Item Overview ==== * **Type:** [[en:rpd:class_armor_item|Class Armor]] * **Subclass:** [[en:rpd:gladiator_subclass|Gladiator]] (Warrior subclass) * **Special Effect:** Enables the Leap ability (inherited from Warrior Armor) * **Usage:** Equipped as body armor * **Restriction:** Can only be equipped by characters with Gladiator subclass * **[[en:rpd:identification|Identification]]:** Becomes identified when worn or when seen in inventory after being identified ==== Special Mechanics ==== * **Leap Ability:** Allows the wearer to jump to a targeted location * **Stun Effect:** Stuns adjacent enemies for 3 turns upon landing * **Skill Point Cost:** Requires skill points to use (cost = max skill points / 3 + 1) * **Subclass Restriction:** Only equippable by Gladiator subclass - attempting to equip without the subclass will fail with a warning message * **Armor Protection:** Provides standard armor protection in addition to special effects * **Inherited Properties:** Inherits all properties from Warrior Armor base class ==== Obtaining ==== * Use an [[en:rpd:armor_kit_item|Armor Kit]] on any regular armor while playing as Gladiator subclass * Transforms the base armor into Gladiator Armor with special properties * The armor retains all properties of the original armor (defense, enchantment, level) * Armor Kit is found in City level, dropped by King boss ==== Effect ==== When worn by a character with the [[en:rpd:gladiator_subclass|Gladiator]] subclass, the armor enables the Leap special ability. This ability allows jumping to a targeted location and stunning adjacent enemies for 3 turns. According to the game's string resources (inherited from Warrior Armor): "This lightweight armor enables a warrior to perform a special leap attack." ==== Combo Mechanics (Subclass) ==== Note: The Gladiator subclass also has a separate combo system that is not tied to this armor: * **Combo System:** Each successful melee hit adds to a combo counter * **Damage Bonus:** Combo counter increases damage of the next attack after 3+ hits * **Combo Timeout:** Combo counter resets after a certain number of turns * **Mastery Badge:** "Mastery Combo" badge is awarded for reaching combo count of 7 ==== Code References ==== * **Java Implementation:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/GladiatorArmor.java|GladiatorArmor.java]] * **Parent Class:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/WarriorArmor.java|WarriorArmor.java]] - Base warrior armor with leap ability * **Class Armor Base:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/ClassArmor.java|ClassArmor.java]] - Class armor base implementation * **Armor Kit:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/ArmorKit.java|ArmorKit.java]] - Transforms regular armor to class armor * **Subclass Check:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/GladiatorArmor.java#L20-L25|GladiatorArmor.java#L20-L25]] - Verification of Gladiator subclass * **Combo Buff:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Combo.java|Combo.java]] - Subclass combo mechanic (separate from armor) * **English String Resources:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2015-L2019|WarriorArmor strings]] (inherited name, description, and action text) * **Russian String Resources:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L2016-L2020|WarriorArmor strings]] (Russian localization) * **mr: namespace:** Check [[mr:gladiator_armor_item]] for machine-readable data ==== Related Items ==== * [[en:rpd:armor_kit_item|Armor Kit]] - Item used to create class armor * [[en:rpd:warrior_armor_item|Warrior Armor]] - Base armor with leap ability * [[en:rpd:warrior_class|Warrior Class]] - Base class for Gladiator subclass * [[en:rpd:gladiator_subclass|Gladiator Subclass]] - Subclass that can equip this armor * [[en:rpd:combo_buff|Combo Effect]] - The buff that tracks combo progress (subclass mechanic) * [[en:rpd:melee_combat_mechanic|Melee Combat]] - Information about close-range combat {{tag> rpd items armor gladiator warrior class_armor}}