mr:king_mob
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| mr:king_mob [2026/03/06 22:38] – Wiki maintenance: Fix broken links and enhance mr: namespace page Qwen Assistant | mr:king_mob [2026/03/06 22:38] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== King Mob - Code References ====== | ||
| + | |||
| + | ===== Entity Name ===== | ||
| + | king_mob | ||
| + | |||
| + | ===== Java Classes ===== | ||
| + | * [[https:// | ||
| + | |||
| + | ===== Class Implementation ===== | ||
| + | <code java> | ||
| + | package com.watabou.pixeldungeon.actors.mobs; | ||
| + | |||
| + | import com.nyrds.Packable; | ||
| + | import com.nyrds.pixeldungeon.ai.MobAi; | ||
| + | import com.nyrds.pixeldungeon.ai.Wandering; | ||
| + | import com.watabou.pixeldungeon.actors.Char; | ||
| + | import com.watabou.pixeldungeon.actors.blobs.ToxicGas; | ||
| + | import com.watabou.pixeldungeon.actors.buffs.Paralysis; | ||
| + | import com.watabou.pixeldungeon.actors.buffs.Stun; | ||
| + | import com.watabou.pixeldungeon.items.ArmorKit; | ||
| + | import com.watabou.pixeldungeon.items.keys.SkeletonKey; | ||
| + | |||
| + | public class King extends Boss { | ||
| + | // HP: 300, EXP: 40 | ||
| + | // Defense: 25, Attack: 32 | ||
| + | // Damage: 20-38, DR: 14 | ||
| + | |||
| + | // Immunities: Stun, Paralysis, ToxicGas | ||
| + | // Drops: SkeletonKey, | ||
| + | |||
| + | // Special ability: Summons Undead servants from pedestals | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | ===== JSON Configuration ===== | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | ===== Special Abilities ===== | ||
| + | * **Undead Summoning**: | ||
| + | * **Army Size**: Can summon up to 5 undead servants based on difficulty and HP | ||
| + | * **Pedestal Teleportation**: | ||
| + | * **Toxic Gas Resistance**: | ||
| + | * **Stun/ | ||
| + | |||
| + | ===== Drops ===== | ||
| + | * [[en: | ||
| + | * [[en: | ||
| + | |||
| + | ===== String Resources ===== | ||
| + | English (values/ | ||
| + | <code xml> | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | </ | ||
| + | |||
| + | Russian (values-ru/ | ||
| + | <code xml> | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | </ | ||
| + | |||
| + | ===== Lua Scripts ===== | ||
| + | This entity is implemented in Java, no Lua script exists | ||
| + | |||
| + | ===== Related mr Entities ===== | ||
| + | * [[mr: | ||
| + | * [[mr: | ||
| + | |||
| + | ===== Content Verification ===== | ||
| + | * Information source: Java code (King.java) and string resources | ||
| + | * Last updated: 2026-03-06 based on current codebase analysis | ||
| + | * Verified against: RemixedDungeon/ | ||
| + | * Boss stats: HP 300, EXP 40, Defense 25, Attack 32, Damage 20-38, DR 14 | ||
| + | * Immunities: Stun, Paralysis, ToxicGas | ||
| + | * Max army size: 5 Undead servants | ||
| + | |||
| + | {{tag>mr mobs boss code_reference}} | ||
mr/king_mob.txt · Last modified: by 127.0.0.1
