mr:gladiator_armor_item
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| mr:gladiator_armor_item [2026/03/19 03:49] – Wiki standards compliance fixes for 4 pages Qwen Assistant | mr:gladiator_armor_item [2026/03/19 03:50] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Gladiator Armor Item - Code References ====== | ||
| + | |||
| + | ===== Java Classes ===== | ||
| + | * [[https:// | ||
| + | * Location: ``com.watabou.pixeldungeon.items.armor.GladiatorArmor`` | ||
| + | * Image ID: 7 | ||
| + | * Has helmet: true (coverHair: true) | ||
| + | * Subclass restriction: | ||
| + | * [[https:// | ||
| + | * Location: ``com.watabou.pixeldungeon.items.armor.WarriorArmor`` | ||
| + | * Extends: ClassArmor | ||
| + | * Image ID: 5 | ||
| + | * Special ability: Leap attack (stuns adjacent enemies) | ||
| + | * [[https:// | ||
| + | * Location: ``com.watabou.pixeldungeon.actors.hero.HeroSubClass`` | ||
| + | * GLADIATOR constant references " | ||
| + | |||
| + | ===== JSON Configuration ===== | ||
| + | This entity is implemented in Java, no JSON configuration exists | ||
| + | |||
| + | ===== String Resources ===== | ||
| + | * English: [[https:// | ||
| + | * ``WarriorArmor_Name`` - " | ||
| + | * ``WarriorArmor_NotWarrior`` - "Only a warrior who has mastered the sword and shield can use this armor!" | ||
| + | * ``WarriorArmor_ACSpecial`` - Special action name | ||
| + | * ``WarriorArmor_Prompt`` - Ability targeting prompt | ||
| + | * ``WarriorArmor_Desc`` - Item description | ||
| + | * Russian: [[https:// | ||
| + | * ``WarriorArmor_Name`` - " | ||
| + | * ``WarriorArmor_NotWarrior`` - " | ||
| + | |||
| + | ===== Lua Scripts ===== | ||
| + | This entity is implemented in Java, no Lua script exists | ||
| + | |||
| + | ===== Usage in Code ===== | ||
| + | * Registered in [[https:// | ||
| + | * Subclass restriction checked in ``GladiatorArmor.doEquip()`` - only equippable by HeroSubClass.GLADIATOR | ||
| + | * Parent class ``WarriorArmor`` restricts to HeroClass.WARRIOR | ||
| + | * Special ability: Leap attack that stuns adjacent enemies for 3 turns (SHOCK_TIME = 3) | ||
| + | * Leap time: 1 turn (LEAP_TIME = 1) | ||
| + | * Uses Ballistica for targeting | ||
| + | * Dispels Invisibility on use | ||
| + | * Creates dust particle effects and camera shake on landing | ||
| + | |||
| + | ===== Related mr Entities ===== | ||
| + | * [[mr: | ||
| + | * [[mr: | ||
| + | * [[mr: | ||
| + | * [[mr: | ||
| + | * [[mr: | ||
