User Tools

Site Tools


rpd:yogs_teeth_mob

Differences

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

Link to this comparison view

rpd:yogs_teeth_mob [2025/12/24 14:39] – Enhance wiki documentation and fix naming inconsistencies mikerpd:yogs_teeth_mob [2025/12/24 14:42] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Yog's Teeth ======
  
 +{{ rpd:images:mob_YogsTeeth.png|Yog's Teeth }}
 +
 +==== Description ====
 +Yog's Teeth is a powerful mob found in the Guts level of the dungeon, representing part of the Yog-Dzewa boss encounter. It's one of the secondary bosses that can appear during the Yog fight.
 +
 +==== Basic Stats ====
 +  * **HP:** 350 (hp(ht(350)))
 +  * **HT:** 350
 +  * **Base Attack Skill:** 46
 +  * **Base Defense Skill:** 44
 +  * **Damage:** 50-80 (dmgMin = 50, dmgMax = 80)
 +  * **Damage Resistance:** 21 (dr = 21)
 +  * **EXP for Kill:** 26 (expForKill = 26)
 +  * **Can be Pet:** No (canBePet() returns false)
 +
 +==== Special Abilities ====
 +  * **Life Drain:** On 1/3 chance, heals for damage dealt (Random.Int(3) == 1: heal(damage, this))
 +  * **Bleeding:** On 1/3 chance, inflicts bleeding on hit (Random.Int(3) == 1: Buff.affect(enemy, Bleeding.class).level(damage))
 +  * **Double Damage:** On 1/3 chance, deals double damage (Random.Int(3) == 1: Devour.hit(enemy); return damage*2)
 +  * **Aggro Alert:** When damaged, alerts all other mobs in the level to its position (damage method calls mob.beckon(getPos()) for all mobs)
 +  * **Immunities:** Immune to [[rpd:paralysis|Paralysis]], [[rpd:amok|Amok]], [[rpd:sleep|Sleep]], [[rpd:terror|Terror]], and [[rpd:burning|Burning]] (addImmunity() calls)
 +  * **Resistances:** Resistant to [[rpd:toxic_gas|Toxic Gas]] (addResistance() call)
 +
 +==== Spawn Information ====
 +  * **Level:** Guts level (level 22-24)
 +  * **Type:** Secondary boss (one of several possible secondary bosses in Yog encounter)
 +  * **Related Mobs:** Part of the Yog-Dzewa encounter alongside [[rpd:yogs_brain_mob|Yog's Brain]], [[rpd:yogs_eye_mob|Yog's Eye]], [[rpd:yogs_heart|Yog's Heart]]
 +  * **Rarity:** Rare encounter during Yog-Dzewa fight
 +
 +==== Combat Strategy ====
 +  * High damage output requires careful positioning
 +  * The life drain ability makes sustained combat challenging
 +  * The double damage proc can be devastating, so defensive measures may be required
 +  * Defeating this mob is part of completing the Yog-Dzewa challenge
 +  * Try to defeat it quickly before it can heal significantly from life drain
 +  * Consider using crowd control effects despite its immunity to some (Paralysis, Sleep, etc.)
 +
 +==== Related ====
 +  * [[rpd:yogs_brain_mob|Yog's Brain]] - Another part of the Yog encounter
 +  * [[rpd:yogs_heart|Yog's Heart]] - Another part of the Yog encounter
 +  * [[rpd:yog_dzewa|Yog-Dzewa]] - The main boss of the Guts level
 +  * [[rpd:guts_level|Guts Level]] - Where this mob appears
 +  * [[rpd:bleeding|Bleeding]] - Status effect it can inflict
 +
 +==== Source Code ====
 +  * Java Class: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/guts/YogsTeeth.java|YogsTeeth.java]]
 +  * String Resources (English): [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L3010|YogsTeeth strings (line 3010)]]
 +  * String Resources (Russian): [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L3041|YogsTeeth strings (line 3041)]]
 +  * JSON Configuration: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/mobsDesc/YogsTeeth.json|YogsTeeth.json]]
 +  * Base Mob Class: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/mobs/Mob.java|Mob.java]]
 +  * Bleeding Buff: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Bleeding.java|Bleeding.java]]
 +  * Immunity System: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/mobs/Mob.java#L139|addImmunity() method]]
 +
 +{{tag> rpd mobs bosses}}
rpd/yogs_teeth_mob.txt · Last modified: by 127.0.0.1