Skip to content

Mirrors tracked repository source docs/implemented-combat-spells.md.

Implemented Combat Spells

Generated from src/game/generated-combat-spells.ts by scripts/generate-combat-spells-doc.mjs.

This document lists every combat-oriented spell currently implemented in tibia-wave, grouped by OT source category. It includes unlock level, cost/exhaust, targeting, and the engine data that currently determines damage, healing, buffs, debuffs, and dispels.

Formula Legend

  • levelMagic: expression uses level and magicLevel.
  • distanceSkill: expression uses level, skill (distance), and equipped attack when present.
  • weaponSkillAttack: expression uses level, active weapon skill, and equipped weapon attack.
  • highestMeleeSkill: expression uses level, the highest of club/sword/axe, and equipped weapon attack.
  • Party spell runtime mana uses ceil(n * 0.9^(n - 1) * partyBaseMana), where n is the number of affected friendly units.
  • Magic Shield currently materializes as min(manaMax, floor(300 + 7.6 * level + 7 * effectiveMagicLevel)) in the engine.

Attack (49)

Buzz

  • Words: exori infir vis
  • Unlock: level 1
  • Vocations: Sorcerer
  • Cost / Exhaust: 6 mana, cooldown 2.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with energy magic.
  • Effects:
    • Damage: energy; formula levelMagic: min = (level / 5) + (magicLevel * 0.4) + 2; max = (level / 5) + (magicLevel * 0.8) + 5; caps: level <= 20, magicLevel <= 20

Chill Out

  • Words: exevo infir frigo hur
  • Unlock: level 1
  • Vocations: Druid
  • Cost / Exhaust: 8 mana, cooldown 4.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 4, can ignore line of sight, no weapon requirement, directional, pattern WAVE4
  • Description: Hits enemies in front of you with ice magic.
  • Effects:
    • Damage: ice; formula levelMagic: min = (level / 5) + (magicLevel * 0.3) + 2; max = (level / 5) + (magicLevel * 0.45) + 3; caps: level <= 20, magicLevel <= 20

Mud Attack

  • Words: exori infir tera
  • Unlock: level 1
  • Vocations: Druid
  • Cost / Exhaust: 6 mana, cooldown 2.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with earth magic.
  • Effects:
    • Damage: earth; formula levelMagic: min = (level / 5) + (magicLevel * 0.4) + 2; max = (level / 5) + (magicLevel * 0.8) + 5; caps: level <= 20, magicLevel <= 20

Scorch

  • Words: exevo infir flam hur
  • Unlock: level 1
  • Vocations: Sorcerer
  • Cost / Exhaust: 8 mana, cooldown 4.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 4, can ignore line of sight, no weapon requirement, directional, pattern WAVE4
  • Description: Hits enemies in front of you with fire magic.
  • Effects:
    • Damage: fire; formula levelMagic: min = (level / 5) + (magicLevel * 0.3) + 2; max = (level / 5) + (magicLevel * 0.45) + 3; caps: level <= 20, magicLevel <= 20

Apprentice's Strike

  • Words: exori min flam
  • Unlock: level 8
  • Vocations: Sorcerer, Druid
  • Cost / Exhaust: 6 mana, cooldown 2.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with fire magic.
  • Effects:
    • Damage: fire; formula levelMagic: min = 10; max = 20

Energy Strike

  • Words: exori vis
  • Unlock: level 12
  • Vocations: Sorcerer, Druid
  • Cost / Exhaust: 20 mana, cooldown 2.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with energy magic.
  • Effects:
    • Damage: energy; formula levelMagic: min = (level / 5) + (magicLevel * 1.4) + 8; max = (level / 5) + (magicLevel * 2.2) + 14

Terra Strike

  • Words: exori tera
  • Unlock: level 13
  • Vocations: Sorcerer, Druid
  • Cost / Exhaust: 20 mana, cooldown 2.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with earth magic.
  • Effects:
    • Damage: earth; formula levelMagic: min = (level / 5) + (magicLevel * 1.4) + 8; max = (level / 5) + (magicLevel * 2.2) + 14

Flame Strike

  • Words: exori flam
  • Unlock: level 14
  • Vocations: Sorcerer, Druid
  • Cost / Exhaust: 20 mana, cooldown 2.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with fire magic.
  • Effects:
    • Damage: fire; formula levelMagic: min = (level / 5) + (magicLevel * 1.4) + 8; max = (level / 5) + (magicLevel * 2.2) + 14

Ice Strike

  • Words: exori frigo
  • Unlock: level 15
  • Vocations: Sorcerer, Druid
  • Cost / Exhaust: 20 mana, cooldown 2.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with ice magic.
  • Effects:
    • Damage: ice; formula levelMagic: min = (level / 5) + (magicLevel * 1.4) + 8; max = (level / 5) + (magicLevel * 2.2) + 14

