====== Spider Exploding Mob - Code References ====== ===== Java Classes ===== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/spiders/SpiderExploding.java|SpiderExploding.java]] - Main mob implementation * Extends [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/common/MultiKindMob.java|MultiKindMob]] base class * Registered in [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/common/MobFactory.java|MobFactory.java]] ===== Mob Stats ===== * **HP**: 5 * **Defense**: 1 * **Attack Skill**: 125 * **Speed**: 2.0 (very fast) * **Damage**: 3-6 * **Drop Rate**: 0% carcass * **Experience**: 3 EXP * **Max Level**: 9 ===== JSON Configuration ===== SpiderExploding appears in level spawn configuration: * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Bestiary.json|Bestiary.json]] - Spider spawn rates: - Level 7s: 0.5 spawn rate - Level 8s: 0.5 spawn rate - Level 9s: 1.0 spawn rate - Level 10s: 1.0 spawn rate ===== String Resources ===== * English: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L1406-L1409|strings_all.xml]] (lines 1406-1409) * Russian: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L2097-L2100|strings_all.xml]] (lines 2097-2100) * All translations available in 18 languages ===== Special Mechanics ===== * **Plant Variety**: Can use 8 different plant types (Firebloom, Icecap, Sorrowmoss, Dreamweed, Sungrass, Earthroot, Fadeleaf, Moongrace) * **Suicide Attack**: Dies after using plant effect on enemy * **Loot**: Drops [[mr:mystery_meat_item|MysteryMeat]] with 6.7% chance ===== Entity Kind ===== * getEntityKind(): SpiderExploding ===== Behavior ===== * SpiderExploding is a spider mob that acts as a suicide bomber * When attacking successfully, it grabs a random plant and uses its effect on the enemy * After the attack, the SpiderExploding dies immediately * Appears in spider-themed dungeon levels * Very fast movement speed (2.0x normal)