Figverse Wiki
Advertisement

Documentation for this module may be created at Module:MARDEK Items/data/doc

-- <nowiki>
--------------------------------------------------------------------------------
-- This module contains information about every item in the MARDEK series,
-- indexed by name and in-game 'sort' order. Each item is represented by a table
-- with the following fields:
--
-- `name`:
-- A <string> representing the item's in-game name.
--
-- `sortId`:
-- A <number> indicating summat. (@TODO)
--
-- `image`:
-- A <string> indicating the location of the item's sprite on the wiki.
--
-- `target`:
-- A <string> indicating the location of the item's article on the wiki.
--
-- `isPlot`:
-- A <boolean> representing whether the item can be found on a special menu or
-- screen in-game.
--
-- `resistance`:
-- A <table> listing summat. (@TODO)
--
-- `empowerment`:
-- A <table> listing summat. (@TODO)
--
-- `properties`:
-- A <table> listing summat. (@TODO)
--
-- `skills`:
-- A <table> listing which skills the item can teach.
--
-- `canEquip`:
-- A <table> listing which playable characters can equip the item. Note that
-- this takes availability into account. For example, although six different
-- people can theoretically use the Turquoise Armour, all but Mardek have left
-- the party by the time you get it.
--------------------------------------------------------------------------------
-- @TODO:
--    * Finish incomplete field descriptions in the documentation (see above).
--    * Replace default values for the `properties` fields.
--    * Figure out what to do with the following information:
--        * drains hp/mp
--        * (in)effective against
--        * inflicts (e.g. "Inflicts CRS (100%)")
--        * auto (e.g. "Auto-Haste")
--        * charismatic performer (e.g. "Charismatic Performer (50%)")
--        * Gemsplosion POW
--        * Gemsplosion: Drain HP
--        * Gemsplosion + CNF
--        * Gemsplosion + PSN
--------------------------------------------------------------------------------
local items = {}

local function addItem(item)
    items[item.name] = item
    items[item.sortId] = item
end

addItem{
    name = "Longsword",
    sortId = 1,
    image = "File:Longsword.png",
    target = "Longsword",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 10,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+20%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Bronze Sword",
    sortId = 2,
    image = "File:Bronze Sword.png",
    target = "Bronze Sword (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 14,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Smite Evil (Holy Arts)",
        "Smite +"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Silver Sword",
    sortId = 3,
    image = "File:Silver Sword.png",
    target = "Silver Sword (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 16,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Disrupt Undead",
        "Quarry: UNDEAD"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Iron Sword",
    sortId = 4,
    image = "File:Iron Sword.png",
    target = "Iron Sword (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 20,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+10%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Mace",
    sortId = 5,
    image = "File:Mace.png",
    target = "Mace",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 22,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+10%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Mythril Sword",
    sortId = 6,
    image = "File:Mythril Sword.png",
    target = "Mythril Sword",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 26,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+10%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Shadowblade",
    sortId = 7,
    image = "File:Shadowblade.png",
    target = "Shadowblade",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 25,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Degeneration 10%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Sun Sword",
    sortId = 8,
    image = "File:Sun Sword.png",
    target = "Sun Sword",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 28,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+20%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Xantusian Scimitar",
    sortId = 9,
    image = "File:Xantusian Scimitar.png",
    target = "Xantusian Scimitar",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 1,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 33,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 10,
        hp = 0,
        mp = 0
    },
    skills = {
        "Critical+20%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Champion Sword",
    sortId = 10,
    image = "File:Champion Sword.png",
    target = "Champion Sword",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 32,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 10,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+30%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "M Blade",
    sortId = 11,
    image = "File:M Blade.png",
    target = "M Blade",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 5,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 100,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 10,
        hp = 0,
        mp = 0
    },
    skills = {
        "Smite Evil (Powers)",
        "DMG+50%",
        "Stunstrike"
    },
    canEquip = {
        "Mardek"
    }
}

addItem{
    name = "Stick",
    sortId = 12,
    image = "File:Stick.png",
    target = "Stick",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 3,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 1,
        hp = 0,
        mp = 0
    },
    skills = {
        "Strike",
        "DMG+1",
        "Block"
    },
    canEquip = {
        "Mardek"
    }
}

addItem{
    name = "Keyblade",
    sortId = 13,
    image = "File:Keyblade.png",
    target = "Keyblade",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 26,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Aeropolitan Scimitar",
    sortId = 14,
    image = "File:Aeropolitan Scimitar.png",
    target = "Aeropolitan Scimitar",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 1,
        atk = 36,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 10,
        hp = 0,
        mp = 0
    },
    skills = {
        "Air Slash"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Flametongue",
    sortId = 15,
    image = "File:Flametongue.png",
    target = "Flametongue",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 1,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 39,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 3,
        hp = 0,
        mp = 0
    },
    skills = {
        "Fire Slash"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Fishslayer",
    sortId = 16,
    image = "File:Fishslayer.png",
    target = "Fishslayer",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 1,
        agl = 0,
        atk = 37,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 3,
        hp = 0,
        mp = 0
    },
    skills = {
        "Water Slash"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Blood Sword",
    sortId = 17,
    image = "File:Blood Sword.png",
    target = "Blood Sword",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 30,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 3,
        hp = 0,
        mp = 0
    },
    skills = {
        "Drain HP 10%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Righteous Justice",
    sortId = 18,
    image = "File:Righteous Justice.png",
    target = "Righteous Justice",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 2,
        vit = 0,
        spr = 3,
        agl = 0,
        atk = 40,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 3,
        hp = 0,
        mp = 20
    },
    skills = {
        "Divine Glory",
        "Smite X",
        "Soulstrike"
    },
    canEquip = {
        "Vehrn"
    }
}

addItem{
    name = "Clerical Mace",
    sortId = 19,
    image = "File:Clerical Mace.png",
    target = "Clerical Mace",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 35,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Smite +"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Forest Edge",
    sortId = 20,
    image = "File:Forest Edge.png",
    target = "Forest Edge",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 1,
        spr = 0,
        agl = 0,
        atk = 40,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 3,
        hp = 0,
        mp = 0
    },
    skills = {
        "Earth Slash (Magic Sword)"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Sword of Goznor",
    sortId = 21,
    image = "File:Sword of Goznor.png",
    target = "Sword of Goznor",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 4,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 46,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 3,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek"
    }
}

addItem{
    name = "Champion Sword II",
    sortId = 22,
    image = "File:Champion Sword II.png",
    target = "Champion Sword II",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 20,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 2,
        vit = 0,
        spr = 2,
        agl = 0,
        atk = 50,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 10,
        hp = 0,
        mp = 100
    },
    skills = {
        "DMG+30%",
        "Soulstrike"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Cursed Blade",
    sortId = 23,
    image = "File:Cursed Blade.png",
    target = "Cursed Blade",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 5,
        vit = -5,
        spr = -5,
        agl = 0,
        atk = 45,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 3,
        hp = 0,
        mp = 0
    },
    skills = {
        "P+Bleed 20%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Pike",
    sortId = 24,
    image = "File:Pike.png",
    target = "Pike (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 9,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 2,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Donovan",
        "Sharla"
    }
}

addItem{
    name = "Ember Spear",
    sortId = 25,
    image = "File:Ember Spear.png",
    target = "Ember Spear",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 20,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 22,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 2,
        hp = 0,
        mp = 0
    },
    skills = {
        "Flame (Pyromancy)",
        "M FIRE+20%",
        "Soulstrike"
    },
    canEquip = {
        "Donovan",
        "Sharla"
    }
}

addItem{
    name = "Wing Spear",
    sortId = 26,
    image = "File:Wing Spear.png",
    target = "Wing Spear",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 20,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 22,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 2,
        hp = 0,
        mp = 0
    },
    skills = {
        "Lightning Bolt (Aeromancy)",
        "M AIR+20%",
        "Soulstrike"
    },
    canEquip = {
        "Donovan",
        "Sharla"
    }
}

addItem{
    name = "Iron Spear",
    sortId = 27,
    image = "File:Iron Spear.png",
    target = "Iron Spear (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 28,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 2,
        hp = 0,
        mp = 0
    },
    skills = {
        "Null Air Once (Aeromancy)",
        "Remove Paralysis",
        "Remove Numbness"
    },
    canEquip = {
        "Donovan",
        "Sharla"
    }
}

addItem{
    name = "Desert Spear",
    sortId = 28,
    image = "File:Desert Spear.png",
    target = "Desert Spear",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 32,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 2,
        hp = 0,
        mp = 0
    },
    skills = {
        "Burn",
        "Gust Shield"
    },
    canEquip = {
        "Donovan",
        "Sharla"
    }
}

addItem{
    name = "Stingstick",
    sortId = 29,
    image = "File:Stingstick.png",
    target = "Stingstick",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 30,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 2,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+10%",
        "P+Poison 20%"
    },
    canEquip = {
        "Donovan",
        "Sharla"
    }
}

addItem{
    name = "Firefang",
    sortId = 30,
    image = "File:Firefang.png",
    target = "Firefang",
    isPlot = false,
    resistance = {
        fire = 50,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 25,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 2,
        agl = 0,
        atk = 36,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 2,
        hp = 0,
        mp = 0
    },
    skills = {
        "Blaze",
        "Null Fire Once (Pyromancy)",
        "DMG+20%"
    },
    canEquip = {
        "Donovan",
        "Sharla"
    }
}

