User Tools

Site Tools


mr:mage_armor_item

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
mr:mage_armor_item [2026/02/10 03:38] – Update mage armor pages with accurate information from codebase mikemr:mage_armor_item [2026/02/10 03:40] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== 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 =====
 +<code xml>
 +<string name="MageArmor_Name">mage robe</string>
 +<string name="MageArmor_Desc">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.</string>
 +<string name="MageArmor_ACSpecial">MOLTEN EARTH</string>
 +<string name="MageArmor_NotMage">Only mages can use this armor!</string>
 +</code>
 +
 +===== 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)
  
mr/mage_armor_item.txt · Last modified: by 127.0.0.1