User Tools

Site Tools


mr:worm_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:worm_mob [2025/12/25 18:23] – auto lint fix Mikhaelmr:worm_mob [2025/12/28 23:09] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Worm Mob - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/guts/Worm.java|Worm.java]]
 +
 +===== JSON Configuration =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/spritesDesc/Worm.json|Worm.json]]
 +
 +===== String Resources =====
 +<code xml>
 +<string name="Worm_Name">worm</string>
 +<string name="Worm_Gender">masculine</string>
 +<string name="Worm_Name_Objective">worm</string>
 +<string name="Worm_Desc">There is no way to tell how big this worm is. Partially emerging from the floor, body of that creature is covered in lumps of rotten flesh and slime. Giant mandibles gives you a clear idea of how that monster makes his way through the surface.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Implementation Notes =====
 +  * **HP:** 195 (ht - hit points)
 +  * **Defense:** 15 (baseDefenseSkill)
 +  * **Attack:** 20 (baseAttackSkill)
 +  * **Damage:** 22-45 (dmgMin-dmgMax)
 +  * **DR:** 50 (damage reduction)
 +  * **Exp:** 18 (expForKill)
 +  * **Max Level:** 35 (maxLvl)
 +  * **Loot:** Gold with 0.4f chance
 +  * **Immunities:** Paralysis, Stun, ToxicGas
 +  * **Special Attacks:**
 +    * Roots enemy with 1/7 chance
 +    * Poison enemy for 7-9 turns with 1/5 chance
 +  * **Location:** Found in Guts (lower dungeon levels)
 +
 +===== Related mr Entities =====
 +  * [[mr:larva_mob|Larva (Mob)]]