Brutal Strike

  • Words: exori ico
  • Unlock: level 16
  • Vocations: Knight
  • Cost / Exhaust: 30 mana, cooldown 6.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 1, can ignore line of sight, requires a weapon, single-target / no pattern
  • Description: Single physical strike with your equipped weapon.
  • Effects:
    • Damage: physical; formula weaponSkillAttack: min = (level / 5) + (skill * attack * 0.02) + 4; max = (level / 5) + (skill * attack * 0.04) + 9; blocked by armor

Death Strike

  • Words: exori mort
  • Unlock: level 16
  • Vocations: Sorcerer
  • Cost / Exhaust: 20 mana, cooldown 2.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with death magic.
  • Effects:
    • Damage: death; formula levelMagic: min = (level / 5) + (magicLevel * 1.4) + 8; max = (level / 5) + (magicLevel * 2.2) + 14

Physical Strike

  • Words: exori moe ico
  • Unlock: level 16
  • Vocations: Druid
  • Cost / Exhaust: 20 mana, cooldown 2.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with physical damage.
  • Effects:
    • Damage: physical; formula levelMagic: min = (level / 5) + (magicLevel * 1.6) + 9; max = (level / 5) + (magicLevel * 2.4) + 14; blocked by armor

Fire Wave

  • Words: exevo flam hur
  • Unlock: level 18
  • Vocations: Sorcerer
  • Cost / Exhaust: 25 mana, cooldown 4.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 4, can ignore line of sight, no weapon requirement, directional, pattern WAVE4, diagonal WAVE4
  • Description: Hits enemies in front of you with fire magic.
  • Effects:
    • Damage: fire; formula levelMagic: min = (level / 5) + (magicLevel * 1.2) + 7; max = (level / 5) + (magicLevel * 2) + 12

Ice Wave

  • Words: exevo frigo hur
  • Unlock: level 18
  • Vocations: Druid
  • Cost / Exhaust: 25 mana, cooldown 4.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 4, can ignore line of sight, no weapon requirement, directional, pattern WAVE4, diagonal WAVE4
  • Description: Hits enemies in front of you with ice magic.
  • Effects:
    • Damage: ice; formula levelMagic: min = (level / 5) + (magicLevel * 0.8) + 5; max = (level / 5) + (magicLevel * 2) + 12

Energy Beam

  • Words: exevo vis lux
  • Unlock: level 23
  • Vocations: Sorcerer
  • Cost / Exhaust: 40 mana, cooldown 4.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 5, can ignore line of sight, no weapon requirement, directional, pattern BEAM5, diagonal BEAM5
  • Description: Hits enemies in front of you with energy magic.
  • Effects:
    • Damage: energy; formula levelMagic: min = (level / 5) + (magicLevel * 1.8) + 11; max = (level / 5) + (magicLevel * 3) + 19

Ethereal Spear

  • Words: exori con
  • Unlock: level 23
  • Vocations: Paladin
  • Cost / Exhaust: 25 mana, cooldown 2.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 7, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with physical damage.
  • Effects:
    • Damage: physical; formula distanceSkill: min = (level / 5) + skill * 0.7; max = (level / 5) + skill + 5; blocked by armor

Ignite

  • Words: utori flam
  • Unlock: level 26
  • Vocations: Sorcerer
  • Cost / Exhaust: 30 mana, cooldown 30.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Sets a single target ablaze over time.
  • Effects:
    • Damage over time: fire (fire); curve varying; per-tick expression 10; rounds formula levelMagic: min = (level / 80) + (magicLevel * 0.3) + 2; max = (level / 80) + (magicLevel * 0.6) + 4; period 8.0s-10.0s

Whirlwind Throw

  • Words: exori hur
  • Unlock: level 28
  • Vocations: Knight
  • Cost / Exhaust: 40 mana, cooldown 6.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 5, line of sight required, requires a weapon, single-target / no pattern
  • Description: Single physical strike with your equipped weapon.
  • Effects:
    • Damage: physical; formula weaponSkillAttack: min = (level / 5) + (skill * attack * 0.01) + 1; max = (level / 5) + (skill * attack * 0.03) + 6; blocked by armor

Great Energy Beam

  • Words: exevo gran vis lux
  • Unlock: level 29
  • Vocations: Sorcerer
  • Cost / Exhaust: 110 mana, cooldown 6.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 8, can ignore line of sight, no weapon requirement, directional, pattern BEAM8
  • Description: Hits enemies in front of you with energy magic.
  • Effects:
    • Damage: energy; formula levelMagic: min = (level / 5) + (magicLevel * 3.6) + 22; max = (level / 5) + (magicLevel * 6) + 37

