mr:cold_spirit_mob
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| mr:cold_spirit_mob [2026/03/10 23:34] – Wiki maintenance: Fix standards compliance in 5 random pages Qwen Assistant | mr:cold_spirit_mob [2026/03/10 23:39] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Cold Spirit Mob - Code References ====== | ||
| + | |||
| + | ===== Java Classes ===== | ||
| + | * [[https:// | ||
| + | * Location: `com/ | ||
| + | * Extends: `Mob` | ||
| + | |||
| + | <code java> | ||
| + | public class ColdSpirit extends Mob { | ||
| + | public ColdSpirit(){ | ||
| + | hp(ht(50)); | ||
| + | baseSpeed = 1.3f; | ||
| + | baseDefenseSkill = 16; | ||
| + | baseAttackSkill | ||
| + | flying = true; | ||
| + | expForKill = 8; | ||
| + | maxLvl = 20; | ||
| + | dmgMin = 12; | ||
| + | dmgMax = 15; | ||
| + | dr = 22; | ||
| + | loot(Gold.class, | ||
| + | } | ||
| + | |||
| + | @Override | ||
| + | public int attackProc(@NotNull Char enemy, int damage ) { | ||
| + | if (Random.Int( 4 ) == 1) { | ||
| + | Freezing.affect( enemy.getPos()); | ||
| + | } | ||
| + | return damage; | ||
| + | } | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | ===== Stats from Code ===== | ||
| + | * **HP:** 50 | ||
| + | * **Base Speed:** 1.3 | ||
| + | * **Base Defense Skill:** 16 | ||
| + | * **Base Attack Skill:** 22 | ||
| + | * **Flying:** true | ||
| + | * **EXP for Kill:** 8 | ||
| + | * **Max Level:** 20 | ||
| + | * **Damage Min:** 12 | ||
| + | * **Damage Max:** 15 | ||
| + | * **Defense Rating:** 22 | ||
| + | * **Loot:** 2% chance to drop Gold | ||
| + | |||
| + | ===== Abilities ===== | ||
| + | * **Freezing Attack:** 25% chance on attack to apply Freezing effect to enemy position | ||
| + | |||
| + | ===== JSON Configuration ===== | ||
| + | This entity is implemented in Java, no JSON configuration found. | ||
| + | |||
| + | ===== String Resources ===== | ||
| + | <code xml> | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | </ | ||
| + | |||
| + | ===== Lua Scripts ===== | ||
| + | This entity is implemented in Java, no Lua script exists. | ||
| + | |||
| + | ===== Related Classes ===== | ||
| + | * `com.watabou.pixeldungeon.actors.blobs.Freezing` - Freezing effect applied on attack | ||
| + | * `com.watabou.pixeldungeon.items.Gold` - Potential loot drop | ||
| + | * `com.watabou.pixeldungeon.actors.mobs.Mob` - Parent class | ||
| + | |||
| + | ===== Localization Files ===== | ||
| + | * English: `RemixedDungeon/ | ||
| + | * Russian: `RemixedDungeon/ | ||
| + | * German: `RemixedDungeon/ | ||
| + | * Japanese: `RemixedDungeon/ | ||
| + | * Indonesian: `RemixedDungeon/ | ||
| + | * Malay: `RemixedDungeon/ | ||
| + | * And other localization files | ||
mr/cold_spirit_mob.txt · Last modified: by 127.0.0.1