addItem{
    name = "Magic Poker",
    sortId = 31,
    image = "File:Magic Poker.png",
    target = "Magic Poker",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 40,
        water = 40,
        air = 40,
        earth = 40,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 3,
        agl = 0,
        atk = 20,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 2,
        hp = 0,
        mp = 0
    },
    skills = {
        "Thunderbolt",
        "M DMG+20%"
    },
    canEquip = {
        "Donovan",
        "Sharla"
    }
}

addItem{
    name = "Obelisk",
    sortId = 32,
    image = "File:Obelisk.png",
    target = "Obelisk",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 50,
        water = 0,
        air = 50,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 2,
        vit = 0,
        spr = 5,
        agl = 0,
        atk = 40,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 2,
        hp = 0,
        mp = 50
    },
    skills = {
        "Pyro Shell",
        "Aero Shell"
    },
    canEquip = {
        "Donovan",
        "Sharla"
    }
}

addItem{
    name = "Greatsword",
    sortId = 33,
    image = "File:Greatsword.png",
    target = "Greatsword (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 12,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Power Attack (Spellbladery)",
        "DMG+20%"
    },
    canEquip = {
        "Deugan"
    }
}

addItem{
    name = "Tectonic Sword",
    sortId = 34,
    image = "File:Tectonic Sword.png",
    target = "Tectonic Sword",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 16,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Earth Slash (Spellbladery)"
    },
    canEquip = {
        "Deugan"
    }
}

addItem{
    name = "Iron Greatblade",
    sortId = 35,
    image = "File:Iron Greatblade.png",
    target = "Iron Greatblade (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 20,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Barrier Break"
    },
    canEquip = {
        "Deugan"
    }
}

addItem{
    name = "MythrilGreatblade",
    sortId = 36,
    image = "File:MythrilGreatblade.png",
    target = "MythrilGreatblade",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 22,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Power Attack (Spellbladery)",
        "DMG+20%"
    },
    canEquip = {
        "Deugan"
    }
}

addItem{
    name = "Ancient Sword",
    sortId = 37,
    image = "File:Ancient Sword.png",
    target = "Ancient Sword",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 26,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Spiritblade",
        "M DMG-20%"
    },
    canEquip = {
        "Deugan"
    }
}

addItem{
    name = "Burial Sword",
    sortId = 38,
    image = "File:Burial Sword.png",
    target = "Burial Sword",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 2,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 32,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Boost (Spellbladery)",
        "DMG+30%"
    },
    canEquip = {
        "Deugan"
    }
}

addItem{
    name = "Wolfblade",
    sortId = 39,
    image = "File:Wolfblade.png",
    target = "Wolfblade",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 40,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Balmung",
    sortId = 40,
    image = "File:Balmung.png",
    target = "Balmung",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 5,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 100,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 8,
        hp = 0,
        mp = 0
    },
    skills = {
        "Sunder",
        "DMG+50%",
        "Snakebite"
    },
    canEquip = {
        "Deugan"
    }
}

addItem{
    name = "Big Stick",
    sortId = 41,
    image = "File:Big Stick.png",
    target = "Big Stick",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 3,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 1,
        hp = 0,
        mp = 0
    },
    skills = {
        "Strike",
        "DMG+1",
        "Block"
    },
    canEquip = {
        "Deugan"
    }
}

addItem{
    name = "Starmetal Blade",
    sortId = 42,
    image = "File:Starmetal Blade.png",
    target = "Starmetal Blade",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 2,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 48,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Bartholio"
    }
}

addItem{
    name = "Greataxe",
    sortId = 43,
    image = "File:Greataxe.png",
    target = "Greataxe",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 34,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+10%"
    },
    canEquip = {
        "Sslen'ck"
    }
}

addItem{
    name = "Sun Axe",
    sortId = 44,
    image = "File:Sun Axe.png",
    target = "Sun Axe",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 35,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+20%"
    },
    canEquip = {
        "Sslen'ck"
    }
}

addItem{
    name = "Iron Axe",
    sortId = 45,
    image = "File:Iron Axe.png",
    target = "Iron Axe (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 38,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+20%",
        "Quarry: HUMAN"
    },
    canEquip = {
        "Sslen'ck"
    }
}

addItem{
    name = "Mighty Axe",
    sortId = 46,
    image = "File:Mighty Axe.png",
    target = "Mighty Axe",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 42,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Boost (Dragon Tech)",
        "Quarry: INSECT"
    },
    canEquip = {
        "Sslen'ck"
    }
}

addItem{
    name = "Bone Axe",
    sortId = 47,
    image = "File:Bone Axe.png",
    target = "Bone Axe",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 40,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Perforate",
        "Quarry: BEAST"
    },
    canEquip = {
        "Sslen'ck"
    }
}

addItem{
    name = "Silver Axe",
    sortId = 48,
    image = "File:Silver Axe.png",
    target = "Silver Axe",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 46,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Quarry: UNDEAD"
    },
    canEquip = {
        "Sslen'ck"
    }
}

addItem{
    name = "Rending Eye",
    sortId = 49,
    image = "File:Rending Eye.png",
    target = "Rending Eye",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 20,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 2,
        agl = 0,
        atk = 50,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Sslen'ck"
    }
}

addItem{
    name = "Stone Axe",
    sortId = 50,
    image = "File:Stone Axe.png",
    target = "Stone Axe",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 52,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 4,
        hp = 0,
        mp = 0
    },
    skills = {
        "Earth Slash (Dragon Tech)"
    },
    canEquip = {
        "Sslen'ck"
    }
}

addItem{
    name = "Drackal Crescent",
    sortId = 51,
    image = "File:Drackal Crescent.png",
    target = "Drackal Crescent",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 50,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 3,
        vit = 3,
        spr = 0,
        agl = 0,
        atk = 60,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 10,
        hp = 0,
        mp = 0
    },
    skills = {
        "Fire Stream",
        "Quarry: DRAGON",
        "Soulstrike"
    },
    canEquip = {
        "Sslen'ck"
    }
}

addItem{
    name = "Shashiik",
    sortId = 52,
    image = "File:Shashiik.png",
    target = "Shashiik",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Berserk",
        "DMG+20%",
        "Soulstrike"
    },
    canEquip = {
        "Zach"
    }
}

addItem{
    name = "Boneslicer",
    sortId = 53,
    image = "File:Boneslicer.png",
    target = "Boneslicer",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Crescendo Slash",
        "Quarry: UNDEAD"
    },
    canEquip = {
        "Zach"
    }
}

addItem{
    name = "Twin Trilobites",
    sortId = 54,
    image = "File:Twin Trilobites.png",
    target = "Twin Trilobites",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Sure Slash",
        "Quarry: INSECT"
    },
    canEquip = {
        "Zach"
    }
}

addItem{
    name = "Two Moons",
    sortId = 55,
    image = "File:Two Moons.png",
    target = "Two Moons",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Coup de Grace",
        "Critical+20%"
    },
    canEquip = {
        "Zach"
    }
}

addItem{
    name = "Eagle Wings",
    sortId = 56,
    image = "File:Eagle Wings.png",
    target = "Eagle Wings",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Soulstrike",
        "AGL+2"
    },
    canEquip = {
        "Zach"
    }
}

addItem{
    name = "Yin and Yang",
    sortId = 57,
    image = "File:Yin and Yang.png",
    target = "Yin and Yang",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Immoral Injustice",
        "Evasion 50%"
    },
    canEquip = {
        "Zach"
    }
}

addItem{
    name = "Water Rod",
    sortId = 58,
    image = "File:Water Rod.png",
    target = "Water Rod",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 25,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Bubble",
        "M DMG+20%"
    },
    canEquip = {
        "Emela"
    }
}

addItem{
    name = "Earth Rod",
    sortId = 59,
    image = "File:Earth Rod.png",
    target = "Earth Rod",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 25,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Stonesplosion",
        "M+Poison 20%"
    },
    canEquip = {
        "Emela"
    }
}

addItem{
    name = "Fire Rod",
    sortId = 60,
    image = "File:Fire Rod.png",
    target = "Fire Rod",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 25,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Flame (Elemancy)"
    },
    canEquip = {
        "Emela"
    }
}

addItem{
    name = "Lightning Rod",
    sortId = 61,
    image = "File:Lightning Rod.png",
    target = "Lightning Rod",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 25,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M+Stun 20%",
        "M DMG+10%"
    },
    canEquip = {
        "Emela"
    }
}

addItem{
    name = "Sage's Wand",
    sortId = 62,
    image = "File:Sage's Wand.png",
    target = "Sage's Wand",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 10,
        water = 10,
        air = 10,
        earth = 10,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "HeartStaff",
    sortId = 63,
    image = "File:HeartStaff.png",
    target = "HeartStaff",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Earth Staff",
    sortId = 64,
    image = "File:Earth Staff.png",
    target = "Earth Staff (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 20,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Razor Leaf",
        "Earth Heal",
        "Soulstrike"
    },
    canEquip = {
        "Gloria"
    }
}

addItem{
    name = "Polemace",
    sortId = 65,
    image = "File:Polemace.png",
    target = "Polemace",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+20%"
    },
    canEquip = {
        "Gloria"
    }
}

