User Tools

Site Tools


mr:kobold_icemancer_mob

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
mr:kobold_icemancer_mob [2025/12/25 18:23] – auto lint fix Mikhaelmr:kobold_icemancer_mob [2026/02/16 08:08] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Kobold Icemancer Mob - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/icecaves/KoboldIcemancer.java|KoboldIcemancer.java]] - Main implementation
 +  * Parent class: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/mobs/Mob.java|Mob.java]]
 +
 +===== JSON Configuration =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/spritesDesc/KoboldIcemancer.json|spritesDesc/KoboldIcemancer.json]] - Sprite configuration
 +
 +===== String Resources =====
 +<code xml>
 +<string name="KoboldIcemancer_Name">Ice mage</string>
 +<string name="KoboldIcemancer_Desc">This small goblin wears a pointed hat and carries a crystal staff. Although goblins are usually weak, this one can cast dangerous ice spells.</string>
 +<string name="KoboldIcemancer_Killed">Killed a Kobold Icemancer</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Related mr Entities =====
 +  * [[mr:kobold_mob|Kobold Mob]]
 +  * [[mr:mob|Mob Class]]