Groundshaker

  • Words: exori mas
  • Unlock: level 33
  • Vocations: Knight
  • Cost / Exhaust: 160 mana, cooldown 8.0s, attack exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, requires a weapon, caster-centered, pattern CIRCLE3X3
  • Description: Hits nearby enemies with your equipped weapon.
  • Effects:
    • Damage: physical; formula weaponSkillAttack: min = (level / 5) + (skill * attack * 0.02) + 4; max = (level / 5) + (skill * attack * 0.03) + 6; blocked by armor

Electrify

  • Words: utori vis
  • Unlock: level 34
  • Vocations: Sorcerer
  • Cost / Exhaust: 30 mana, cooldown 30.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Shocks a single target with lingering energy damage.
  • Effects:
    • Damage over time: energy (energy); curve varying; per-tick expression 25; rounds formula levelMagic: min = (level / 80) + (magicLevel * 0.15) + 1; max = (level / 80) + (magicLevel * 0.25) + 1; period 10.0s-12.0s

Berserk

  • Words: exori
  • Unlock: level 35
  • Vocations: Knight
  • Cost / Exhaust: 115 mana, cooldown 4.0s, attack exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, requires a weapon, caster-centered, pattern SQUARE1X1
  • Description: Hits nearby enemies with your equipped weapon.
  • Effects:
    • Damage: physical; formula weaponSkillAttack: min = (level / 5) + (skill * attack * 0.03) + 7; max = (level / 5) + (skill * attack * 0.05) + 11; blocked by armor

Energy Wave

  • Words: exevo vis hur
  • Unlock: level 38
  • Vocations: Sorcerer
  • Cost / Exhaust: 170 mana, cooldown 8.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 4, can ignore line of sight, no weapon requirement, directional, pattern SQUAREWAVE5, diagonal SQUAREWAVE5
  • Description: Hits enemies in front of you with energy magic.
  • Effects:
    • Damage: energy; formula levelMagic: min = (level / 5) + (magicLevel * 4.5) + 20; max = (level / 5) + (magicLevel * 7.6) + 48

Great Fire Wave

  • Words: exevo gran flam hur
  • Unlock: level 38
  • Vocations: Sorcerer
  • Cost / Exhaust: 120 mana, cooldown 4.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 5, can ignore line of sight, no weapon requirement, directional, pattern WAVE7, diagonal WAVE7
  • Description: Hits enemies in front of you with fire magic.
  • Effects:
    • Damage: fire; formula levelMagic: min = (level / 5) + (magicLevel * 2.8) + 16; max = (level / 5) + (magicLevel * 4.4) + 28

Terra Wave

  • Words: exevo tera hur
  • Unlock: level 38
  • Vocations: Druid
  • Cost / Exhaust: 170 mana, cooldown 4.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 4, can ignore line of sight, no weapon requirement, directional, pattern SQUAREWAVE5, diagonal SQUAREWAVE5
  • Description: Hits enemies in front of you with earth magic.
  • Effects:
    • Damage: earth; formula levelMagic: min = (level / 5) + (magicLevel * 3.25) + 5; max = (level / 5) + (magicLevel * 6.75) + 30

Divine Missile

  • Words: exori san
  • Unlock: level 40
  • Vocations: Paladin
  • Cost / Exhaust: 20 mana, cooldown 2.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 4, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with holy magic.
  • Effects:
    • Damage: holy; formula levelMagic: min = (level / 5) + (magicLevel * 1.9) + 8; max = (level / 5) + (magicLevel * 3) + 18

Inflict Wound

  • Words: utori kor
  • Unlock: level 40
  • Vocations: Knight
  • Cost / Exhaust: 30 mana, cooldown 30.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 1, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Makes a single target bleed over time.
  • Effects:
    • Damage over time: bleeding (physical); curve logarithmic; base formula highestMeleeSkill: min = (level / 80) + (skill * 0.2) + 2; max = (level / 80) + (skill * 0.4) + 2; per-tick expression damage; period 4.0s

Strong Ice Wave

  • Words: exevo gran frigo hur
  • Unlock: level 40
  • Vocations: Druid
  • Cost / Exhaust: 170 mana, cooldown 8.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, can ignore line of sight, no weapon requirement, directional, pattern WAVE3
  • Description: Hits enemies in front of you with ice magic.
  • Effects:
    • Damage: ice; formula levelMagic: min = (level / 5) + (magicLevel * 4.5) + 20; max = (level / 5) + (magicLevel * 7.6) + 48