addItem{
    name = "Air Staff",
    sortId = 66,
    image = "File:Air Staff.png",
    target = "Air Staff",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Twister",
        "Null Air Once (Nature Magic)",
        "M DMG+20%"
    },
    canEquip = {
        "Gloria"
    }
}

addItem{
    name = "Fire Staff",
    sortId = 67,
    image = "File:Fire Staff.png",
    target = "Fire Staff (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Wildfire",
        "Null Fire Once (Nature Magic)",
        "DMG+20%"
    },
    canEquip = {
        "Gloria",
        "Aalia"
    }
}

addItem{
    name = "Yggdrasil's Finger",
    sortId = 68,
    image = "File:Yggdrasil's Finger.png",
    target = "Yggdrasil's Finger",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 20,
        water = 20,
        air = 20,
        earth = 20,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Mass Cleanse",
        "M DMG+30%",
        "MP+20%"
    },
    canEquip = {
        "Gloria"
    }
}

addItem{
    name = "Trilobite Staff",
    sortId = 69,
    image = "File:Trilobite Staff.png",
    target = "Trilobite Staff",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Whirlpool",
        "Null Water Once"
    },
    canEquip = {
        "Gloria"
    }
}

addItem{
    name = "Mahogany Staff",
    sortId = 70,
    image = "File:Mahogany Staff.png",
    target = "Mahogany Staff",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M Drain HP 10%"
    },
    canEquip = {
        "Gloria"
    }
}

addItem{
    name = "Silver Claw",
    sortId = 71,
    image = "File:Silver Claw.png",
    target = "Silver Claw",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M DMG+20%",
        "Quarry: UNDEAD"
    },
    canEquip = {
        "Solaar"
    }
}

addItem{
    name = "Raptor Claw",
    sortId = 72,
    image = "File:Raptor Claw.png",
    target = "Raptor Claw",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+20%",
        "Critical+20%"
    },
    canEquip = {
        "Solaar"
    }
}

addItem{
    name = "Viper Claw",
    sortId = 73,
    image = "File:Viper Claw.png",
    target = "Viper Claw",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Purify",
        "P+Poison 20%"
    },
    canEquip = {
        "Solaar"
    }
}

addItem{
    name = "Guardian Claw",
    sortId = 74,
    image = "File:Guardian Claw.png",
    target = "Guardian Claw",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 50,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Galaxy Burst",
        "M DMG+30%",
        "M LIGHT+20%"
    },
    canEquip = {
        "Solaar"
    }
}

addItem{
    name = "Silver Harp",
    sortId = 75,
    image = "File:Silver Harp.png",
    target = "Silver Harp",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+10%",
        "DARK-50%"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Wave Harp",
    sortId = 76,
    image = "File:Wave Harp.png",
    target = "Wave Harp",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Soulstrike",
        "WATER-50%"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Fairy Harp",
    sortId = 77,
    image = "File:Fairy Harp.png",
    target = "Fairy Harp",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+20%",
        "EARTH-50%"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Astral Harp",
    sortId = 78,
    image = "File:Astral Harp.png",
    target = "Astral Harp",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+30%",
        "AETHER-50%",
        "EXP+20%"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Clasping Claws",
    sortId = 79,
    image = "File:Clasping Claws.png",
    target = "Clasping Claws",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+10%",
        "Accuracy+50%"
    },
    canEquip = {
        "Legion"
    }
}

addItem{
    name = "Hammerfist",
    sortId = 80,
    image = "File:Hammerfist.png",
    target = "Hammerfist",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+20%",
        "Shield Break 10%"
    },
    canEquip = {
        "Legion"
    }
}

addItem{
    name = "Buzzsaw Arm",
    sortId = 81,
    image = "File:Buzzsaw Arm.png",
    target = "Buzzsaw Arm",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG+30%",
        "Critical+20%"
    },
    canEquip = {
        "Legion"
    }
}

addItem{
    name = "Dagger",
    sortId = 82,
    image = "File:Dagger.png",
    target = "Dagger (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Curved Dagger",
    sortId = 83,
    image = "File:Curved Dagger.png",
    target = "Curved Dagger",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Branch Club",
    sortId = 84,
    image = "File:Branch Club.png",
    target = "Branch Club",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Revolver",
    sortId = 85,
    image = "File:Revolver.png",
    target = "Revolver (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Taurus",
    sortId = 86,
    image = "File:Taurus.png",
    target = "Taurus",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "WalkingStick",
    sortId = 87,
    image = "File:WalkingStick.png",
    target = "WalkingStick",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Mortus",
    sortId = 88,
    image = "File:Mortus.png",
    target = "Mortus",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Aquila",
    sortId = 89,
    image = "File:Aquila.png",
    target = "Aquila",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Wooden Shield",
    sortId = 90,
    image = "File:Wooden Shield.png",
    target = "Wooden Shield (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-10%"
    },
    canEquip = {
        "Mardek",
        "Emela",
        "Vehrn"
    }
}

addItem{
    name = "Bronze Shield",
    sortId = 91,
    image = "File:Bronze Shield.png",
    target = "Bronze Shield (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG Soak 10"
    },
    canEquip = {
        "Mardek",
        "Emela",
        "Vehrn"
    }
}

addItem{
    name = "Kite Shield",
    sortId = 92,
    image = "File:Kite Shield.png",
    target = "Kite Shield (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Emela",
        "Vehrn"
    }
}

addItem{
    name = "Hero's Shield",
    sortId = 93,
    image = "File:Hero's Shield.png",
    target = "Hero's Shield",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek"
    }
}

addItem{
    name = "Rune Shield",
    sortId = 94,
    image = "File:Rune Shield.png",
    target = "Rune Shield",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M. Shield",
        "M DMG-20%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Rune Shield +",
    sortId = 95,
    image = "File:Rune Shield +.png",
    target = "Rune Shield +",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M. Shield",
        "M DMG Soak 20"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Gold Shield",
    sortId = 96,
    image = "File:Gold Shield.png",
    target = "Gold Shield",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Shield",
        "DMG Soak 20"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Shield of Darkness",
    sortId = 97,
    image = "File:Shield of Darkness.png",
    target = "Shield of Darkness (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 30,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 20,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DARK-50%",
        "M DARK-50%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Shield of Light",
    sortId = 98,
    image = "File:Shield of Light.png",
    target = "Shield of Light (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 30,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 20,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "LIGHT-50%",
        "M LIGHT-50%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Glyph Shield",
    sortId = 99,
    image = "File:Glyph Shield.png",
    target = "Glyph Shield (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 16,
        water = 16,
        air = 16,
        earth = 16,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Spell Resist: 30%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Wing Shield",
    sortId = 100,
    image = "File:Wing Shield.png",
    target = "Wing Shield",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 50,
        earth = 25,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "AIR-50%",
        "M AIR-50%"
    },
    canEquip = {
        "Mardek",
        "Vehrn"
    }
}

addItem{
    name = "Thermal Spanner",
    sortId = 101,
    image = "File:Thermal Spanner.png",
    target = "Thermal Spanner (Item)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Thermal Spanner"
    },
    canEquip = {
        "Meraeador"
    }
}

addItem{
    name = "Silver Mirror",
    sortId = 102,
    image = "File:Silver Mirror.png",
    target = "Silver Mirror (Item)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Silver Mirror"
    },
    canEquip = {
        "Meraeador"
    }
}

addItem{
    name = "Golden Mirror",
    sortId = 103,
    image = "File:Golden Mirror.png",
    target = "Golden Mirror (Item)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Golden Mirror"
    },
    canEquip = {
        "Meraeador"
    }
}

addItem{
    name = "Gas-O-Matic",
    sortId = 104,
    image = "File:Gas-O-Matic.png",
    target = "Gas-O-Matic (Item)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 100,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Gas-O-Matic"
    },
    canEquip = {
        "Meraeador"
    }
}

addItem{
    name = "Flamethrower",
    sortId = 105,
    image = "File:Flamethrower.png",
    target = "Flamethrower (Item)",
    isPlot = false,
    resistance = {
        fire = 75,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Flamethrower"
    },
    canEquip = {
        "Meraeador"
    }
}

addItem{
    name = "Drill-O-Matic",
    sortId = 106,
    image = "File:Drill-O-Matic.png",
    target = "Drill-O-Matic (Item)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Drill-O-Matic"
    },
    canEquip = {
        "Meraeador"
    }
}

addItem{
    name = "Sleep-O-Matic",
    sortId = 107,
    image = "File:Sleep-O-Matic.png",
    target = "Sleep-O-Matic (Item)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 100,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Sleep-O-Matic"
    },
    canEquip = {
        "Meraeador"
    }
}

addItem{
    name = "Potion Spray",
    sortId = 108,
    image = "File:Potion Spray.png",
    target = "Potion Spray (Item)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Potion Spray"
    },
    canEquip = {
        "Meraeador"
    }
}

