mr:succubus_mob
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| mr:succubus_mob [2026/03/30 20:49] – Wiki analysis: Add missing English pages and improve mr: namespace cross-references Qwen Assistant | mr:succubus_mob [2026/03/30 20:52] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Succubus Mob - Code References ====== | ||
| + | |||
| + | {{ rpd: | ||
| + | |||
| + | **Succubus** is a mob entity in Remixed Dungeon, a demon that can charm heroes and blink around the battlefield. | ||
| + | |||
| + | ==== Java Classes ==== | ||
| + | * [[https:// | ||
| + | |||
| + | ==== Code Behavior ==== | ||
| + | * **HP**: 80 (set via `hp(ht(80))` in constructor) | ||
| + | * **Attack**: 15-25 damage (`dmgMin = 15`, `dmgMax = 25`) with 40 attack skill (`baseAttackSkill = 40`) | ||
| + | * **Defense**: | ||
| + | * **Special Ability**: 33% chance to apply Charm buff for 2-5 turns on attack (see `attackProc()` method) | ||
| + | * **Blink Ability**: Can blink to target every 5 turns (`BLINK_DELAY = 5`) if target is visible and more than 2 cells away (see `getCloser()` method) | ||
| + | * **View Distance**: Increased by 1 compared to normal mobs (set in `onSpawn()` method) | ||
| + | * **Immunities**: | ||
| + | * **Loot**: 5% chance to drop Scroll of Lullaby (`loot(new ScrollOfLullaby(), | ||
| + | * **Experience**: | ||
| + | * **Carcass Chance**: 0% (no corpse left, `carcassChance = 0`) | ||
| + | |||
| + | ==== Key Methods ==== | ||
| + | * `attackProc(Char enemy, int damage)` - Applies Charm buff with 33% chance on attack | ||
| + | * `getCloser(int target, boolean ignorePets)` - Handles blinking movement every 5 turns | ||
| + | * `onSpawn(Level level)` - Increases view distance by 1 when spawned | ||
| + | |||
| + | ==== JSON Configuration ==== | ||
| + | This entity is implemented in Java, no JSON configuration exists | ||
| + | |||
| + | ==== String Resources ==== | ||
| + | <code xml> | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | </ | ||
| + | |||
| + | ==== Lua Scripts ==== | ||
| + | This entity is implemented in Java, no Lua script exists | ||
| + | |||
| + | ==== Related mr Entities ==== | ||
| + | * [[mr: | ||
| + | * [[mr: | ||
| + | * [[mr: | ||
| + | * [[mr: | ||
| + | |||
| + | ==== Wiki Pages ==== | ||
| + | * [[en: | ||
| + | * [[ru: | ||
mr/succubus_mob.txt · Last modified: by 127.0.0.1