Divine Caldera

  • Words: exevo mas san
  • Unlock: level 50
  • Vocations: Paladin
  • Cost / Exhaust: 160 mana, cooldown 4.0s, attack exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, caster-centered, pattern CIRCLE3X3
  • Description: Hits nearby enemies with holy magic.
  • Effects:
    • Damage: holy; formula levelMagic: min = (level / 5) + (magicLevel * 5) + 25; max = (level / 5) + (magicLevel * 6.2) + 45

Envenom

  • Words: utori pox
  • Unlock: level 50
  • Vocations: Druid
  • Cost / Exhaust: 30 mana, cooldown 40.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Poisons a single target over time.
  • Effects:
    • Damage over time: poison (earth); curve logarithmic; base formula levelMagic: min = (level / 80) + (magicLevel * 0.55) + 6; max = (level / 80) + (magicLevel * 0.75) + 7; per-tick expression damage; period 4.0s

Lightning

  • Words: exori amp vis
  • Unlock: level 55
  • Vocations: Sorcerer
  • Cost / Exhaust: 60 mana, cooldown 8.0s, attack exhaust 2.0s, special exhaust 8.0s
  • Targeting: enemy target, range 5, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with energy magic.
  • Effects:
    • Damage: energy; formula levelMagic: min = (level / 5) + (magicLevel * 2.2) + 12; max = (level / 5) + (magicLevel * 3.4) + 21

Rage of the Skies

  • Words: exevo gran mas vis
  • Unlock: level 55
  • Vocations: Sorcerer
  • Cost / Exhaust: 600 mana, cooldown 40.0s, attack exhaust 4.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, caster-centered, pattern CIRCLE6X6
  • Description: Hits nearby enemies with energy magic.
  • Effects:
    • Damage: energy; formula levelMagic: min = (level / 5) + (magicLevel * 4) + 75; max = (level / 5) + (magicLevel * 10) + 150

Wrath of Nature

  • Words: exevo gran mas tera
  • Unlock: level 55
  • Vocations: Druid
  • Cost / Exhaust: 700 mana, cooldown 40.0s, attack exhaust 4.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, caster-centered, pattern CIRCLE6X6
  • Description: Hits nearby enemies with earth magic.
  • Effects:
    • Damage: earth; formula levelMagic: min = (level / 5) + (magicLevel * 3) + 32; max = (level / 5) + (magicLevel * 9) + 40

Eternal Winter

  • Words: exevo gran mas frigo
  • Unlock: level 60
  • Vocations: Druid
  • Cost / Exhaust: 1050 mana, cooldown 40.0s, attack exhaust 4.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, caster-centered, pattern CIRCLE5X5
  • Description: Hits nearby enemies with ice magic.
  • Effects:
    • Damage: ice; formula levelMagic: min = (level / 5) + (magicLevel * 5.5) + 25; max = (level / 5) + (magicLevel * 11) + 50

Hell's Core

  • Words: exevo gran mas flam
  • Unlock: level 60
  • Vocations: Sorcerer
  • Cost / Exhaust: 1100 mana, cooldown 40.0s, attack exhaust 4.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, caster-centered, pattern CIRCLE5X5
  • Description: Hits nearby enemies with fire magic.
  • Effects:
    • Damage: fire; formula levelMagic: min = (level / 5) + (magicLevel * 8) + 50; max = (level / 5) + (magicLevel * 12) + 75

Front Sweep

  • Words: exori min
  • Unlock: level 70
  • Vocations: Knight
  • Cost / Exhaust: 200 mana, cooldown 6.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 1, can ignore line of sight, requires a weapon, directional, pattern WAVE6, diagonal WAVE6
  • Description: Sweeps your equipped weapon through enemies in front of you.
  • Effects:
    • Damage: physical; formula weaponSkillAttack: min = (level / 5) + (skill * attack * 0.04) + 11; max = (level / 5) + (skill * attack * 0.08) + 21; blocked by armor

Holy Flash

  • Words: utori san
  • Unlock: level 70
  • Vocations: Paladin
  • Cost / Exhaust: 30 mana, cooldown 40.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Afflicts a single target with lingering damage over time.
  • Effects:
    • Damage over time: dazzled (holy); curve constant; per-tick expression 20; rounds formula levelMagic: min = (level / 80) + (magicLevel * 0.3) + 2; max = (level / 80) + (magicLevel * 0.5) + 3; period 10.0s-12.0s

Strong Flame Strike

  • Words: exori gran flam
  • Unlock: level 70
  • Vocations: Sorcerer
  • Cost / Exhaust: 60 mana, cooldown 8.0s, attack exhaust 2.0s, special exhaust 8.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with fire magic.
  • Effects:
    • Damage: fire; formula levelMagic: min = (level / 5) + (magicLevel * 2.8) + 16; max = (level / 5) + (magicLevel * 4.4) + 28

