mr:albino_mob
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| mr:albino_mob [2026/03/21 10:12] – Wiki maintenance: Fix 5 random pages for standards compliance Qwen Assistant | mr:albino_mob [2026/03/21 10:13] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== mr: | ||
| + | |||
| + | Machine-readable reference page for Albino mob in Remixed Dungeon. | ||
| + | |||
| + | ==== Java Implementation ==== | ||
| + | |||
| + | **Class File:** | ||
| + | * File: [[https:// | ||
| + | * Package: com.watabou.pixeldungeon.actors.mobs | ||
| + | * Extends: Rat | ||
| + | * Entity Kind: Albino | ||
| + | |||
| + | **Stats:** | ||
| + | * HP: 15 (fixed) | ||
| + | * Defense: Inherits from Rat | ||
| + | * Damage: Inherits from Rat | ||
| + | |||
| + | **Special Abilities: | ||
| + | * Bleeding Attack: 50% chance on hit to apply Bleeding buff | ||
| + | * Bleeding level: Equals damage dealt | ||
| + | |||
| + | ==== Code Implementation ==== | ||
| + | |||
| + | ```java | ||
| + | public class Albino extends Rat { | ||
| + | { | ||
| + | hp(ht(15)); | ||
| + | } | ||
| + | |||
| + | @Override | ||
| + | public int attackProc(@NotNull Char enemy, int damage) { | ||
| + | if (Random.Int(2) == 0) { | ||
| + | Buff.affect(enemy, | ||
| + | } | ||
| + | return damage; | ||
| + | } | ||
| + | } | ||
| + | ``` | ||
| + | |||
| + | ==== Spawn Location ==== | ||
| + | |||
| + | **Dungeon Depth:** | ||
| + | * Sewers (depth 1-5) | ||
| + | * Rare spawn variant of Rat | ||
| + | |||
| + | **Spawn Conditions: | ||
| + | * Random chance replacement for normal Rat | ||
| + | * No special spawn requirements | ||
| + | |||
| + | ==== String Resources ==== | ||
| + | |||
| + | **English (values/ | ||
| + | * Albino_Name - Display name | ||
| + | * Albino_Info - Description text | ||
| + | |||
| + | **Russian (values-ru/ | ||
| + | * Albino_Name - Russian name | ||
| + | * Albino_Info - Russian description | ||
| + | |||
| + | ==== Game Integration ==== | ||
| + | |||
| + | **Badge System:** | ||
| + | * File: Badges.java | ||
| + | * Badge: RARE_ALBINO | ||
| + | * Validation: validateRare(Mob mob) checks for instanceof Albino | ||
| + | |||
| + | **Mob Factory Registration: | ||
| + | * File: MobFactory.java | ||
| + | * Registered via: registerMobClass(Albino.class) | ||
| + | * Entity Kind: " | ||
| + | |||
| + | ==== Drops ==== | ||
| + | |||
| + | **Loot Table:** | ||
| + | * Inherits from Rat parent class | ||
| + | * No unique drops | ||
| + | |||
| + | ==== Behavior ==== | ||
| + | |||
| + | **AI Pattern:** | ||
| + | * Inherits from Rat | ||
| + | * Standard melee aggression | ||
| + | * No special AI behaviors | ||
| + | |||
| + | ==== Resistances ==== | ||
| + | |||
| + | **Immunities: | ||
| + | * Inherits from Rat | ||
| + | * No unique immunities | ||
| + | |||
| + | **Weaknesses: | ||
| + | * No unique weaknesses | ||
| + | |||
| + | ==== Related Entities ==== | ||
| + | |||
| + | **Parent Class:** | ||
| + | * [[mr: | ||
| + | |||
| + | **Similar Mobs:** | ||
| + | * [[mr: | ||
| + | * [[mr: | ||
| + | |||
| + | **Buffs Applied:** | ||
| + | * [[mr: | ||
| + | |||
| + | ==== Wiki Pages ==== | ||
| + | |||
| + | **English: | ||
| + | * [[en: | ||
| + | |||
| + | **Russian: | ||
| + | * [[ru: | ||
| + | |||
| + | ==== Code References ==== | ||
| + | |||
| + | * Class implementation: | ||
| + | * Badge validation: [[https:// | ||
| + | * Mob factory: [[https:// | ||
| + | * Bleeding buff: [[https:// | ||
| + | |||
| + | {{tag> mr mobs albino sewers reference machine-readable}} | ||
mr/albino_mob.txt · Last modified: by 127.0.0.1
