User Tools

Site Tools


mr:spider_exploding_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
mr:spider_exploding_mob [2026/01/01 08:48] – Update spider_exploding_mob.txt with correct information from source code mikemr:spider_exploding_mob [2026/03/29 00:40] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== 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)