Strong Terra Strike

  • Words: exori gran tera
  • Unlock: level 70
  • Vocations: Druid
  • Cost / Exhaust: 60 mana, cooldown 8.0s, attack exhaust 2.0s, special exhaust 8.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with earth magic.
  • Effects:
    • Damage: earth; formula levelMagic: min = (level / 5) + (magicLevel * 2.8) + 16; max = (level / 5) + (magicLevel * 4.4) + 28

Curse

  • Words: utori mort
  • Unlock: level 75
  • Vocations: Sorcerer
  • Cost / Exhaust: 30 mana, cooldown 40.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Afflicts a single target with a lingering curse.
  • Effects:
    • Damage over time: curse (death); curve exponential; base formula levelMagic: min = (level / 80) + (magicLevel * 0.5) + 7; max = (level / 80) + (magicLevel * 0.9) + 8; per-tick expression damage; period 4.0s

Strong Energy Strike

  • Words: exori gran vis
  • Unlock: level 80
  • Vocations: Sorcerer
  • Cost / Exhaust: 60 mana, cooldown 8.0s, attack exhaust 2.0s, special exhaust 8.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with energy magic.
  • Effects:
    • Damage: energy; formula levelMagic: min = (level / 5) + (magicLevel * 2.8) + 16; max = (level / 5) + (magicLevel * 4.4) + 28

Strong Ice Strike

  • Words: exori gran frigo
  • Unlock: level 80
  • Vocations: Druid
  • Cost / Exhaust: 60 mana, cooldown 8.0s, attack exhaust 2.0s, special exhaust 8.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with ice magic.
  • Effects:
    • Damage: ice; formula levelMagic: min = (level / 5) + (magicLevel * 2.8) + 16; max = (level / 5) + (magicLevel * 4.4) + 28

Fierce Berserk

  • Words: exori gran
  • Unlock: level 90
  • Vocations: Knight
  • Cost / Exhaust: 340 mana, cooldown 6.0s, attack exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, requires a weapon, caster-centered, pattern SQUARE1X1
  • Description: Hits nearby enemies with your equipped weapon.
  • Effects:
    • Damage: physical; formula weaponSkillAttack: min = (level / 5) + (skill * attack * 0.06) + 13; max = (level / 5) + (skill * attack * 0.11) + 27; blocked by armor

Strong Ethereal Spear

  • Words: exori gran con
  • Unlock: level 90
  • Vocations: Paladin
  • Cost / Exhaust: 55 mana, cooldown 8.0s, attack exhaust 2.0s
  • Targeting: enemy target, range 7, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with physical damage.
  • Effects:
    • Damage: physical; formula distanceSkill: min = (level / 5) + skill + 7; max = (level / 5) + (skill * 1.5) + 13; blocked by armor

Ultimate Flame Strike

  • Words: exori max flam
  • Unlock: level 90
  • Vocations: Sorcerer
  • Cost / Exhaust: 100 mana, cooldown 30.0s, attack exhaust 4.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with fire magic.
  • Effects:
    • Damage: fire; formula levelMagic: min = (level / 5) + (magicLevel * 4.5) + 35; max = (level / 5) + (magicLevel * 7.3) + 55

Ultimate Terra Strike

  • Words: exori max tera
  • Unlock: level 90
  • Vocations: Druid
  • Cost / Exhaust: 100 mana, cooldown 30.0s, attack exhaust 4.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with earth magic.
  • Effects:
    • Damage: earth; formula levelMagic: min = (level / 5) + (magicLevel * 4.5) + 35; max = (level / 5) + (magicLevel * 7.3) + 55

Ultimate Energy Strike

  • Words: exori max vis
  • Unlock: level 100
  • Vocations: Sorcerer
  • Cost / Exhaust: 100 mana, cooldown 30.0s, attack exhaust 4.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with energy magic.
  • Effects:
    • Damage: energy; formula levelMagic: min = (level / 5) + (magicLevel * 4.5) + 35; max = (level / 5) + (magicLevel * 7.3) + 55

Ultimate Ice Strike

  • Words: exori max frigo
  • Unlock: level 100
  • Vocations: Druid
  • Cost / Exhaust: 100 mana, cooldown 30.0s, attack exhaust 4.0s
  • Targeting: enemy target, range 3, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Attacks a single target with ice magic.
  • Effects:
    • Damage: ice; formula levelMagic: min = (level / 5) + (magicLevel * 4.5) + 35; max = (level / 5) + (magicLevel * 7.3) + 55