addItem{
    name = "Sheet Music I",
    sortId = 109,
    image = "File:Sheet Music I.png",
    target = "Sheet Music I",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Spirit Song"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Sheet Music II",
    sortId = 110,
    image = "File:Sheet Music II.png",
    target = "Sheet Music II",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Vigorous March"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Sheet Music III",
    sortId = 111,
    image = "File:Sheet Music III.png",
    target = "Sheet Music III",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Solid Sonata"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Sheet Music IV",
    sortId = 112,
    image = "File:Sheet Music IV.png",
    target = "Sheet Music IV",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Runic Rhapsody"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Sheet Music V",
    sortId = 113,
    image = "File:Sheet Music V.png",
    target = "Sheet Music V",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Dolorous Dirge"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Sheet Music VI",
    sortId = 114,
    image = "File:Sheet Music VI.png",
    target = "Sheet Music VI",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Requiem"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Sheet Music VII",
    sortId = 115,
    image = "File:Sheet Music VII.png",
    target = "Sheet Music VII",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Ballad of Life"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Sheet Music VIII",
    sortId = 116,
    image = "File:Sheet Music VIII.png",
    target = "Sheet Music VIII",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Ballad of Balance"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Hat",
    sortId = 117,
    image = "File:Hat.png",
    target = "Hat (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Bronze Circlet",
    sortId = 118,
    image = "File:Bronze Circlet.png",
    target = "Bronze Circlet",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-10%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Silver Circlet",
    sortId = 119,
    image = "File:Silver Circlet.png",
    target = "Silver Circlet",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M DMG-10%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Golden Circlet",
    sortId = 120,
    image = "File:Golden Circlet.png",
    target = "Golden Circlet",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Black Hat",
    sortId = 121,
    image = "File:Black Hat.png",
    target = "Black Hat",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 50,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M DARK-50%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Regal Crown",
    sortId = 122,
    image = "File:Regal Crown.png",
    target = "Regal Crown",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Double Gold"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Minstrel's Tiara",
    sortId = 123,
    image = "File:Minstrel's Tiara.png",
    target = "Minstrel's Tiara",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Survivor"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Feather Crest",
    sortId = 124,
    image = "File:Feather Crest.png",
    target = "Feather Crest",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 10,
        water = 10,
        air = 10,
        earth = 10,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M DMG+20%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Scoping Lens",
    sortId = 125,
    image = "File:Scoping Lens.png",
    target = "Scoping Lens",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 100,
        confusion = 0,
        sleep = 0,
        blindness = 100,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M DMG+10%",
        "Accuracy+50%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Elf Cap",
    sortId = 126,
    image = "File:Elf Cap.png",
    target = "Elf Cap",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 20,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M DMG Soak 10"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Cursed Beret",
    sortId = 127,
    image = "File:Cursed Beret.png",
    target = "Cursed Beret",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 200,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Leather Helm",
    sortId = 128,
    image = "File:Leather Helm.png",
    target = "Leather Helm (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Deugan",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Legion"
    }
}

addItem{
    name = "Kettle Hat",
    sortId = 129,
    image = "File:Kettle Hat.png",
    target = "Kettle Hat",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Deugan",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Legion"
    }
}

addItem{
    name = "Horned Helm",
    sortId = 130,
    image = "File:Horned Helm.png",
    target = "Horned Helm",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "SOS Berserk"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Legion"
    }
}

addItem{
    name = "Skull Helm",
    sortId = 131,
    image = "File:Skull Helm.png",
    target = "Skull Helm",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG Soak 20"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Legion"
    }
}

addItem{
    name = "Rusty Helm",
    sortId = 132,
    image = "File:Rusty Helm.png",
    target = "Rusty Helm",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Vehrn",
        "Sslen'ck",
        "Legion"
    }
}

addItem{
    name = "Golden M Helm",
    sortId = 133,
    image = "File:Golden M Helm.png",
    target = "Golden M Helm",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 30,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 20,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M DMG+20%",
        "Bright Eyes"
    },
    canEquip = {
        "Mardek"
    }
}

addItem{
    name = "Azure Stole +2",
    sortId = 134,
    image = "File:Azure Stole +2.png",
    target = "Azure Stole +2",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "SPR+1"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Azure Stole +4",
    sortId = 135,
    image = "File:Azure Stole +4.png",
    target = "Azure Stole +4",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "SPR+2"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Azure Stole +6",
    sortId = 136,
    image = "File:Azure Stole +6.png",
    target = "Azure Stole +6",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "SPR+3"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Green Stole +2",
    sortId = 137,
    image = "File:Green Stole +2.png",
    target = "Green Stole +2",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "VIT+1"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Green Stole +4",
    sortId = 138,
    image = "File:Green Stole +4.png",
    target = "Green Stole +4",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "VIT+2"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Green Stole +6",
    sortId = 139,
    image = "File:Green Stole +6.png",
    target = "Green Stole +6",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "VIT+3"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Scarlet Stole +2",
    sortId = 140,
    image = "File:Scarlet Stole +2.png",
    target = "Scarlet Stole +2",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "STR+1"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Scarlet Stole +4",
    sortId = 141,
    image = "File:Scarlet Stole +4.png",
    target = "Scarlet Stole +4",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "STR+2"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Scarlet Stole +6",
    sortId = 142,
    image = "File:Scarlet Stole +6.png",
    target = "Scarlet Stole +6",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "STR+3"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Steel Stole",
    sortId = 143,
    image = "File:Steel Stole.png",
    target = "Steel Stole",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 50,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-20%",
        "DMG Soak 30"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Tunic",
    sortId = 144,
    image = "File:Tunic.png",
    target = "Tunic (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Huff-Puff"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Magic Blouse",
    sortId = 145,
    image = "File:Magic Blouse.png",
    target = "Magic Blouse",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-10%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Magic Shirt",
    sortId = 146,
    image = "File:Magic Shirt.png",
    target = "Magic Shirt",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-20%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "LesserRainbowShirt",
    sortId = 147,
    image = "File:LesserRainbowShirt.png",
    target = "LesserRainbowShirt",
    isPlot = false,
    resistance = {
        fire = 10,
        water = 10,
        air = 10,
        earth = 10,
        light = 10,
        dark = 10,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Rainbow Aura Lv.1"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Expensive Suit",
    sortId = 148,
    image = "File:Expensive Suit.png",
    target = "Expensive Suit",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Hero's Coat",
    sortId = 149,
    image = "File:Hero's Coat.png",
    target = "Hero's Coat",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Deugan"
    }
}

addItem{
    name = "Leather Armour",
    sortId = 150,
    image = "File:Leather Armour.png",
    target = "Leather Armour (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-10%"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Bandit Leather",
    sortId = 151,
    image = "File:Bandit Leather.png",
    target = "Bandit Leather",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 25,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 50,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Evasion 20%",
        "AGL+1"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Spiked Hide Armour",
    sortId = 152,
    image = "File:Spiked Hide Armour.png",
    target = "Spiked Hide Armour",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-20%",
        "DMG Soak 20"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Geojacket",
    sortId = 153,
    image = "File:Geojacket.png",
    target = "Geojacket",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 120,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Resist EARTH"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Night Jacket",
    sortId = 154,
    image = "File:Night Jacket.png",
    target = "Night Jacket",
    isPlot = false,
    resistance = {
        fire = 20,
        water = 20,
        air = 20,
        earth = 20,
        light = 0,
        dark = 120,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Resist DARK"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Reinforced Leather",
    sortId = 155,
    image = "File:Reinforced Leather.png",
    target = "Reinforced Leather",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG Soak 20"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Bandit Leather +5",
    sortId = 156,
    image = "File:Bandit Leather +5.png",
    target = "Bandit Leather +5",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 50,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 100,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Snakemail",
    sortId = 157,
    image = "File:Snakemail.png",
    target = "Snakemail",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 100,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Sinstrike",
        "DMG-10%",
        "Antibody"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Astral Wanderer's Garb",
    sortId = 158,
    image = "File:Astral Wanderer's Garb.png",
    target = "Astral Wanderer's Garb",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 50,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Resist AETHER"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Chainmail",
    sortId = 159,
    image = "File:Chainmail.png",
    target = "Chainmail (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-20%"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Vehrn",
        "Zach",
        "Sslen'ck"
    }
}

addItem{
    name = "Green Chainmail",
    sortId = 160,
    image = "File:Green Chainmail.png",
    target = "Green Chainmail",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 25,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-10%",
        "M DMG-10%"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Vehrn",
        "Zach",
        "Sslen'ck"
    }
}

addItem{
    name = "Copper Breastplate",
    sortId = 161,
    image = "File:Copper Breastplate.png",
    target = "Copper Breastplate",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-20%"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Vehrn",
        "Zach",
        "Sslen'ck"
    }
}

addItem{
    name = "Bonemail",
    sortId = 162,
    image = "File:Bonemail.png",
    target = "Bonemail",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = -100,
        dark = 50,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 100,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Purity"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Vehrn",
        "Zach",
        "Sslen'ck"
    }
}

addItem{
    name = "Trilobite Armour",
    sortId = 163,
    image = "File:Trilobite Armour.png",
    target = "Trilobite Armour",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 110,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Resist WATER"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Vehrn",
        "Zach",
        "Sslen'ck"
    }
}

addItem{
    name = "Breastplate",
    sortId = 164,
    image = "File:Breastplate.png",
    target = "Breastplate",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG Soak 20"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Vehrn",
        "Zach",
        "Sslen'ck"
    }
}

addItem{
    name = "Flamemail",
    sortId = 165,
    image = "File:Flamemail.png",
    target = "Flamemail",
    isPlot = false,
    resistance = {
        fire = 110,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Resist FIRE"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Sslen'ck"
    }
}

