rpd:elementals_mob
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| rpd:elementals_mob [2025/12/31 02:53] – Wiki maintenance: Rename files to follow proper naming conventions - Rename wand_of_poison.txt to wand_of_poison_item.txt - Rename elementals.txt to elementals_mob.txt in English - Rename elementals.txt to elementals_mob.txt in Russian - Update Russian gl mike | rpd:elementals_mob [2025/12/31 02:56] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Elementals ====== | ||
| + | **Elementals** are magical creatures representing the fundamental elements of nature: fire, water, air, and earth. Each type has unique properties and abilities related to their element. | ||
| + | |||
| + | ==== Description ==== | ||
| + | Elementals are magical creatures representing the four fundamental elements. They appear throughout the dungeon and each type has unique abilities, resistances, | ||
| + | |||
| + | ==== Types of Elementals ==== | ||
| + | |||
| + | ===== Fire Elemental ===== | ||
| + | {{ rpd: | ||
| + | **Fire Elementals** are creatures of living flame. They are immune to fire-based damage and may heal from it, but vulnerable to cold. | ||
| + | * **Immunities: | ||
| + | * **Special: | ||
| + | * **Vulnerabilities: | ||
| + | * **Drops:** [[rpd: | ||
| + | * **Stats:** HP 65, Attack 25, Defense 20, DMG 16-20, DR 5, Exp 10, Max Level 20 | ||
| + | * **Properties: | ||
| + | |||
| + | ===== Air Elemental ===== | ||
| + | {{ rpd: | ||
| + | **Air Elementals** are flying creatures associated with wind. They attack at range using the [[rpd: | ||
| + | * **Immunities: | ||
| + | * **Special: | ||
| + | * **Drops:** [[rpd: | ||
| + | * **Stats (Depth-Based): | ||
| + | * **Properties: | ||
| + | |||
| + | ===== Water Elemental ===== | ||
| + | {{ rpd: | ||
| + | **Water Elementals** are fluid-based creatures. They gain speed and healing near water, but take damage from fire. | ||
| + | * **Immunities: | ||
| + | * **Special: | ||
| + | * **Vulnerabilities: | ||
| + | * **Drops:** [[rpd: | ||
| + | * **Stats (Depth-Based): | ||
| + | * **Properties: | ||
| + | |||
| + | ===== Earth Elemental ===== | ||
| + | {{ rpd: | ||
| + | **Earth Elementals** are sturdy, stone-based creatures. They' | ||
| + | * **Immunities: | ||
| + | * **Special: | ||
| + | * **Drops:** [[rpd: | ||
| + | * **Stats (Depth-Based): | ||
| + | * **Properties: | ||
| + | |||
| + | ==== Common Properties ==== | ||
| + | Elementals typically share some common characteristics: | ||
| + | * **Elemental Immunities: | ||
| + | * **Vulnerabilities: | ||
| + | * **Magical Nature:** All elementals are magical beings | ||
| + | * **No Carcass:** Most elementals don't leave carcass behind when they die | ||
| + | |||
| + | ==== Strategy ==== | ||
| + | When fighting elementals, consider their resistances and vulnerabilities: | ||
| + | * Fire Elementals: Use ice/cold attacks, avoid fire-based weapons, watch out for healing from burning | ||
| + | * Water Elementals: Use fire attacks, avoid fighting them in water where they heal and move faster | ||
| + | * Air Elementals: They keep distance and use ranged attacks, try to corner them or fight from afar | ||
| + | * Earth Elementals: Resist status effects and physical damage, most resilient of elementals | ||
| + | |||
| + | ==== Code References ==== | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | ==== Technical Details ==== | ||
| + | ===== Fire Elemental Technical ===== | ||
| + | * **Java Class:** [[https:// | ||
| + | * **HP:** 65 (ht(65)) | ||
| + | * **Attack Speed:** Normal (same as standard mobs) | ||
| + | * **Defense: | ||
| + | * **Attack:** 25 (baseAttackSkill = 25) | ||
| + | * **Damage:** 16-20 (dmgMin = 16, dmgMax = 20) | ||
| + | * **Damage Reduction: | ||
| + | * **Experience: | ||
| + | * **Max Level:** 20 (maxLvl = 20) | ||
| + | * **Immunities: | ||
| + | |||
| + | ===== Air Elemental Technical ===== | ||
| + | * **Java Class:** [[https:// | ||
| + | * **HP:** Depth * 3 + 1 (dynamic based on dungeon depth) | ||
| + | * **Attack Speed:** Normal | ||
| + | * **Defense: | ||
| + | * **Attack:** (defense * 2) + 1 (dynamic based on defense) | ||
| + | * **Damage:** 0 to (hp/4) (dmgMin = 0, dmgMax = ht()/4) | ||
| + | * **Damage Reduction: | ||
| + | * **Experience: | ||
| + | * **Max Level:** Depth + 2 (dynamic based on dungeon depth) | ||
| + | * **Immunities: | ||
| + | * **Special Attack:** Uses [[rpd: | ||
| + | * **Range:** Skill level (3 + lvl/10) - keeps distance of at least skillLevel()-1 from enemies | ||
| + | * **AI:** [[https:// | ||
| + | |||
| + | ===== Water Elemental Technical ===== | ||
| + | * **Java Class:** [[https:// | ||
| + | * **HP:** Depth * 5 + 1 (dynamic based on dungeon depth) | ||
| + | * **Attack Speed:** Normal | ||
| + | * **Defense: | ||
| + | * **Attack:** (defense/2) + 1 (dynamic based on defense) | ||
| + | * **Damage:** Equal to HP divided by 2 (dmgMin = ht()/2, dmgMax = ht()/2) | ||
| + | * **Damage Reduction: | ||
| + | * **Experience: | ||
| + | * **Max Level:** Depth + 2 (dynamic based on dungeon depth) | ||
| + | * **Immunities: | ||
| + | * **Speed on Water:** Doubled when on liquid terrain | ||
| + | * **Speed on Other Terrain:** Halved on non-liquid terrain | ||
| + | * **Healing: | ||
| + | * **AI:** Standard mob behavior with special interaction on water | ||
| + | |||
| + | ===== Earth Elemental Technical ===== | ||
| + | * **Java Class:** [[https:// | ||
| + | * **HP:** Depth * 10 + 1 (dynamic based on dungeon depth) | ||
| + | * **Attack Speed:** Normal | ||
| + | * **Defense: | ||
| + | * **Attack:** (defense/2) + 1 (dynamic based on defense) | ||
| + | * **Damage:** Equal to HP divided by 5 (dmgMin = ht()/5, dmgMax = ht()/5) | ||
| + | * **Damage Reduction: | ||
| + | * **Experience: | ||
| + | * **Max Level:** Depth + 2 (dynamic based on dungeon depth) | ||
| + | * **Immunities: | ||
| + | * **Speed on Liquid:** Halved when on liquid terrain | ||
| + | * **Regrowth Chance:** 50% chance to create [[rpd: | ||
| + | * **AI:** Standard mob behavior with regrowth special attack | ||
| + | |||
| + | ==== String Resource References ==== | ||
| + | * **Fire Elemental: | ||
| + | * **Air Elemental: | ||
| + | * **Water Elemental: | ||
| + | * **Earth Elemental: | ||
| + | |||
| + | ==== See Also ==== | ||
| + | * [[rpd: | ||
| + | * [[rpd: | ||
| + | * [[rpd: | ||
| + | * [[rpd: | ||
| + | * [[rpd: | ||
| + | |||
| + | {{tag> rpd mobs elements }} | ||