Annihilation

  • Words: exori gran ico
  • Unlock: level 110
  • Vocations: Knight
  • Cost / Exhaust: 300 mana, cooldown 30.0s, attack exhaust 4.0s
  • Targeting: enemy target, range 1, can ignore line of sight, requires a weapon, single-target / no pattern
  • Description: Single physical strike with your equipped weapon.
  • Effects:
    • Damage: physical; formula weaponSkillAttack: min = (level / 5) + (skill * attack * 0.06) + 13; max = (level / 5) + (skill * attack * 0.14) + 34; blocked by armor

Healing (21)

Bruise Bane

  • Words: exura infir ico
  • Unlock: level 1
  • Vocations: Knight
  • Cost / Exhaust: 10 mana, cooldown 1.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Restores your health and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = (level / 5) + (magicLevel * 1.4) + 8; max = (level / 5) + (magicLevel * 1.8) + 11; caps: level <= 20, magicLevel <= 20
    • Dispel: paralyze

Magic Patch

  • Words: exura infir
  • Unlock: level 1
  • Vocations: Sorcerer, Druid, Paladin
  • Cost / Exhaust: 6 mana, cooldown 1.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Restores your health and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = (level / 5) + (magicLevel * 0.6) + 3; max = (level / 5) + magicLevel + 6; caps: level <= 20, magicLevel <= 20
    • Dispel: paralyze

Light Healing

  • Words: exura
  • Unlock: level 8
  • Vocations: Sorcerer, Druid, Paladin
  • Cost / Exhaust: 20 mana, cooldown 1.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Restores your health and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = (level / 5) + (magicLevel * 1.4) + 8; max = (level / 5) + (magicLevel * 1.8) + 11
    • Dispel: paralyze

Wound Cleansing

  • Words: exura ico
  • Unlock: level 8
  • Vocations: Knight
  • Cost / Exhaust: 40 mana, cooldown 1.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Restores your health and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = (level / 5) + (magicLevel * 4) + 25; max = (level / 5) + (magicLevel * 8) + 50
    • Dispel: paralyze

Cure Poison

  • Words: exana pox
  • Unlock: level 10
  • Vocations: Sorcerer, Druid, Paladin, Knight
  • Cost / Exhaust: 30 mana, cooldown 6.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Removes poison from you.
  • Effects:
    • Dispel: poison

Heal Friend

  • Words: exura sio
  • Unlock: level 18
  • Vocations: Druid
  • Cost / Exhaust: 120 mana, cooldown 1.0s, healing exhaust 1.0s
  • Targeting: ally target, range 1, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Restores an ally's health and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = (level / 5) + (magicLevel * 6.3) + 45; max = (level / 5) + (magicLevel * 14.4) + 90
    • Dispel: paralyze

Intense Healing

  • Words: exura gran
  • Unlock: level 20
  • Vocations: Sorcerer, Druid, Paladin
  • Cost / Exhaust: 70 mana, cooldown 1.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Restores your health and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = (level / 5) + (magicLevel * 3.2) + 20; max = (level / 5) + (magicLevel * 5.4) + 40
    • Dispel: paralyze

Cure Electrification

  • Words: exana vis
  • Unlock: level 22
  • Vocations: Druid
  • Cost / Exhaust: 30 mana, cooldown 6.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Removes electrification from you.
  • Effects:
    • Dispel: energy

Cure Burning

  • Words: exana flam
  • Unlock: level 30
  • Vocations: Druid
  • Cost / Exhaust: 30 mana, cooldown 6.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Removes burning from you.
  • Effects:
    • Dispel: fire

Ultimate Healing

  • Words: exura vita
  • Unlock: level 30
  • Vocations: Sorcerer, Druid
  • Cost / Exhaust: 160 mana, cooldown 1.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Restores your health and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = (level / 5) + (magicLevel * 6.8) + 42; max = (level / 5) + (magicLevel * 12.9) + 90
    • Dispel: paralyze

Divine Healing

  • Words: exura san
  • Unlock: level 35
  • Vocations: Paladin
  • Cost / Exhaust: 160 mana, cooldown 1.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Restores your health and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = (level / 5) + (magicLevel * 6.9) + 40; max = (level / 5) + (magicLevel * 13.2) + 82
    • Dispel: paralyze

Mass Healing

  • Words: exura gran mas res
  • Unlock: level 36
  • Vocations: Druid
  • Cost / Exhaust: 150 mana, cooldown 2.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, caster-centered, pattern CIRCLE3X3
  • Description: Restores health to nearby allies and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = (level / 5) + (magicLevel * 4.6) + 100; max = (level / 5) + (magicLevel * 9.6) + 125
    • Dispel: paralyze

Cure Bleeding

  • Words: exana kor
  • Unlock: level 45
  • Vocations: Druid, Knight
  • Cost / Exhaust: 30 mana, cooldown 6.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Removes bleeding from you.
  • Effects:
    • Dispel: bleeding

