====== Warrior Class - Code References ====== ===== Java Classes ===== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/HeroClass.java|HeroClass.java]] ===== JSON Configuration ===== '''' { "WARRIOR": { "title": "Warrior", "desc": "The Warrior is a melee-focused class with high durability. He starts with a unique short sword (+1) that can be used to identify potions, a knuckleduster, and a mysterious Dew Vial.", "sprite": "RPD-HeroClass-Warrior.png", "startWith": [ { "kind": "ShortSword", "level": 1, "identified": true }, { "kind": "Knuckles", "level": 0, "identified": true }, { "kind": "DewVial", "level": 0, "identified": true } ], "stats": { "STR": 10, "baseHT": 22, "baseSHLD": 3, "baseAcc": 10, "baseEvasion": 10, "baseDmg": 1, "baseDr": 0, "atkSkill": 14, "defSkill": 10, "sp": 12 }, "magicAffinity": "Combat" } } '''' ===== String Resources ===== '''' Warrior warrior The Warrior is a melee-focused class with high durability. He starts with a unique short sword (+1) that can be used to identify potions, a knuckleduster, and a mysterious Dew Vial. '''' ===== Lua Scripts ===== This entity is implemented in Java/JSON, no Lua script exists