User Tools

Site Tools


en:rpd:earth_elemental_mob

Differences

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

Link to this comparison view

en:rpd:earth_elemental_mob [2026/01/01 19:45] – namespace move Mikeen:rpd:earth_elemental_mob [2026/01/01 19:46] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Earth Elemental Mob ======
  
 +{{ rpd:images:earth_elemental_mob.png|Earth Elemental }}
 +
 +==== Description ====
 +Earth elementals are earth masses driven by concentrated nature forces. They appear in grassy areas and have various immunities.
 +
 +==== Stats ====
 +  * **HP:** depth * 10 + 1
 +  * **Attack Skill:** (depth / 2 + 1) / 2 + 1
 +  * **Defense Skill:** depth / 2 + 1
 +  * **Damage:** hp/5 to hp/5
 +  * **Damage Resistance:** expForKill (depth + 1)
 +  * **EXP for Kill:** depth + 1
 +  * **Max Level:** depth + 2
 +  * **Speed:** Normal, but cut in half on liquid terrain
 +
 +==== Special Abilities ====
 +  * **Attack:** When attacking, has a 50% chance to cause regrowth on suitable terrain at the target's location
 +  * **Regrowth:** Affects a 15-cell area with strength max(expForKill,10)
 +
 +==== Resistances and Immunities ====
 +  * Immune to Roots
 +  * Immune to Paralysis
 +  * Immune to Stun
 +  * Immune to Toxic Gas
 +  * Immune to Burning
 +  * Immune to Bleeding
 +
 +==== Drops ====
 +  * Earthroot Seed (10% chance)
 +
 +==== Spawn Information ====
 +  * Spawns in grassy areas according to Feelings section in Bestiary.json
 +  * Spawn rate: 1 in GRASS areas
 +
 +==== Strategy ====
 +  * Earth elementals can create regrowth zones which may spawn plants or healing effects
 +  * They move more slowly in liquid terrain
 +  * Their high damage resistance makes them challenging to defeat
 +  * Be cautious of the regrowth effect which might create additional challenges or benefits
 +
 +==== Source Code References ====
 +  * Core Implementation: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/elementals/EarthElemental.java|EarthElemental.java]]
 +  * Spawn Configuration: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Bestiary.json#L141|Bestiary.json#L141]] (in Feelings section)
 +  * Terrain Detection: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/elementals/EarthElemental.java#L54|EarthElemental.java#L54]] (attackProc method for terrain checks)
 +  * Speed Modification: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/elementals/EarthElemental.java#L47|EarthElemental.java#L47]] (speed method)
 +
 +==== String Resources ====
 +  * EarthElemental Name: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L1416|EarthElemental_Name]] (line 1416 in English strings)
 +  * EarthElemental Description: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L1419|EarthElemental_Desc]] (line 1419 in English strings)
 +  * Russian strings: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1402]] - [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1405|lines 1402-1405]]
 +
 +{{tag> rpd mobs elementals earth}}
 +</content>