Recovery

  • Words: utura
  • Unlock: level 50
  • Vocations: Paladin, Knight
  • Cost / Exhaust: 75 mana, cooldown 60.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Gradually restores your health.
  • Effects:
    • Condition: regeneration for 60.0s; +20 health every 3.0s

Salvation

  • Words: exura gran san
  • Unlock: level 60
  • Vocations: Paladin
  • Cost / Exhaust: 210 mana, cooldown 1.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Restores your health and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = (level / 5) + (magicLevel * 12) + 75; max = (level / 5) + (magicLevel * 20) + 125
    • Dispel: paralyze

Cure Curse

  • Words: exana mort
  • Unlock: level 80
  • Vocations: Paladin
  • Cost / Exhaust: 40 mana, cooldown 6.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Removes a curse from you.
  • Effects:
    • Dispel: curse

Intense Wound Cleansing

  • Words: exura gran ico
  • Unlock: level 80
  • Vocations: Knight
  • Cost / Exhaust: 200 mana, cooldown 600.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Restores your health and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = (level / 5) + (magicLevel * 70) + 438; max = (level / 5) + (magicLevel * 92) + 544
    • Dispel: paralyze

Intense Recovery

  • Words: utura gran
  • Unlock: level 100
  • Vocations: Paladin, Knight
  • Cost / Exhaust: 165 mana, cooldown 60.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Gradually restores your health.
  • Effects:
    • Condition: regeneration for 60.0s; +40 health every 3.0s

Fair Wound Cleansing

  • Words: exura med ico
  • Unlock: level 300
  • Vocations: Knight
  • Cost / Exhaust: 90 mana, cooldown 1.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Restores your health and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = ((level / 5) + (magicLevel * 4) + 25) * 2; max = ((level / 5) + (magicLevel * 8) + 50) * 2
    • Dispel: paralyze

Nature's Embrace

  • Words: exura gran sio
  • Unlock: level 300
  • Vocations: Druid
  • Cost / Exhaust: 400 mana, cooldown 60.0s, healing exhaust 1.0s
  • Targeting: ally target, range 1, line of sight required, no weapon requirement, single-target / no pattern
  • Description: Restores an ally's health and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = ((level / 5) + (magicLevel * 6.3) + 45) * 2; max = ((level / 5) + (magicLevel * 14.4) + 90) * 2
    • Dispel: paralyze

Restoration

  • Words: exura max vita
  • Unlock: level 300
  • Vocations: Sorcerer, Druid
  • Cost / Exhaust: 260 mana, cooldown 6.0s, healing exhaust 1.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Restores your health and removes paralysis.
  • Effects:
    • Heal: formula levelMagic: min = ((level / 5) + (magicLevel * 6.8) + 42) * 1.4; max = ((level / 5) + (magicLevel * 12.9) + 90) * 1.4
    • Dispel: paralyze

Party (4)

Enchant Party

  • Words: utori mas sio
  • Unlock: level 32
  • Vocations: Sorcerer
  • Cost / Exhaust: party base mana 120; runtime mana = ceil(n * 0.9^(n - 1) * 120), cooldown 2.0s, support exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, caster-centered, pattern CIRCLE3X3
  • Description: Boosts magic level for nearby allies.
  • Effects:
    • Condition: attribute buff for 120.0s; magic level bonus: 1

Heal Party

  • Words: utura mas sio
  • Unlock: level 32
  • Vocations: Druid
  • Cost / Exhaust: party base mana 120; runtime mana = ceil(n * 0.9^(n - 1) * 120), cooldown 2.0s, support exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, caster-centered, pattern CIRCLE3X3
  • Description: Gradually restores health to nearby allies.
  • Effects:
    • Condition: regeneration for 120.0s; +20 health every 2.0s

Protect Party

  • Words: utamo mas sio
  • Unlock: level 32
  • Vocations: Paladin
  • Cost / Exhaust: party base mana 90; runtime mana = ceil(n * 0.9^(n - 1) * 90), cooldown 2.0s, support exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, caster-centered, pattern CIRCLE3X3
  • Description: Boosts shielding for nearby allies.
  • Effects:
    • Condition: attribute buff for 120.0s; skill bonuses: shielding 3

Train Party

  • Words: utito mas sio
  • Unlock: level 32
  • Vocations: Knight
  • Cost / Exhaust: party base mana 60; runtime mana = ceil(n * 0.9^(n - 1) * 60), cooldown 2.0s, support exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, caster-centered, pattern CIRCLE3X3
  • Description: Boosts melee and distance skills for nearby allies.
  • Effects:
    • Condition: attribute buff for 120.0s; skill bonuses: fist 3, club 3, sword 3, axe 3, distance 3

