User Tools

Site Tools


mr:zombie_gnoll_mob

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
mr:zombie_gnoll_mob [2025/12/31 20:28] – Update zombie_gnoll_mob.txt with correct Java classes, stats, and references from code mikemr:zombie_gnoll_mob [2025/12/31 20:34] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Zombie Gnoll Mob - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/guts/ZombieGnoll.java|ZombieGnoll.java]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/common/MobFactory.java#L208|MobFactory.java]] - registration
 +
 +===== JSON Configuration =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Bestiary.json#L50-L54|Bestiary.json]] - spawn rates on levels 26-30
 +
 +===== String Resources =====
 +<code xml>
 +<string name="ZombieGnoll_Name">gnoll-zombie</string>
 +<string name="ZombieGnoll_Desc">Twisted, broken body of a zombie gnoll no longer resembles a humanoid or a hyena. All that's left is just a pile of rotten flesh and bones filled with malicious urge to kill and consume.</string>
 +<string name="ZombieGnoll_Info">Gnoll-zombie has risen from the dead!</string>
 +</code>
 +
 +===== Stats =====
 +  * **HP:** 210
 +  * **HT:** 210
 +  * **Defense Skill:** 27
 +  * **Attack Skill:** 25
 +  * **Damage:** 15-35
 +  * **Armor:** 20 (DR)
 +  * **EXP:** 7
 +  * **Max Level:** 35
 +
 +===== Abilities =====
 +  * **Resurrection:** Has a 35% chance to resurrect after death (unless killed by burning)
 +  * **Immune to Paralysis**
 +  * **Immune to Toxic Gas**
 +
 +===== Drops =====
 +  * Gold (2% chance)
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists