Module:NeutralSpells

From Heroes of Might and Magic: Olden Era Official Wiki
Revision as of 22:10, 24 October 2025 by HeavyBeber (talk | contribs) (Created page with "local spells = { ["Magic Arrow"] = { name = "Magic Arrow", school = "Neutral", tier = "Tier 1", mana = 0, image = "Mana icon.png", l1 = "Deals [50 + 5 x hero's Spellpower] Magic Damage to the target enemy.", l2 = "", l3 = "", l4 = "" }, ["Back to Town!"] = { name = "Back to Town!", school = "Neutral", tier = "Tier 1", mana = 10, image = "Mana icon.png", l1 = "Teleports the hero to the nearest town they con...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:NeutralSpells/doc

local spells = {
  ["Magic Arrow"] = {
    name = "Magic Arrow",
    school = "Neutral",
    tier = "Tier 1",
    mana = 0,
    image = "Mana icon.png",
    l1 = "Deals [50 + 5 x hero's Spellpower] Magic Damage to the target enemy.",
    l2 = "",
    l3 = "",
    l4 = ""
  },
  ["Back to Town!"] = {
    name = "Back to Town!",
    school = "Neutral",
    tier = "Tier 1",
    mana = 10,
    image = "Mana icon.png",
    l1 = "Teleports the hero to the nearest town they control within [ 3 × hero’s sight ] squares. All remaining movement points are lost. 1 time per day.",
    l2 = "",
    l3 = "",
    l4 = ""
  },
  ["Mana Rite"] = {
    name = "Mana Rite",
    school = "Neutral",
    tier = "Tier 1",
    mana = 0,
    image = "Mana icon.png",
    l1 = "Restores the hero’s mana based on their remaining movement points: 1% of mana per 1% of remaining points. All movement points are lost.",
    l2 = "",
    l3 = "",
    l4 = ""
  },
  ["Relocation"] = {
    name = "Relocation",
    school = "Neutral",
    tier = "Tier 1",
    mana = 12,
    image = "Mana icon.png",
    l1 = "Allows interaction with any controlled city, enabling the transfer of creatures to or from that city. 1 time per day.",
    l2 = "",
    l3 = "",
    l4 = ""
  },
  ["Summon Avatar"] = {
    name = "Summon Avatar",
    school = "Neutral",
    tier = "Tier 1",
    mana = 10,
    image = "Mana icon.png",
    l1 = "Summons an Avatar. It has [50 + 20 x hero's Spellpower] HP and deals [5 + 4 x hero's Spellpower] Damage, he also gains Attack and Defence to the extent of the hero’s Spellpower and Knowledge. Can only have one allied Avatar at a time.",
    l2 = "[[File:Mana icon.png|32px|link=Magic]] 10 > 20 <br> HP: [50 + 30 x hero's Spellpower]; Damage: [5 + 8 x hero's Spellpower].",
    l3 = "[[File:Mana icon.png|32px|link=Magic]] 20 > 30 <br> HP: [50 + 40 x hero's Spellpower]; Damage: [5 + 12 x hero's Spellpower].",
    l4 = ""
  },
  ["Second Wind"] = {
    name = "Second Wind",
    school = "Neutral",
    tier = "Tier 1",
    mana = 15,
    image = "Mana icon.png",
    l1 = "The hero restores 20 Movement points. Times per day: 1. The hero must be at least level 1",
    l2 = "Lv.2: Bonus Movement points: 20 > 30.",
    l3 = "Lv.3: Bonus Movement points: 30 > 40.",
    l4 = "Lv.4: Can be used + 1 time per day."
  },
  ["Shadowflight"] = {
    name = "Shadowflight",
    school = "Neutral",
    tier = "Tier 1",
    mana = 18,
    image = "Mana icon.png",
    l1 = "The hero flies and can freely move through any obstacles on the global map. The hero must be at least level 3",
    l2 = "[[File:Mana icon.png|32px|link=Magic]] 18 > 14",
    l3 = "–20% movement cost while flying.",
    l4 = "–40% movement cost while flying."
  },
  ["Gate of Light"] = {
    name = "Gate of Light",
    school = "Neutral",
    tier = "Tier 3",
    mana = 22,
    image = "Mana icon.png",
    l1 = "Creates a portal until the end of the day, allowing any hero to travel through it. Entry is from any free adjacent space, and exit is to any free space within 6 square(s) of the hero. Can be used 1 time(s) per day. The hero must be at least level 6",
    l2 = "[[File:Mana icon.png|32px|link=Magic]] 22 > 16",
    l3 = "Target radius: 6 > 8.",
    l4 = "Can be used + 1 time per day."
  },
  ["Town Portal"] = {
    name = "Town Portal",
    school = "Neutral",
    tier = "Tier 4",
    mana = 28,
    image = "Mana icon.png",
    l1 = "Teleports the hero to a selected city they control. 1 times per day. The hero must be at least level 9",
    l2 = "[[File:Mana icon.png|32px|link=Magic]] 28 > 20",
    l3 = "Can be used + 1 time per day.",
    l4 = "Can be used + 1 time per day."
  },
  ["Dimension Door"] = {
    name = "Dimension Door",
    school = "Neutral",
    tier = "Tier 5",
    mana = 30,
    image = "Mana icon.png",
    l1 = "Teleports the hero to target location within 8 squares. 1 times per day. The hero must be at least level 12",
    l2 = "Target radius: 8 > 10.",
    l3 = "Target radius: 10 > 12.",
    l4 = "Can be used + 1 time per day."
  }
}

return spells