mr:gladiator_subclass
Table of Contents
Gladiator Subclass - Code References
Machine-readable reference page for the Gladiator hero subclass in Remixed Dungeon.
Entity Information
- Entity Kind: HeroSubClass.GLADIATOR
- Hero Class: Warrior
- Subclass Type: Mastery (Combat-focused)
- Required Achievement: Defeat Tengu + Tome of Mastery
Java Classes
- HeroSubClass.java - Enum definition (Line 43: GLADIATOR)
- GladiatorArmor.java - Class-specific armor
- TomeOfMastery.java - Unlock mechanism (Line 75)
Enum Implementation
public enum HeroSubClass { GLADIATOR(R.string.HeroSubClass_NameGlad, R.string.HeroSubClass_DescGlad, "GladiatorArmor"), // ... }
Key Methods
- desc(): Returns localized description string (R.string.HeroSubClass_DescGlad)
- name(): Returns localized name string (R.string.HeroSubClass_NameGlad)
- armorClass(): Returns “GladiatorArmor” class name for class-specific armor
Class-Specific Armor
- GladiatorArmor extends WarriorArmor
- Provides “Heroic Leap” ability (Line 21 in GladiatorArmor.java)
- Only usable by GLADIATOR subclass (checks hero.getSubClass() == HeroSubClass.GLADIATOR)
JSON Configuration
No specific JSON configuration. Subclass defined in HeroSubClass.java enum.
String Resources
<!-- English (values/strings_all.xml) --> <string name="HeroSubClass_NameGlad">gladiator</string> <string name="HeroSubClass_DescGlad">A successful attack with a melee weapon allows the _Gladiator_ to start a combo, in which every next successful hit inflicts more damage.</string> <!-- Russian (values-ru/strings_all.xml) --> <string name="HeroSubClass_NameGlad">гладиатор</string> <string name="HeroSubClass_DescGlad">Успешная атака ближнего боя позволяет, _Гладиатору_ начать серию комбо-ударов, в течение которой каждое последующее попадание наносит больше урона.</string>
Lua Scripts
This entity is implemented in Java, no Lua script exists.
Related Entities
- HeroSubClass.BERSERKER - Alternative Warrior subclass
- BerserkerArmor - Alternative class armor
- TomeOfMastery - Unlock item for both subclasses
Wiki Pages
- Gladiator Subclass (English) - English wiki page
- Гладиатор (Russian) - Russian wiki page
- Warrior Class - Parent hero class
- Mastery - Subclass unlock mechanic
- Gladiator Armor - Class-specific armor
mr/gladiator_subclass.txt · Last modified: by 127.0.0.1