addItem{
    name = "Hero's Armour",
    sortId = 166,
    image = "File:Hero's Armour.png",
    target = "Hero's Armour",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek"
    }
}

addItem{
    name = "Rusty Armour",
    sortId = 167,
    image = "File:Rusty Armour.png",
    target = "Rusty Armour",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-20%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Sslen'ck"
    }
}

addItem{
    name = "Bronze Armour",
    sortId = 168,
    image = "File:Bronze Armour.png",
    target = "Bronze Armour",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Morality Block"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Sslen'ck"
    }
}

addItem{
    name = "Iron Armour",
    sortId = 169,
    image = "File:Iron Armour.png",
    target = "Iron Armour",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-30%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Sslen'ck"
    }
}

addItem{
    name = "Solakian Platemail",
    sortId = 170,
    image = "File:Solakian Platemail.png",
    target = "Solakian Platemail",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 50,
        earth = 0,
        light = 50,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 100,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 25,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Morality Block",
        "LIGHT-50%",
        "Purity"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Sslen'ck"
    }
}

addItem{
    name = "Righteous Honour",
    sortId = 171,
    image = "File:Righteous Honour.png",
    target = "Righteous Honour",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 200,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 25,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Lay on Hands",
        "DMG-20%",
        "M DMG-20%",
        "Purity"
    },
    canEquip = {
        "Vehrn"
    }
}

addItem{
    name = "Turquoise Armour",
    sortId = 172,
    image = "File:Turquoise Armour.png",
    target = "Turquoise Armour (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 20,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M DMG-20%",
        "SPR+2"
    },
    canEquip = {
        "Mardek"
    }
}

addItem{
    name = "Mythril Platemail",
    sortId = 173,
    image = "File:Mythril Platemail.png",
    target = "Mythril Platemail",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 20,
        dark = 0,
        aether = 20,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 20,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-30%",
        "DMG Soak 30"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Sslen'ck"
    }
}

addItem{
    name = "Mage Robe",
    sortId = 174,
    image = "File:Mage Robe.png",
    target = "Mage Robe (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M DMG-10%"
    },
    canEquip = {
        "Emela",
        "Donovan",
        "Sharla",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Hempen Robe",
    sortId = 175,
    image = "File:Hempen Robe.png",
    target = "Hempen Robe (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M DMG-20%"
    },
    canEquip = {
        "Emela",
        "Donovan",
        "Sharla",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Green Robe",
    sortId = 176,
    image = "File:Green Robe.png",
    target = "Green Robe",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 50,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M DMG-30%"
    },
    canEquip = {
        "Emela",
        "Donovan",
        "Sharla",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Jasper Robe",
    sortId = 177,
    image = "File:Jasper Robe.png",
    target = "Jasper Robe",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M DMG-20%"
    },
    canEquip = {
        "Donovan",
        "Sharla",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Dark Robe",
    sortId = 178,
    image = "File:Dark Robe.png",
    target = "Dark Robe",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 50,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 100,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Spell Resist: 30%"
    },
    canEquip = {
        "Donovan",
        "Sharla",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Shaman's Vestment",
    sortId = 179,
    image = "File:Shaman's Vestment.png",
    target = "Shaman's Vestment",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 50,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 50,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-10%",
        "M DMG-20%",
        "Nature's Favour"
    },
    canEquip = {
        "Donovan",
        "Sharla",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Inventing Coat",
    sortId = 180,
    image = "File:Inventing Coat.png",
    target = "Inventing Coat",
    isPlot = false,
    resistance = {
        fire = 50,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 100,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-20%"
    },
    canEquip = {
        "Donovan",
        "Sharla",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Yalortian Robe",
    sortId = 181,
    image = "File:Yalortian Robe.png",
    target = "Yalortian Robe (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 50,
        dark = 50,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Purity"
    },
    canEquip = {
        "Donovan",
        "Sharla",
        "Elwyen",
        "Gloria",
        "Meraeador"
    }
}

addItem{
    name = "Copper Plating",
    sortId = 182,
    image = "File:Copper Plating.png",
    target = "Copper Plating",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-10%",
        "HP+10%"
    },
    canEquip = {
        "Legion"
    }
}

addItem{
    name = "Steel Plating",
    sortId = 183,
    image = "File:Steel Plating.png",
    target = "Steel Plating",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-20%",
        "HP+20%"
    },
    canEquip = {
        "Legion"
    }
}

addItem{
    name = "Titan Plating",
    sortId = 184,
    image = "File:Titan Plating.png",
    target = "Titan Plating",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-30%",
        "HP+30%"
    },
    canEquip = {
        "Legion"
    }
}

addItem{
    name = "Dragon Amulet",
    sortId = 185,
    image = "File:Dragon Amulet.png",
    target = "Dragon Amulet",
    isPlot = false,
    resistance = {
        fire = 50,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Nullify Physical",
        "Nullify Magic"
    },
    canEquip = {
        "Mardek",
        "Deugan"
    }
}

