mr:huntress_armor_item
Table of Contents
Huntress Armor Item - Code References
Huntress Armor is a class-specific armor in Remixed Dungeon. It can only be equipped by the Huntress hero class and allows the use of a special ability that attacks all visible enemies.
Java Classes
- HuntressArmor.java - Main armor class extending ClassArmor
- Location: ``RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/HuntressArmor.java``
- Extends: ``ClassArmor`` class
- Image ID: ``14``
- Has helmet: ``true``
- Covers hair: ``true``
Special Ability
The Huntress Armor has a special ability that creates a fan of spectral blades:
- Method: ``doSpecial(Char user)``
- Effect: Attacks all enemies in field of view within maximum distance (ShadowCaster.MAX_DISTANCE)
- Projectile: Uses ``Shuriken`` as the projectile sprite
- Damage: Scales with currently equipped melee weapon
- Restriction: Only works when enemies are visible
JSON Configuration
This entity is implemented in Java, no JSON configuration found. Check:
- RemixedDungeon/src/main/assets/itemsDesc/*.json
- RemixedDungeon/src/main/assets/spritesDesc/huntress_armor.json
String Resources
English string resources:
<string name="HuntressArmor_ACSpecial">special ability</string> <string name="HuntressArmor_Desc">A huntress in such a cloak can make a fan of spectral blades. Each of these blades will target a single enemy in the huntress's field of view, dealing damage based on her currently equipped melee weapon.</string> <string name="HuntressArmor_NoEnemies">No enemies in sight</string> <string name="HuntressArmor_NotHuntress">Only huntresses can use this armor!</string>
Russian string resources (values-ru/strings_all.xml):
<string name="HuntressArmor_ACSpecial">особое действие</string> <string name="HuntressArmor_Desc">Мисливица с таким плащом может создать вихрь спектральных клинков. Каждый из этих клинков будет направлен на одного врага в поле зрения мисливицы, нанося урон в зависимости от её текущего оружия ближнего боя.</string> <string name="HuntressArmor_NoEnemies">Врагов в поле зрения нет.</string> <string name="HuntressArmor_NotHuntress">Только мисливицы могут использовать эту броню!</string>
Lua Scripts
This entity is implemented in Java, no Lua script exists.
Equipment Restrictions
- Required Class: Huntress (``HeroClass.HUNTRESS``)
- Equip Check: ``doEquip(Char hero)`` validates hero class before equipping
- Warning Message: Displays ``HuntressArmor_NotHuntress`` if non-Huntress tries to equip
Related Entities
- Parent class: Class Armor
- Hero class: Huntress
- Projectile used: Shuriken
mr/huntress_armor_item.txt · Last modified: by 127.0.0.1