Support (12)

Cancel Magic Shield

  • Words: exana vita
  • Unlock: level 14
  • Vocations: Druid, Sorcerer
  • Cost / Exhaust: 50 mana, cooldown 2.0s, support exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Removes your active magic shield.
  • Effects:
    • Dispel: manaShield

Haste

  • Words: utani hur
  • Unlock: level 14
  • Vocations: Sorcerer, Druid, Paladin, Knight
  • Cost / Exhaust: 60 mana, cooldown 2.0s, support exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Boosts your movement speed for a short time.
  • Effects:
    • Condition: speed for 33.0s; speedMultiplier 0.3, speedOffset -24

Magic Shield

  • Words: utamo vita
  • Unlock: level 14
  • Vocations: Druid, Sorcerer
  • Cost / Exhaust: 50 mana, cooldown 14.0s, support exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Protects you with a shield that absorbs damage with mana.
  • Effects:
    • Condition: mana shield for 180.0s; shield value = min(manaMax, floor(300 + 7.6 * level + 7 * effectiveMagicLevel))

Challenge

  • Words: exeta res
  • Unlock: level 20
  • Vocations: Knight
  • Cost / Exhaust: 40 mana, cooldown 2.0s, support exhaust 2.0s
  • Targeting: enemy target, range 1, can ignore line of sight, no weapon requirement, target-centered, pattern SQUARE1X1
  • Description: Challenges enemies around your target to focus on you for a short time.
  • Effects:
    • Challenge: taunts affected enemies for 8.0s

Strong Haste

  • Words: utani gran hur
  • Unlock: level 20
  • Vocations: Sorcerer, Druid
  • Cost / Exhaust: 100 mana, cooldown 2.0s, support exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Boosts your movement speed for a short time.
  • Effects:
    • Condition: speed for 22.0s; speedMultiplier 0.7, speedOffset -56

Charge

  • Words: utani tempo hur
  • Unlock: level 25
  • Vocations: Knight
  • Cost / Exhaust: 100 mana, cooldown 2.0s, support exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Boosts your movement speed for a short time.
  • Effects:
    • Condition: speed for 5.0s; speedMultiplier 0.9, speedOffset -72

Cancel Invisibility

  • Words: exana ina
  • Unlock: level 26
  • Vocations: Paladin
  • Cost / Exhaust: 200 mana, cooldown 2.0s, support exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, caster-centered, pattern CIRCLE3X3
  • Description: Reveals invisible creatures around you.
  • Effects:
    • Dispel: invisible

Invisibility

  • Words: utana vid
  • Unlock: level 35
  • Vocations: Sorcerer, Druid
  • Cost / Exhaust: 440 mana, cooldown 2.0s, support exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Turns you invisible for a short time.
  • Effects:
    • Condition: invisibility for 200.0s

Protector

  • Words: utamo tempo
  • Unlock: level 55
  • Vocations: Knight
  • Cost / Exhaust: 200 mana, cooldown 2.0s, support exhaust 2.0s, attack exhaust 10.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Boosts your shielding. Prevents you from attacking for a short time.
  • Effects:
    • Condition: attribute buff for 13.0s; skill percents: shielding 220%
    • Condition: pacified for 10.0s; prevents attacks

Swift Foot

  • Words: utamo tempo san
  • Unlock: level 55
  • Vocations: Paladin
  • Cost / Exhaust: 400 mana, cooldown 2.0s, support exhaust 2.0s, attack exhaust 10.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Boosts your movement speed for a short time. Prevents you from attacking for a short time.
  • Effects:
    • Condition: speed for 10.0s; speedMultiplier 0.8, speedOffset -64
    • Condition: pacified for 10.0s; prevents attacks

Blood Rage

  • Words: utito tempo
  • Unlock: level 60
  • Vocations: Knight
  • Cost / Exhaust: 290 mana, cooldown 2.0s, support exhaust 2.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Boosts your melee skills, but lowers your defenses.
  • Effects:
    • Condition: attribute buff for 10.0s; skill percents: fist 135%, club 135%, sword 135%, axe 135%; disables defense

Sharpshooter

  • Words: utito tempo san
  • Unlock: level 60
  • Vocations: Paladin
  • Cost / Exhaust: 450 mana, cooldown 2.0s, support exhaust 10.0s, healing exhaust 10.0s
  • Targeting: self, range 0, can ignore line of sight, no weapon requirement, single-target / no pattern
  • Description: Boosts your distance fighting, but slows you down and lowers your defenses.
  • Effects:
    • Condition: speed for 10.0s; speedMultiplier -0.7, speedOffset 56
    • Condition: attribute buff for 10.0s; skill percents: distance 140%; disables defense