addItem{
    name = "Cog Necklace",
    sortId = 186,
    image = "File:Cog Necklace.png",
    target = "Cog Necklace",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 100,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Insomnia"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "SilverPendant",
    sortId = 187,
    image = "File:SilverPendant.png",
    target = "SilverPendant (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 15,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Lapis Lily",
    sortId = 188,
    image = "File:Lapis Lily.png",
    target = "Lapis Lily",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 50,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 50,
        curse = 50,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M. Shield",
        "MP+10%"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Body Crystal",
    sortId = 189,
    image = "File:Body Crystal.png",
    target = "Body Crystal",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 20,
        paralysis = 20,
        numbness = 20,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 20,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "HP+10%"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Mind Crystal",
    sortId = 190,
    image = "File:Mind Crystal.png",
    target = "Mind Crystal",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 20,
        curse = 20,
        confusion = 20,
        sleep = 0,
        blindness = 20,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "MP+10%"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Pickaxe Pendant",
    sortId = 191,
    image = "File:Pickaxe Pendant.png",
    target = "Pickaxe Pendant",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG Soak 10"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Yellow Fairy",
    sortId = 192,
    image = "File:Yellow Fairy.png",
    target = "Yellow Fairy",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Green Fairy",
    sortId = 193,
    image = "File:Green Fairy.png",
    target = "Green Fairy",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Blue Fairy",
    sortId = 194,
    image = "File:Blue Fairy.png",
    target = "Blue Fairy",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Purple Fairy",
    sortId = 195,
    image = "File:Purple Fairy.png",
    target = "Purple Fairy",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Red Fairy",
    sortId = 196,
    image = "File:Red Fairy.png",
    target = "Red Fairy",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Eclipse Amulet",
    sortId = 197,
    image = "File:Eclipse Amulet.png",
    target = "Eclipse Amulet",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 50,
        dark = 50,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Resurrect",
        "Evasion 20%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "FirePendant",
    sortId = 198,
    image = "File:FirePendant.png",
    target = "FirePendant (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 50,
        water = -50,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M FIRE-50%"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "WaterPendant",
    sortId = 199,
    image = "File:WaterPendant.png",
    target = "WaterPendant (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 50,
        air = 0,
        earth = -50,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M WATER-50%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "EarthPendant",
    sortId = 200,
    image = "File:EarthPendant.png",
    target = "EarthPendant (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = -50,
        earth = 50,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M EARTH-50%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "AirPendant",
    sortId = 201,
    image = "File:AirPendant.png",
    target = "AirPendant (MARDEK)",
    isPlot = false,
    resistance = {
        fire = -50,
        water = 0,
        air = 50,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M AIR-50%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "YalortianAmulet",
    sortId = 202,
    image = "File:YalortianAmulet.png",
    target = "YalortianAmulet (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 10,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Green Lightning"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "RingOfSTR",
    sortId = 203,
    image = "File:RingOfSTR.png",
    target = "RingOfSTR (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "RingOfVIT",
    sortId = 204,
    image = "File:RingOfVIT.png",
    target = "RingOfVIT (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "RingOfAGL",
    sortId = 205,
    image = "File:RingOfAGL.png",
    target = "RingOfAGL (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "RingOfSPR",
    sortId = 206,
    image = "File:RingOfSPR.png",
    target = "RingOfSPR (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "RingOfSTR+2",
    sortId = 207,
    image = "File:RingOfSTR+2.png",
    target = "RingOfSTR+2 (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "RingOfVIT+2",
    sortId = 208,
    image = "File:RingOfVIT+2.png",
    target = "RingOfVIT+2 (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "RingOfAGL+2",
    sortId = 209,
    image = "File:RingOfAGL+2.png",
    target = "RingOfAGL+2 (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "RingOfSPR+2",
    sortId = 210,
    image = "File:RingOfSPR+2.png",
    target = "RingOfSPR+2 (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "CopperRing",
    sortId = 211,
    image = "File:CopperRing.png",
    target = "CopperRing (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "SilverRing",
    sortId = 212,
    image = "File:SilverRing.png",
    target = "SilverRing",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-10%"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "GoldRing",
    sortId = 213,
    image = "File:GoldRing.png",
    target = "GoldRing",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-10%"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "OnyxRing",
    sortId = 214,
    image = "File:OnyxRing.png",
    target = "OnyxRing (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 50,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 100,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Bright Eyes"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "MoonstoneRing",
    sortId = 215,
    image = "File:MoonstoneRing.png",
    target = "MoonstoneRing (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 50,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 100,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Shield",
        "Insomnia"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Gauntlet",
    sortId = 216,
    image = "File:Gauntlet.png",
    target = "Gauntlet (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-10%"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Golden Gauntlet",
    sortId = 217,
    image = "File:Golden Gauntlet.png",
    target = "Golden Gauntlet",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "DMG-30%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "GreenBeads",
    sortId = 218,
    image = "File:GreenBeads.png",
    target = "GreenBeads (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 20,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Null Earth Once"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Snakestone",
    sortId = 219,
    image = "File:Snakestone.png",
    target = "Snakestone (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 100,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Remove Taint",
        "Antibody"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Dragonblood Charm",
    sortId = 220,
    image = "File:Dragonblood Charm.png",
    target = "Dragonblood Charm",
    isPlot = false,
    resistance = {
        fire = 20,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 100,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Strength Boost",
        "M FIRE-50%",
        "Suppleness"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "FirestoneRing",
    sortId = 221,
    image = "File:FirestoneRing.png",
    target = "FirestoneRing",
    isPlot = false,
    resistance = {
        fire = 20,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 50,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Null Fire Once (Pyromancy)"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Boots of Celerity",
    sortId = 222,
    image = "File:Boots of Celerity.png",
    target = "Boots of Celerity",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "AGL+2",
        "Agility Boost"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Boots of Speed",
    sortId = 223,
    image = "File:Boots of Speed.png",
    target = "Boots of Speed (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Lapis Beads",
    sortId = 224,
    image = "File:Lapis Beads.png",
    target = "Lapis Beads",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 50,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 50,
        curse = 50,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Evasion 50%"
    },
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Emerald Bangle",
    sortId = 225,
    image = "File:Emerald Bangle.png",
    target = "Emerald Bangle",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 50,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Barkskin",
        "HP+20%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Sapphire Bangle",
    sortId = 226,
    image = "File:Sapphire Bangle.png",
    target = "Sapphire Bangle",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 50,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Null Water Once",
        "MP+20%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "SolakianAmulet",
    sortId = 227,
    image = "File:SolakianAmulet.png",
    target = "SolakianAmulet",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 10,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Bright Eyes"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Amethyst Earring",
    sortId = 228,
    image = "File:Amethyst Earring.png",
    target = "Amethyst Earring",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 100,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Clarity"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Bonestone",
    sortId = 229,
    image = "File:Bonestone.png",
    target = "Bonestone",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 100,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Vim"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Lucky Coin",
    sortId = 230,
    image = "File:Lucky Coin.png",
    target = "Lucky Coin",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Loot Finder Lv.1"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Belt of Movement",
    sortId = 231,
    image = "File:Belt of Movement.png",
    target = "Belt of Movement",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 100,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Locomotion"
    },
    canEquip = {
        "Mardek",
        "Deugan",
        "Emela",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Scarab of Protection",
    sortId = 232,
    image = "File:Scarab of Protection.png",
    target = "Scarab of Protection",
    isPlot = false,
    resistance = {
        fire = 20,
        water = 20,
        air = 20,
        earth = 20,
        light = 10,
        dark = 10,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Scarab of Health",
    sortId = 233,
    image = "File:Scarab of Health.png",
    target = "Scarab of Health",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 10,
        paralysis = 10,
        numbness = 10,
        silence = 10,
        curse = 10,
        confusion = 10,
        sleep = 10,
        blindness = 10,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Scarab of Fury",
    sortId = 234,
    image = "File:Scarab of Fury.png",
    target = "Scarab of Fury",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Kind Star",
    sortId = 235,
    image = "File:Kind Star.png",
    target = "Kind Star",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "SOS Regen"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Rainbow Disc",
    sortId = 236,
    image = "File:Rainbow Disc.png",
    target = "Rainbow Disc",
    isPlot = false,
    resistance = {
        fire = 40,
        water = 40,
        air = 40,
        earth = 40,
        light = 40,
        dark = 40,
        aether = 40,
        fig = 40,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Rainbow Aura Lv.1"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Sorcerer's Soul",
    sortId = 237,
    image = "File:Sorcerer's Soul.png",
    target = "Sorcerer's Soul",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Loquacity"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Warlord's Soul",
    sortId = 238,
    image = "File:Warlord's Soul.png",
    target = "Warlord's Soul",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Suppleness"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "M Charm",
    sortId = 239,
    image = "File:M Charm.png",
    target = "M Charm",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 30,
        dark = 20,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Remove Evil"
    },
    canEquip = {
        "Mardek"
    }
}

addItem{
    name = "Flame Charm",
    sortId = 240,
    image = "File:Flame Charm.png",
    target = "Flame Charm",
    isPlot = false,
    resistance = {
        fire = 30,
        water = 20,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Donovan"
    }
}

addItem{
    name = "Feather Charm",
    sortId = 241,
    image = "File:Feather Charm.png",
    target = "Feather Charm",
    isPlot = false,
    resistance = {
        fire = 20,
        water = 0,
        air = 30,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "M+Stun 20%"
    },
    canEquip = {
        "Sharla"
    }
}

addItem{
    name = "Dragon Charm",
    sortId = 242,
    image = "File:Dragon Charm.png",
    target = "Dragon Charm",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 20,
        earth = 30,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Sslen'ck"
    }
}

addItem{
    name = "Star Charm",
    sortId = 243,
    image = "File:Star Charm.png",
    target = "Star Charm",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 30,
        dark = 20,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Lunatic Howl"
    },
    canEquip = {
        "Solaar"
    }
}

addItem{
    name = "Song Charm",
    sortId = 244,
    image = "File:Song Charm.png",
    target = "Song Charm",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 30,
        air = 0,
        earth = 20,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Elwyen"
    }
}

addItem{
    name = "Leaf Charm",
    sortId = 245,
    image = "File:Leaf Charm.png",
    target = "Leaf Charm",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 20,
        earth = 30,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Cleanse"
    },
    canEquip = {
        "Gloria"
    }
}

addItem{
    name = "Spanner Charm",
    sortId = 246,
    image = "File:Spanner Charm.png",
    target = "Spanner Charm",
    isPlot = false,
    resistance = {
        fire = 30,
        water = 20,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Meraeador"
    }
}

addItem{
    name = "Cog Charm",
    sortId = 247,
    image = "File:Cog Charm.png",
    target = "Cog Charm",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Legion"
    }
}

addItem{
    name = "Bear Charm",
    sortId = 248,
    image = "File:Bear Charm.png",
    target = "Bear Charm",
    isPlot = false,
    resistance = {
        fire = 20,
        water = 0,
        air = 30,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Zach"
    }
}

addItem{
    name = "YALORT Charm",
    sortId = 249,
    image = "File:YALORT Charm.png",
    target = "YALORT Charm",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 30,
        dark = 20,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Emerald Shock"
    },
    canEquip = {
        "Vehrn"
    }
}

addItem{
    name = "TopazEarring",
    sortId = 250,
    image = "File:TopazEarring.png",
    target = "TopazEarring (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Ruby",
    sortId = 251,
    image = "File:Ruby.png",
    target = "Ruby (MARDEK Item)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "STR+2"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Emerald",
    sortId = 252,
    image = "File:Emerald.png",
    target = "Emerald (MARDEK Item)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "VIT+2"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Sapphire",
    sortId = 253,
    image = "File:Sapphire.png",
    target = "Sapphire (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "SPR+2"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Moonstone",
    sortId = 254,
    image = "File:Moonstone.png",
    target = "Moonstone (MARDEK Item)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 10,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Regen",
        "Insomnia"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Onyx",
    sortId = 255,
    image = "File:Onyx.png",
    target = "Onyx (MARDEK Item)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 10,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Degeneration 10%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "BloodOpal",
    sortId = 256,
    image = "File:BloodOpal.png",
    target = "BloodOpal (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 50
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Drain HP 10%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Turquoise",
    sortId = 257,
    image = "File:Turquoise.png",
    target = "Turquoise (MARDEK Item)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 10,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 10,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Spirit Graft",
        "Resist AETHER"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "FireOpal",
    sortId = 258,
    image = "File:FireOpal.png",
    target = "FireOpal (MARDEK Item)",
    isPlot = false,
    resistance = {
        fire = 10,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 10,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Wildfire",
        "STR+1"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Aquamarine",
    sortId = 259,
    image = "File:Aquamarine.png",
    target = "Aquamarine (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 10,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 10,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Whirlpool",
        "SPR+1"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Jade",
    sortId = 260,
    image = "File:Jade.png",
    target = "Jade (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 10,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 10,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Razor Leaf",
        "VIT+1"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Topaz",
    sortId = 261,
    image = "File:Topaz.png",
    target = "Topaz (MARDEK Item)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 10,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 10,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Amethyst",
    sortId = 262,
    image = "File:Amethyst.png",
    target = "Amethyst (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 30,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Clarity"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Viper's Eye",
    sortId = 263,
    image = "File:Viper's Eye.png",
    target = "Viper's Eye (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 30,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Antibody"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Candriathope",
    sortId = 264,
    image = "File:Candriathope.png",
    target = "Candriathope (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "EXP+20%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Wispstone",
    sortId = 265,
    image = "File:Wispstone.png",
    target = "Wispstone (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 10,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 10,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Quarry: SPIRIT"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "EveningStar",
    sortId = 266,
    image = "File:EveningStar.png",
    target = "EveningStar (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 10,
        paralysis = 10,
        numbness = 10,
        silence = 10,
        curse = 10,
        confusion = 10,
        sleep = 10,
        blindness = 10,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Double AP"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "SoulStone",
    sortId = 267,
    image = "File:SoulStone.png",
    target = "SoulStone (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {
        "Astral Form",
        "MP+20%"
    },
    canEquip = {
        "Mardek",
        "Vehrn",
        "Zach",
        "Donovan",
        "Sharla",
        "Sslen'ck",
        "Solaar",
        "Elwyen",
        "Gloria",
        "Meraeador",
        "Legion"
    }
}

