User Tools

Site Tools


mr:undead_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:undead_mob [2026/01/01 05:00] – Update undead_mob page with correct Java class reference mikemr:undead_mob [2026/01/01 06:27] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Undead Mob - Code References ======
  
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/mobs/Undead.java|Undead.java]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/mobs/Mob.java|Mob.java]] (Parent class)
 +
 +===== JSON Configuration =====
 +This entity represents a category of monsters and does not have separate JSON configuration.
 +
 +===== String Resources =====
 +<code xml>
 +<string name="Undead_Name">undead</string>
 +<string name="Undead_Info">Undead creature animated by dark magic.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Entity Kind =====
 +  * getEntityKind(): Returns "Undead" (class name)
 +
 +===== Additional Code References =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/buffs/Buff.java|Buff.java]] - Related buffs
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/Item.java|Item.java]] - Item interactions