User Tools

Site Tools


en:rpd:rotting_fist_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
en:rpd:rotting_fist_mob [2026/01/01 20:01] – Update rotting_fist_mob.txt with enhanced content, code references, and internal links mikeen:rpd:rotting_fist_mob [2026/01/01 20:03] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Rotting Fist ======
  
 +{{ rpd:images:rotting_fist_mob.png|Rotting Fist }}
 +
 +==== Description ====
 +The **Rotting Fist** is one of the guardians of Yog, the God of Death. It is encountered in the [[en:rpd:guts_level|Goo Depths]] and is one of the secondary bosses protecting Yog along with [[en:rpd:burning_fist_mob|Burning Fist]], [[en:rpd:yogs_brain_mob|Yogs' Brain]], [[en:rpd:yogs_heart_mob|Yogs' Heart]], and [[en:rpd:yogs_teeth_mob|Yogs' Teeth]].
 +
 +==== Stats ====
 +  * **HP**: 500
 +  * **HT**: 500
 +  * **Defense Skill**: 25
 +  * **Attack Skill**: 36
 +  * **Damage**: 34-46
 +  * **DR (Damage Resistance)**: 15
 +  * **EXP for Kill**: 0 (Does not grant experience)
 +
 +==== Abilities ====
 +  * **Ooze Attack**: Has a 33% chance (Random.Int(3) == 0) to inflict [[en:rpd:ooze_buff|Ooze status effect]] on hit
 +  * **Summoning**: When damaged, summons all nearby [[en:rpd:mobs|mobs]] to its location
 +  * **Regeneration**: Heals 10 HP when standing in water (and HP is below max)
 +  * **Immunities**: Immune to [[en:rpd:amok_buff|Amok]], [[en:rpd:sleep_buff|Sleep]], [[en:rpd:terror_buff|Terror]], [[en:rpd:poison_buff|Poison]], and [[en:rpd:burning_buff|Burning]]
 +  * **Resistance**: Resistant to [[en:rpd:toxic_gas_level_object|Toxic Gas]]
 +  * **No Pet**: Cannot be turned into a [[en:rpd:pet_mechanic|pet]]
 +
 +==== Special Mechanics ====
 +  * The Rotting Fist will call for help from nearby [[en:rpd:mobs|mobs]] when taking damage
 +  * It regenerates health when standing in water, making it more dangerous in certain terrain
 +
 +==== Drops ====
 +  * No standard drops (as it's a Yog guardian)
 +
 +==== Location ====
 +  * Found in the [[en:rpd:guts_level|Goo Depths]] (last level) as one of Yog's guardians
 +
 +==== Content Verification ====
 +  * Information source: Java class [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/guts/RottingFist.java|RottingFist.java]]
 +  * Stats verification: Extracted from RottingFist.java constructor and class fields
 +  * Effect descriptions: Based on string resources and in-game mechanics
 +  * String resources: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1358|RottingFist_Name]], [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1361|RottingFist_Desc]]
 +  * Configuration: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/spritesDesc/RottingFist.json|RottingFist.json]]
 +  * Machine-readable data: [[mr:rotting_fist_mob|mr:rotting_fist_mob]]
 +  * Last updated: December 21, 2025
 +
 +==== Code References ====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/guts/RottingFist.java|RottingFist.java]] - Main implementation
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/guts/RottingFist.java#L21-L37|Constructor]] - Stats and properties initialization
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/guts/RottingFist.java#L45-L49|attackProc method]] - Implementation of Ooze attack (33% chance)
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/guts/RottingFist.java#L51-L56|damage method]] - Implementation that summons nearby mobs when hit
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/guts/RottingFist.java#L58-L64|act method]] - Implementation of regeneration in water
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/guts/RottingFist.java#L66-L69|Description method]] - Text description source
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1358|RottingFist_Name]] - Russian string resource
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1361|RottingFist_Desc]] - Russian description string
 +
 +{{tag> rpd mobs boss guts }}