addItem{
    name = "Potion",
    sortId = 268,
    image = "File:Potion.png",
    target = "Potion (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "BetterPotion",
    sortId = 269,
    image = "File:BetterPotion.png",
    target = "BetterPotion",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "MugwortJuice",
    sortId = 270,
    image = "File:MugwortJuice.png",
    target = "MugwortJuice (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "FigJuice",
    sortId = 271,
    image = "File:FigJuice.png",
    target = "FigJuice (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Chocolate Milk",
    sortId = 272,
    image = "File:Chocolate Milk.png",
    target = "Chocolate Milk",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "God Piss",
    sortId = 273,
    image = "File:God Piss.png",
    target = "God Piss",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Manaberry",
    sortId = 274,
    image = "File:Manaberry.png",
    target = "Manaberry (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Ether",
    sortId = 275,
    image = "File:Ether.png",
    target = "Ether (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Ether of Queens",
    sortId = 276,
    image = "File:Ether of Queens.png",
    target = "Ether of Queens",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Ether of Kings",
    sortId = 277,
    image = "File:Ether of Kings.png",
    target = "Ether of Kings",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Antidote",
    sortId = 278,
    image = "File:Antidote.png",
    target = "Antidote (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "LiquidLight",
    sortId = 279,
    image = "File:LiquidLight.png",
    target = "LiquidLight (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "LiquidSound",
    sortId = 280,
    image = "File:LiquidSound.png",
    target = "LiquidSound (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "MotionPotion",
    sortId = 281,
    image = "File:MotionPotion.png",
    target = "MotionPotion (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "HolyWater",
    sortId = 282,
    image = "File:HolyWater.png",
    target = "HolyWater (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "BalloonJuice",
    sortId = 283,
    image = "File:BalloonJuice.png",
    target = "BalloonJuice",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Remedy",
    sortId = 284,
    image = "File:Remedy.png",
    target = "Remedy (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "PhoenixDown",
    sortId = 285,
    image = "File:PhoenixDown.png",
    target = "PhoenixDown (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "PhoenixPinion",
    sortId = 286,
    image = "File:PhoenixPinion.png",
    target = "PhoenixPinion",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Elixir",
    sortId = 287,
    image = "File:Elixir.png",
    target = "Elixir",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Mirrilixir",
    sortId = 288,
    image = "File:Mirrilixir.png",
    target = "Mirrilixir",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Speedy Juice",
    sortId = 289,
    image = "File:Speedy Juice.png",
    target = "Speedy Juice",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Healthy Juice",
    sortId = 290,
    image = "File:Healthy Juice.png",
    target = "Healthy Juice",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Angry Juice",
    sortId = 291,
    image = "File:Angry Juice.png",
    target = "Angry Juice",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Alchemist's Fire",
    sortId = 292,
    image = "File:Alchemist's Fire.png",
    target = "Alchemist's Fire",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Really Cold Water",
    sortId = 293,
    image = "File:Really Cold Water.png",
    target = "Really Cold Water",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Liquid Lightning",
    sortId = 294,
    image = "File:Liquid Lightning.png",
    target = "Liquid Lightning",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Bottle O' Acid",
    sortId = 295,
    image = "File:Bottle O' Acid.png",
    target = "Bottle O' Acid",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Noxious Bomb",
    sortId = 296,
    image = "File:Noxious Bomb.png",
    target = "Noxious Bomb",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Oxyale",
    sortId = 297,
    image = "File:Oxyale.png",
    target = "Oxyale",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Potted Cactus",
    sortId = 298,
    image = "File:Potted Cactus.png",
    target = "Potted Cactus",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Rainbow Juice",
    sortId = 299,
    image = "File:Rainbow Juice.png",
    target = "Rainbow Juice",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Power Drink",
    sortId = 300,
    image = "File:Power Drink.png",
    target = "Power Drink",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Magic Drink",
    sortId = 301,
    image = "File:Magic Drink.png",
    target = "Magic Drink",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Zombie Juice",
    sortId = 302,
    image = "File:Zombie Juice.png",
    target = "Zombie Juice",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "LeadPipe",
    sortId = 303,
    image = "File:LeadPipe.png",
    target = "LeadPipe",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Fire Essence",
    sortId = 304,
    image = "File:Fire Essence.png",
    target = "Fire Essence (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Water Essence",
    sortId = 305,
    image = "File:Water Essence.png",
    target = "Water Essence (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Air Essence",
    sortId = 306,
    image = "File:Air Essence.png",
    target = "Air Essence (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Earth Essence",
    sortId = 307,
    image = "File:Earth Essence.png",
    target = "Earth Essence (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Light Essence",
    sortId = 308,
    image = "File:Light Essence.png",
    target = "Light Essence",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dark Essence",
    sortId = 309,
    image = "File:Dark Essence.png",
    target = "Dark Essence (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Aether Essence",
    sortId = 310,
    image = "File:Aether Essence.png",
    target = "Aether Essence",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Fig Essence",
    sortId = 311,
    image = "File:Fig Essence.png",
    target = "Fig Essence",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Monster Fang",
    sortId = 312,
    image = "File:Monster Fang.png",
    target = "Monster Fang",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Fish Scales",
    sortId = 313,
    image = "File:Fish Scales.png",
    target = "Fish Scales",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Goblin Earwax",
    sortId = 314,
    image = "File:Goblin Earwax.png",
    target = "Goblin Earwax",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Poison Stinger",
    sortId = 315,
    image = "File:Poison Stinger.png",
    target = "Poison Stinger",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Ectoplasm",
    sortId = 316,
    image = "File:Ectoplasm.png",
    target = "Ectoplasm",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Bat Wing",
    sortId = 317,
    image = "File:Bat Wing.png",
    target = "Bat Wing",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Sturdy Drill",
    sortId = 318,
    image = "File:Sturdy Drill.png",
    target = "Sturdy Drill",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Mantid Wing",
    sortId = 319,
    image = "File:Mantid Wing.png",
    target = "Mantid Wing",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Phage Crystal",
    sortId = 320,
    image = "File:Phage Crystal.png",
    target = "Phage Crystal",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Zombie Dust",
    sortId = 321,
    image = "File:Zombie Dust.png",
    target = "Zombie Dust",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Old Bone",
    sortId = 322,
    image = "File:Old Bone.png",
    target = "Old Bone",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Human Skull",
    sortId = 323,
    image = "File:Human Skull.png",
    target = "Human Skull",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Slime Jam",
    sortId = 324,
    image = "File:Slime Jam.png",
    target = "Slime Jam (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Lizard Tail",
    sortId = 325,
    image = "File:Lizard Tail.png",
    target = "Lizard Tail",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Big Creepy Eye",
    sortId = 326,
    image = "File:Big Creepy Eye.png",
    target = "Big Creepy Eye",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Pixie Dust",
    sortId = 327,
    image = "File:Pixie Dust.png",
    target = "Pixie Dust",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Acid Seed",
    sortId = 328,
    image = "File:Acid Seed.png",
    target = "Acid Seed (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Crystal Tears",
    sortId = 329,
    image = "File:Crystal Tears.png",
    target = "Crystal Tears (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Golden Conch",
    sortId = 330,
    image = "File:Golden Conch.png",
    target = "Golden Conch",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Griffin Feather",
    sortId = 331,
    image = "File:Griffin Feather.png",
    target = "Griffin Feather (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Leaf of Life",
    sortId = 332,
    image = "File:Leaf of Life.png",
    target = "Leaf of Life (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "M Runestone",
    sortId = 333,
    image = "File:M Runestone.png",
    target = "M Runestone (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "P Runestone",
    sortId = 334,
    image = "File:P Runestone.png",
    target = "P Runestone (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "O Runestone",
    sortId = 335,
    image = "File:O Runestone.png",
    target = "O Runestone",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Nightcap",
    sortId = 336,
    image = "File:Nightcap.png",
    target = "Nightcap (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Purple Conch",
    sortId = 337,
    image = "File:Purple Conch.png",
    target = "Purple Conch",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Drak Fang",
    sortId = 338,
    image = "File:Drak Fang.png",
    target = "Drak Fang (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dead Hand",
    sortId = 339,
    image = "File:Dead Hand.png",
    target = "Dead Hand",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Mugwort",
    sortId = 340,
    image = "File:Mugwort.png",
    target = "Mugwort (MARDEK)",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Bitterleaf",
    sortId = 341,
    image = "File:Bitterleaf.png",
    target = "Bitterleaf",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Silver Ore",
    sortId = 342,
    image = "File:Silver Ore.png",
    target = "Silver Ore",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Gold Ore",
    sortId = 343,
    image = "File:Gold Ore.png",
    target = "Gold Ore",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Mythril Ore",
    sortId = 344,
    image = "File:Mythril Ore.png",
    target = "Mythril Ore",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Warp Stone",
    sortId = 345,
    image = "File:Warp Stone.png",
    target = "Warp Stone",
    isPlot = false,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "SewerKey",
    sortId = 346,
    image = "File:SewerKey.png",
    target = "SewerKey",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "CatacombsKey",
    sortId = 347,
    image = "File:CatacombsKey.png",
    target = "CatacombsKey (MARDEK)",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Trilobite Key I",
    sortId = 348,
    image = "File:Trilobite Key I.png",
    target = "Trilobite Key I",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Trilobite Key II",
    sortId = 349,
    image = "File:Trilobite Key II.png",
    target = "Trilobite Key II",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Trilobite Key III",
    sortId = 350,
    image = "File:Trilobite Key III.png",
    target = "Trilobite Key III",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Trilobite Key IV",
    sortId = 351,
    image = "File:Trilobite Key IV.png",
    target = "Trilobite Key IV",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Sun Key",
    sortId = 352,
    image = "File:Sun Key.png",
    target = "Sun Key",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Necromantic Tome",
    sortId = 353,
    image = "File:Necromantic Tome.png",
    target = "Necromantic Tome",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Fire Crystal of Belfan",
    sortId = 354,
    image = "File:Fire Crystal of Belfan.png",
    target = "Fire Crystal of Belfan",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Water Crystal of Belfan",
    sortId = 355,
    image = "File:Water Crystal of Belfan.png",
    target = "Water Crystal of Belfan",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Earth Crystal of Belfan",
    sortId = 356,
    image = "File:Earth Crystal of Belfan.png",
    target = "Earth Crystal of Belfan",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Serpent Crest",
    sortId = 357,
    image = "File:Serpent Crest.png",
    target = "Serpent Crest",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Crystal Rose",
    sortId = 358,
    image = "File:Crystal Rose.png",
    target = "Crystal Rose",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Wretched Skull",
    sortId = 359,
    image = "File:Wretched Skull.png",
    target = "Wretched Skull",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Silver Cord",
    sortId = 360,
    image = "File:Silver Cord.png",
    target = "Silver Cord",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Monastery Stone",
    sortId = 361,
    image = "File:Monastery Stone.png",
    target = "Monastery Stone",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Runestone Fragment",
    sortId = 362,
    image = "File:Runestone Fragment.png",
    target = "Runestone Fragment",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Warding Stone",
    sortId = 363,
    image = "File:Warding Stone.png",
    target = "Warding Stone",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Gizmometer",
    sortId = 364,
    image = "File:Gizmometer.png",
    target = "Gizmometer",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Warport Ticket",
    sortId = 365,
    image = "File:Warport Ticket.png",
    target = "Warport Ticket",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Gold Warport Pass",
    sortId = 366,
    image = "File:Gold Warport Pass.png",
    target = "Gold Warport Pass",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Bandit Key",
    sortId = 367,
    image = "File:Bandit Key.png",
    target = "Bandit Key",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Eldritch Key",
    sortId = 368,
    image = "File:Eldritch Key.png",
    target = "Eldritch Key",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Water Temple Key",
    sortId = 369,
    image = "File:Water Temple Key.png",
    target = "Water Temple Key",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Talisman of ONEIROS",
    sortId = 370,
    image = "File:Talisman of ONEIROS.png",
    target = "Talisman of ONEIROS",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Miasmal Chalice (DARK)",
    sortId = 371,
    image = "File:Miasmal Chalice (DARK).png",
    target = "Miasmal Chalice (DARK)",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Miasmal Chalice (WATER)",
    sortId = 372,
    image = "File:Miasmal Chalice (WATER).png",
    target = "Miasmal Chalice (WATER)",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Miasmal Chalice (FIRE)",
    sortId = 373,
    image = "File:Miasmal Chalice (FIRE).png",
    target = "Miasmal Chalice (FIRE)",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Miasmal Chalice (EARTH)",
    sortId = 374,
    image = "File:Miasmal Chalice (EARTH).png",
    target = "Miasmal Chalice (EARTH)",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Sun Idol",
    sortId = 375,
    image = "File:Sun Idol.png",
    target = "Sun Idol",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Reptoid Spearhead",
    sortId = 376,
    image = "File:Reptoid Spearhead.png",
    target = "Reptoid Spearhead",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Talisman of SHUMBRA",
    sortId = 377,
    image = "File:Talisman of SHUMBRA.png",
    target = "Talisman of SHUMBRA",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Talisman of CRYSOOSUNA",
    sortId = 378,
    image = "File:Talisman of CRYSOOSUNA.png",
    target = "Talisman of CRYSOOSUNA",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Talisman of VOLKOS",
    sortId = 379,
    image = "File:Talisman of VOLKOS.png",
    target = "Talisman of VOLKOS",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Talisman of KROGHMM",
    sortId = 380,
    image = "File:Talisman of KROGHMM.png",
    target = "Talisman of KROGHMM",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Ancient Pot",
    sortId = 381,
    image = "File:Ancient Pot.png",
    target = "Ancient Pot",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Tiki Mask",
    sortId = 382,
    image = "File:Tiki Mask.png",
    target = "Tiki Mask",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Droma Arm",
    sortId = 383,
    image = "File:Droma Arm.png",
    target = "Droma Arm",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Ancient Runestone",
    sortId = 384,
    image = "File:Ancient Runestone.png",
    target = "Ancient Runestone",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Sand Fruit",
    sortId = 385,
    image = "File:Sand Fruit.png",
    target = "Sand Fruit",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Special Ointment",
    sortId = 386,
    image = "File:Special Ointment.png",
    target = "Special Ointment",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Hair Tonic",
    sortId = 387,
    image = "File:Hair Tonic.png",
    target = "Hair Tonic",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Romance Novel",
    sortId = 388,
    image = "File:Romance Novel.png",
    target = "Romance Novel",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Scrumptious Cake",
    sortId = 389,
    image = "File:Scrumptious Cake.png",
    target = "Scrumptious Cake",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Little Wooden Key",
    sortId = 390,
    image = "File:Little Wooden Key.png",
    target = "Little Wooden Key",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Red Dragon Scales",
    sortId = 391,
    image = "File:Red Dragon Scales.png",
    target = "Red Dragon Scales",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Moric's Soul Jewel",
    sortId = 392,
    image = "File:Moric's Soul Jewel.png",
    target = "Moric's Soul Jewel",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Qualna's Soul Jewel",
    sortId = 393,
    image = "File:Qualna's Soul Jewel.png",
    target = "Qualna's Soul Jewel",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #1",
    sortId = 394,
    image = "File:Dreamstone.png",
    target = "Dreamstone/1",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #2",
    sortId = 395,
    image = "File:Dreamstone.png",
    target = "Dreamstone/2",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #3",
    sortId = 396,
    image = "File:Dreamstone.png",
    target = "Dreamstone/3",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #4",
    sortId = 397,
    image = "File:Dreamstone.png",
    target = "Dreamstone/4",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #5",
    sortId = 398,
    image = "File:Dreamstone.png",
    target = "Dreamstone/5",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #6",
    sortId = 399,
    image = "File:Dreamstone.png",
    target = "Dreamstone/6",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #7",
    sortId = 400,
    image = "File:Dreamstone.png",
    target = "Dreamstone/7",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #8",
    sortId = 401,
    image = "File:Dreamstone.png",
    target = "Dreamstone/8",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #9",
    sortId = 402,
    image = "File:Dreamstone.png",
    target = "Dreamstone/9",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #10",
    sortId = 403,
    image = "File:Dreamstone.png",
    target = "Dreamstone/10",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #11",
    sortId = 404,
    image = "File:Dreamstone.png",
    target = "Dreamstone/11",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #12",
    sortId = 405,
    image = "File:Dreamstone.png",
    target = "Dreamstone/12",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #13",
    sortId = 406,
    image = "File:Dreamstone.png",
    target = "Dreamstone/13",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #14",
    sortId = 407,
    image = "File:Dreamstone.png",
    target = "Dreamstone/14",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #15",
    sortId = 408,
    image = "File:Dreamstone.png",
    target = "Dreamstone/15",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #16",
    sortId = 409,
    image = "File:Dreamstone.png",
    target = "Dreamstone/16",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

addItem{
    name = "Dreamstone #17",
    sortId = 410,
    image = "File:Dreamstone.png",
    target = "Dreamstone/17",
    isPlot = true,
    resistance = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0,
        poison = 0,
        paralysis = 0,
        numbness = 0,
        silence = 0,
        curse = 0,
        confusion = 0,
        sleep = 0,
        blindness = 0,
        zombie = 0,
        bleed = 0
    },
    empowerment = {
        fire = 0,
        water = 0,
        air = 0,
        earth = 0,
        light = 0,
        dark = 0,
        aether = 0,
        fig = 0,
        physical = 0,
        thauma = 0
    },
    properties = {
        str = 0,
        vit = 0,
        spr = 0,
        agl = 0,
        atk = 0,
        def = 0,
        mdef = 0,
        eva = 0,
        critical = 0,
        hp = 0,
        mp = 0
    },
    skills = {},
    canEquip = {}
}

return items

-- </nowiki>
-- [[Category:Lua Modules]]
Advertisement