====== Berserk Armor Item - Code References ====== ===== Java Classes ===== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/BerserkArmor.java|BerserkArmor.java]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/WarriorArmor.java|WarriorArmor.java]] - Parent class ===== JSON Configuration ===== * This entity is implemented in Java, no JSON configuration exists ===== String Resources ===== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2015|String: WarriorArmor_Name]] - The display name for the armor * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2016|String: WarriorArmor_Desc]] - The description text for the armor * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2018|String: WarriorArmor_NotWarrior]] - Message when non-warrior tries to equip ===== Lua Scripts ===== This entity is implemented in Java, no Lua script exists ===== Usage in Code ===== * Used in [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/HeroSubClass.java|HeroSubClass.java]] line 44: associated with BERSERKER subclass as "BerserkArmor" * Used in [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/common/ItemFactory.java|ItemFactory.java]] line 65 (import) and line 367 (registration): registered as an available item class ===== Related mr Entities ===== * [[mr:warrior_class|Warrior (Class)]] * [[mr:berserker_subclass|Berserker (Subclass)]]