====== Mage Armor Item - Code References ====== ===== Java Classes ===== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/MageArmor.java|MageArmor.java]] - Main class implementation * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/ClassArmor.java|ClassArmor.java]] - Parent class ===== JSON Configuration ===== * RemixedDungeon/src/main/assets/spritesDesc/mage_armor.json - Sprite configuration ===== String Resources ===== mage robe Wearing this gorgeous robe, a mage can cast a spell of molten earth: all the enemies in his field of view will be set on fire and will be unable to move at the same time. MOLTEN EARTH Only mages can use this armor! ===== Lua Scripts ===== This entity is implemented in Java, no Lua script exists ===== Special Abilities ===== * Casting "Molten Earth" spell (special ability): Sets visible enemies on fire and roots them in place * Burns enemies via [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Burning.java|Burning.java]] * Roots enemies via [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Roots.java|Roots.java]] ===== Implementation Notes ===== * Can only be equipped by Mage class * Obtained by using Armor Kit on Tier-3 armor (Plate Mail, Scale Armor, Leather Armor)