Module:Items/data

From Predecessor Wiki
Jump to navigation Jump to search
Template-info.svg Documentation

Notes

Removed items

  • If an item has been removed, add the item to the bottom of the data and write in the "removed" field with the patch as a value.

Statistics

  • Statistic fields with percentage symbols next to them within the key should still be written as integers. The percent symbol will be automatically added to them.

Readability

  • Fields and tables should be omitted for readability purposes if unused or blank, see examples:
    • If an item has no passives or active, the effects table can be removed entirely. The same can be said when there is either no passive, passive2 or active table; any of those 3 can be removed if they aren't used.
    • Any fields under the stats table that have the value of 0 can be omitted, or the stats table itself if there are none associated with that item.
    • The buildsinto and recipe tables can be omitted if they aren't used.

Writing effect descriptions

  • Start each effect point with the symbol, and adding <br> at the end of each line.
  • Use the {{c}}/{{Color}} template for creating a similar look to the ingame descriptions with preset colors. Stat icons (such as health, damage, etc.) should be ignored when writing descriptions.
  • Any mentions of items should be written with the {{i}}/{{Item icon}} template.
  • Use the {{Gold}}/{{g}} template to implement formatted Gold values.
    • {{g}} will produce Icon Gold.png Gold.
    • {{g|100}} will produce Icon Gold.png 100.

1                    - string        -- Display name (the item page should match this name)
    id                      - integer      -- ID (not needed currently, leave at 0)
    image                   - string       -- File name (e.g. "Omen.png")
    removed                 - string       -- The patch in which the item was removed (ONLY for removed items) (e.g. "V0.18)
    buy                     - integer      -- Price in gold
    class                   - string       -- Carry/Mage/Support/Tank/Fighter/Assassin
    slot                    - string       -- Trinket/Crest/Active
    tier                    - integer      -- 1/2/3
    type                    - string       -- Consumable/Starter
    benefit                 - string       -- e.g. Mobility/Reduced Cooldowns/Anti Heal
    requiredlevel           - integer      -- Only for potions
    effects                 - table        -- Table of passives and actives
        passive                - table        -- Accepts "passive2" and "passive3"
            name                 - string       -- Effect name
            condition            - string       -- Effect condition (optional) (appears next to name/cooldown in grey)
            cooldown             - string       -- Effect cooldown (optional) (e.g. "1.5s")
            description          - string       -- Effect description
        active                 - table        -- Uses the same parameters as passives
    stats                   - table        -- Table of stats
    	abilityhaste           - integer      -- 
    	attackspeed            - integer      -- (%)
    	criticalchance         - integer      -- (%)
    	goldpersecond          - integer      -- 
    	healshieldincrease     - integer      -- 
    	healthregeneration     - integer      -- (%)
    	lifesteal              - integer      -- (%)
    	magicalarmor           - integer      -- 
    	magicallifesteal       - integer      -- (%)
    	magicalpenetration     - integer      -- 
    	magicalpower           - integer      -- 
    	manaregeneration       - integer      -- (%)
    	maxhealth              - integer      -- 
    	maxmana                - integer      -- 
    	movementspeed          - integer      -- 
    	omnivamp               - integer      -- (%)
    	physicalarmor          - integer      -- 
    	physicalpenetration    - integer      -- 
        physicalpower          - integer      -- 
    	tenacity               - integer      -- (%)
    buildsinto              - table        -- Table of item names
    recipe                  - table        -- Table of item names
    recommendedfor          - table        -- Table of hero names 

	[""] = {
		["id"] = 0,
		["image"] = "",
		["buy"] = 0,
		["tier"] = 0,
		["class"] = "",
		["slot"] = "",
		["type"] = "",
		["benefit"] = "",
		["requiredlevel"] = 0,
		["effects"] = {
			["passive"] = {
				["name"] = "",
				["condition"] = "",
				["cooldown"] = "",
				["description"] = "",
			},
			["passive2"] = {
				["name"] = "",
				["condition"] = "",
				["cooldown"] = "",
				["description"] = "",
			},
			["active"] = {
				["name"] = "",
				["condition"] = "",
				["cooldown"] = "",
				["description"] = "",
			},
		},
		["stats"] = {
			["abilityhaste"] = 0, 
			["attackspeed"] = 0,
			["criticalchance"] = 0,
			["goldpersecond"] = 0,
			["healshieldincrease"] = 0,
			["healthregeneration"] = 0,
			["lifesteal"] = 0,
			["magicalarmor"] = 0,
			["magicallifesteal"] = 0,
			["magicalpenetration"] = 0,
			["magicalpower"] = 0,
			["manaregeneration"] = 0,
			["maxhealth"] = 0,
			["maxmana"] = 0,
			["movementspeed"] = 0,
			["omnivamp"] = 0,
			["physicalarmor"] = 0,
			["physicalpenetration"] = 0,
			["physicalpower"] = 0,
			["tenacity"] = 0,
		},
		["buildsinto"] = {""},
		["recipe"] = {""},
		["recommendedfor"] = {""},
	},


return {
--------------------------------------------------------------------------------
-- Crests
--------------------------------------------------------------------------------
	["Consort Crest"] = {
		["id"] = 0,
		["class"] = "Support",
		["slot"] = "Crest",
		["type"] = "Starter",
		["tier"] = 1,
		["image"] = "Consort_Crest.png",
		["effects"] = {
			["passive"] = {
				["name"] = "Consort",
				["description"] = "• Deal {{c|md|10 Damage}} and gain {{g|20}}.<br>• Charges generate every {{c|td|30s}} and require a nearby Allied Hero to activate.<br>• Holds {{c|td|3}} Charges.<br>• After gaining {{g|240}}, evolves into {{c|Passive|Keeper Crest}}.",
				["condition"] = "On any damage instance towards an Enemy",
				
			},
			["passive2"] = {
				["name"] = "Pacifist",
				["description"] = "• Receive diminishing {{g}} from Minion kills.",
			},
		},
		["stats"] = {
			["goldpersecond"] = 0.2,
			["maxhealth"] = 40,
			["manaregeneration"] = 25,
		},
		["buildsinto"] = {"Keeper Crest"},
	},
	["Guardian Crest"] = {
		["id"] = 0,
		["image"] = "Guardian Crest.png",
		["class"] = "Support",
		["slot"] = "Crest",
		["tier"] = 1,
		["type"] = "Starter",
		["effects"] = {
			["passive"] = {
				["name"] = "Guardian",
				["description"] = "• Restore {{c|h|20 Health}} and gain{{g|20}}.<br>• Charges generate every {{c|td|30s}} and require a nearby Allied Hero to activate.<br>• Holds {{c|td|3}} Charges.<br>• After gaining {{g|240}}, evolves into {{c|Passive|Warden Crest}}.",
				["condition"] = "On any damage instance towards an Enemy",
			},
			["passive2"] = {
				["name"] = "Pacifist",
				["description"] = "• Receive diminishing {{g}} from Minion kills.",
			},
		},
		["stats"] = {
			["goldpersecond"] = 0.2,
			["healthregeneration"] = 20,
			["maxhealth"] = 40,
		},
		["buildsinto"] = {"Warden Crest"},
	},
	["Magician Crest"] = {
		["id"] = 0,
		["image"] = "Magician Crest.png",
		["buy"] = 0,
		["class"] = "Mage",
		["slot"] = "Crest",
		["type"] = "Starter",
		["tier"] = 1,
		["effects"] = {
			["passive"] = {
				["name"] = "Magician",
				["description"] = "• {{c|m|Restore 4 Mana}} ({{c|m|5}} for Kills).<br>• After restoring {{c|m|300 Mana}}<br>• {{c|td|Evolve}} into {{c|Passive|Wizard Crest}}.",
				["condition"] = "On Ability Hits to Heroes or Monsters and Killing Units",
			},
		},
		["stats"] = {
			["abilityhaste"] = 4, 
			["magicalpower"] = 8,
			["maxmana"] = 80,
		},
		["buildsinto"] = {"Wizard Crest"},
	},
	["Marksman Crest"] = {
		["id"] = 0,
		["image"] = "Marksman Crest.png",
		["buy"] = 0,
		["class"] = "Sharpshooter",
		["slot"] = "Crest",
		["tier"] = 1,
		["type"] = "Starter",
		["effects"] = {
			["passive"] = {
				["name"] = "Marksman",
				["description"] = "• {{c|h|Restore 1 Health}} ({{c|h|3}} for Kills).<br>• After restoring {{c|h|150 Health}}<br>• {{c|td|Evolves}} into {{c|Passive|Sharpshooter Crest}}.",
				["condition"] = "On Successful Basic Attacks to Heroes and Monsters or Unit Kills",
			},
		},
		["stats"] = {
			["attackspeed"] = 5,
			["lifesteal"] = 3,
			["physicalpower"] = 3,
		},
		["buildsinto"] = {"Sharpshooter Crest"},
	},
	["Occult Crest"] = {
		["id"] = 0,
		["image"] = "Occult Crest.png",
		["buy"] = 0,
		["class"] = "Mage",
		["slot"] = "Crest",
		["tier"] = 1,
		["type"] = "Starter",
		["effects"] = {
			["passive"] = {
				["name"] = "Occultist",
				["description"] = "• {{c|h|Restore 3 Health}} ({{c|h|4}} for Kills).<br>• After restoring {{c|h|200 Health}}<br>• {{c|td|Evolves}} into {{c|Passive|Warlock Crest}}.",
				["condition"] = "On dealing Ability Damage to Heroes or Monsters and Unit Kills",
				
			},
		},
		["stats"] = {
			["abilityhaste"] = 4, 
			["magicalpower"] = 8,
			["maxhealth"] = 50,
		},
		["buildsinto"] = {"Warlock Crest"},
	},
	["Rogue Crest"] = {
		["id"] = 0,
		["image"] = "Rogue Crest.png",
		["buy"] = 0,
		["class"] = "Assassin",
		["slot"] = "Crest",
		["tier"] = 1,
		["type"] = "Starter",
		["effects"] = {
			["passive"] = {
				["name"] = "Rogue",
				["description"] = "• {{c|h|Restore 3 Health}} ({{c|h|4}} for Kills).<br>• After restoring {{c|h|200 Health}}<br>• {{c|td|Evolves}} into {{c|Passive|Assassin Crest}}.",
				["condition"] = "On Ability Hits to Heroes or Monsters and Unit Kills",
			},
		},
		["stats"] = {
			["abilityhaste"] = 4, 
			["physicalpenetration"] = 2,
			["physicalpower"] = 3,
		},
		["buildsinto"] = {"Assassin Crest"},
	},
	["Titan Crest"] = {
		["id"] = 0,
		["image"] = "Titan Crest.png",
		["buy"] = 0,
		["class"] = "Tank",
		["slot"] = "Crest",
		["tier"] = 1,
		["type"] = "Starter",
		["effects"] = {
			["passive"] = {
				["name"] = "Titan",
				["description"] = "• {{c|h|Heal (+1%{{Icon|maxhealth2}})}} over {{c|h|10s}}.<br>• After restoring {{c|h|300 Health}}<br>• {{c|td|Evolves}} into {{c|Passive|Goliath Crest}}.",
				["condition"] = "After taking damage",
			},
		},
		["stats"] = {
			["magicalarmor"] = 2,
			["maxhealth"] = 60,
			["physicalarmor"] = 4,
		},
		["buildsinto"] = {"Goliath Crest"},
	},
	["Warrior Crest"] = {
		["id"] = 0,
		["image"] = "Warrior Crest.png",
		["buy"] = 0,
		["class"] = "Fighter",
		["slot"] = "Crest",
		["tier"] = 1,
		["type"] = "Starter",
		["effects"] = {
			["passive"] = {
				["name"] = "Warrior",
				["description"] = "• {{c|h|Restore}} {{c|pd|(+8%{{Icon|physicalpower2}})}} {{c|h|Health}} over {{c|h|10s}}.<br>• After restoring {{c|h|200 Health}}:<br>• {{c|td|Evolves}} into {{c|Passive|Champion Crest}}.",
				["condition"] = "On damaging Heroes or Monsters and Unit Kills",
				
			},
		},
		["stats"] = {
			["maxhealth"] = 75,
			["omnivamp"] = 3,
			["physicalpower"] = 8,
		},
		["buildsinto"] = {"Champion Crest"},
	},
	["Keeper Crest"] = {
		["id"] = 0,
		["image"] = "Keeper Crest.png",
		["buy"] = 0,
		["class"] = "Support",
		["slot"] = "Crest",
		["tier"] = 2,
		["effects"] = {
			["passive"] = {
				["name"] = "Legendary Consort",
				["condition"] = "On any damage instance towards an Enemy",
				
				["description"] = "• Deal {{c|md|15 Damage}} and gain {{g|20}}.<br>• Charges generate every {{c|td|30s}} and require a nearby Allied Hero to activate.<br>• Holds {{c|td|3}} Charges.<br>• After gaining {{g|240}}:<br>• Enter Base to {{c|td|Evolve}} into a {{c|Passive|Legendary Crest}}.",
			},
			["passive2"] = {
				["name"] = "Pacifist",
				["description"] = "• Receive diminishing {{g}} from Minion kills.",
			},
		},
		["stats"] = {
			["goldpersecond"] = 0.3,
			["maxhealth"] = 80,
			["manaregeneration"] = 35,
		},
		["buildsinto"] = {"Reclamation", "Silentium", "Tranquility"},
		["recipe"] = {"Consort Crest"},
	},
	["Warden Crest"] = {
		["id"] = 0,
		["image"] = "Warden Crest.png",
		["buy"] = 0,
		["class"] = "Support",
		["slot"] = "Crest",
		["tier"] = 2,
		["effects"] = {
			["passive"] = {
				["name"] = "Legendary Guardian",
				["condition"] = "On any damage instance towards an Enemy",
				["description"] = "• Restore {{c|h|30 Health}} and gain {{g|20}}.<br>• Charges generate every {{c|td|30s}} and require a nearby Allied Hero to activate.<br>• Holds {{c|td|3}} Charges.<br>• After gaining {{g|240}}:<br>• Enter Base to {{c|td|Evolve}} into a {{c|Passive|Legendary Crest}}.",
			},
			["passive2"] = {
				["name"] = "Pacifist",
				["description"] = "• Receive diminishing {{g}} from Minion kills.",
			},
		},
		["stats"] = {
			["goldpersecond"] = 0.3,
			["healthregeneration"] = 30,
			["maxhealth"] = 80,
		},
		["buildsinto"] = {"Sanctification", "Rift Walkers", "Leafsong"},
		["recipe"] = {"Guardian Crest"},
	},
	["Wizard Crest"] = {
		["id"] = 0,
		["image"] = "Wizard Crest.png",
		["buy"] = 0,
		["class"] = "Mage",
		["slot"] = "Crest",
		["tier"] = 2,
		["effects"] = {
			["passive"] = {
				["name"] = "Legendary Magician",
				["description"] = "• {{c|m|Restore 4 Mana}} ({{c|m|5}} for Kills).<br>• After restoring {{c|m|300 Mana}}:<br>• Enter Base to {{c|td|Evolve}} into {{c|Passive|Legendary Crest}}.",
				["condition"] = "On Ability Hits to Heroes or Monsters and Killing Units",
			},
		},
		["stats"] = {
			["abilityhaste"] = 6, 
			["magicalpower"] = 12,
			["maxmana"] = 125,
		},
		["buildsinto"] = {"Time-Flux Band", "Soulbearer", "Epoch"},
		["recipe"] = {"Magician Crest"},
	},
	["Sharpshooter Crest"] = {
		["id"] = 0,
		["image"] = "Sharpshooter Crest.png",
		["buy"] = 0,
		["class"] = "Sharpshooter",
		["slot"] = "Crest",
		["tier"] = 2,
		["effects"] = {
			["passive"] = {
				["name"] = "Legendary Marksman",
				["description"] = "• {{c|h|Restore 1 Health}} ({{c|h|3}} for Kills).<br>• After restoring {{c|h|150 Health}}:<br>• Enter Base to {{c|td|Evolve}} into a {{c|Passive|Legendary Crest}}.",
				["condition"] = "On Successful Basic Attacks to Heroes and Monsters or Unit Kills",
			},
		},
		["stats"] = {
			["attackspeed"] = 10,
			["lifesteal"] = 5,
			["physicalpower"] = 5,
		},
		["buildsinto"] = {"Pacifier", "Liberator", "Eviscerator"},
		["recipe"] = {"Marksman Crest"},
	},
	["Warlock Crest"] = {
		["id"] = 0,
		["image"] = "Warlock Crest.png",
		["buy"] = 0,
		["class"] = "Mage",
		["slot"] = "Crest",
		["tier"] = 2,
		["effects"] = {
			["passive"] = {
				["name"] = "Legendary Occultist",
				["description"] = "• {{c|h|Restore 3 Health}} ({{c|h|4}} for Kills).<br>• After restoring {{c|h|200 Health}}:<br>• Enter Base to {{c|td|Evolve}} into a {{c|Passive|Legendary Crest}}.",
				["condition"] = "On dealing Ability Damage to Heroes or Monsters and Unit Kills",
			},
		},
		["stats"] = {
			["abilityhaste"] = 6, 
			["magicalpower"] = 12,
			["maximumhealth"] = 80,
		},
		["buildsinto"] = {"Typhoon", "Tempest", "Obelisk"},
		["recipe"] = {"Occult Crest"},
	},
	["Assassin Crest"] = {
		["id"] = 0,
		["image"] = "Assassin Crest.png",
		["buy"] = 0,
		["class"] = "Assassin",
		["slot"] = "Crest",
		["tier"] = 2,
		["effects"] = {
			["passive"] = {
				["name"] = "Legendary Rogue",
				["description"] = "• {{c|h|Restore 3 Health}} ({{c|h|4}} for Kills).<br>• After restoring {{c|h|200 Health}}:<br>• Enter Base to {{c|td|Evolve}} into a {{c|Passive|Legendary Crest}}.",
				["condition"] = "On Ability Hits to Heroes or Monsters and Unit Kills",
			},
		},
		["stats"] = {
			["abilityhaste"] = 6, 
			["physicalpenetration"] = 3,
			["physicalpower"] = 6,
		},
		["buildsinto"] = {"Witchstalker", "Ortus", "Nex"},
		["recipe"] = {"Rogue Crest"},
	},
	["Goliath Crest"] = {
		["id"] = 0,
		["image"] = "Goliath Crest.png",
		["buy"] = 0,
		["class"] = "Tank",
		["slot"] = "Crest",
		["tier"] = 2,
		["effects"] = {
			["passive"] = {
				["name"] = "Legendary Titan",
				["description"] = "• {{c|h|Heal (+1%{{Icon|maxhealth2}})}} over {{c|h|10s}}.<br>• After restoring {{c|h|300 Health}}:<br>• Enter Base to {{c|td|Evolve}} into a {{c|Passive|Legendary Crest}}.",
				["condition"] = "After taking damage",
			},
		},
		["stats"] = {
			["magicalarmor"] = 3,
			["maximumhealth"] = 90,
			["physicalarmor"] = 6,
		},
		["buildsinto"] = {"Saphir's Mantle", "Razorback", "Nyr Warboots"},
		["recipe"] = {"Titan Crest"},
	},
	["Champion Crest"] = {
		["id"] = 0,
		["image"] = "Champion Crest.png",
		["buy"] = 0,
		["class"] = "Fighter",
		["slot"] = "Crest",
		["tier"] = 2,
		["effects"] = {
			["passive"] = {
				["name"] = "Legendary Warrior",
				["description"] = "• {{c|h|Restore}} {{c|pd|(+8%{{Icon|physicalpower2}})}} {{c|h|Health}} over {{c|h|10s}}.<br>• After restoring {{c|h|200 Health}}:<br>• Enter Base to {{c|td|Evolve}} into a {{c|Passive|Legendary Crest}}.",
				["condition"] = "On damaging Heroes or Monsters and Unit Kills",
				
			},
		},
		["stats"] = {
			["maxhealth"] = 75,
			["omnivamp"] = 3,
			["physicalpower"] = 8,
		},
		["buildsinto"] = {"Iceskorn Talons", "Judgement", "Brutallax"},
		["recipe"] = {"Warrior Crest"},
	},
    ["Tranquility"] = {
        ["id"] = 0,
        ["image"] = "Tranquility.png",
        ["class"] = "Support",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Healing",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Pacifist",
                ["description"] = "• receive diminishing {{g}} from excessive Minion kills.",
            },
            ["passive2"] = {
                ["name"] = "Visionary",
                ["condition"] = "Gain {{c|Passive|Solstone}}",
                ["description"] = "• Increase Ward Cap from {{c|td|2}} to {{c|td|3}}.",
            },
            ["active"] = {
                ["name"] = "Grace",
                ["cooldown"] = "40s",
                ["description"] = "• {{c|h|Heal}} yourself and nearby Heroes by {{c|h|150}} {{c|md|(+50%{{Icon|magicalpower2}})}}.<br>• Also grant {{c|td|10% Damage Mitigation}} for {{c|td|2s.}}",
        },
    },
        ["stats"] = {
        	["goldpersecond"] = 1.5,
            ["manaregeneration"] = 40,
            ["maxhealth"] = 100,
        },
        ["recipe"] = {"Keeper Crest"},
    },
        ["Silentium"] = {
        ["id"] = 0,
        ["image"] = "Silentium.png",
        ["buy"] = 0,
        ["class"] = "Support",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Disruption",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Pacifist",
                ["description"] = "• receive diminishing {{g}} from excessive Minion kills.",
            },
            ["passive2"] = {
                ["name"] = "Visionary",
                ["condition"] = "Gain {{c|Passive|Solstone}}",
                ["description"] = "• Increase Ward Cap from {{c|td|2}} to {{c|td|3}}.",
            },
            ["active"] = {
                ["name"] = "Muzzle",
                ["cooldown"] = "120s",
                ["description"] = "• {{c|i|Silences}} a Hero for {{c|i|1.5s}}.<br>• If this interrupts and ability:<br>• Deal {{c|m|150 (50%{{Icon|magicalpower2}})Damage}}.",
        },
    },
        ["stats"] = {
        	["goldpersecond"] = 1.5,
            ["manaregeneration"] = 40,
            ["maxhealth"] = 100,
        },
        ["recipe"] = {"Keeper Crest"},
        	},
    ["Reclamation"] = {
        ["id"] = 0,
        ["image"] = "Reclamation.png",
        ["buy"] = 0,
        ["class"] = "Support",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Cleanse",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Pacifist",
                ["description"] = "• receive diminishing {{g}} from excessive Minion kills.",
            },
            ["passive2"] = {
                ["name"] = "Visionary",
                ["condition"] = "Gain {{c|Passive|Solstone}}",
                ["description"] = "• Increase Ward Cap from {{c|td|2}} to {{c|td|3}}.",
            },
            ["active"] = {
                ["name"] = "Purify",
                ["cooldown"] = "150s",
                ["description"] = "• {{c|td|Cleanse}} yourself and nearby Allies.",
        },
    },
        ["stats"] = {
        	["goldpersecond"] = 1.5,
            ["manaregeneration"] = 40,
            ["maxhealth"] = 100,
        },
        ["recipe"] = {"Keeper Crest"},
	},
	        ["Sanctification"] = {
        ["id"] = 0,
        ["image"] = "Sanctification.png",
        ["buy"] = 0,
        ["class"] = "Support",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Shielding",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Pacifist",
                ["description"] = "• receive diminishing {{g}} from excessive Minion kills.",
            },
            ["passive2"] = {
                ["name"] = "Visionary",
                ["condition"] = "Gain {{c|Passive|Solstone}}",
                ["description"] = "• Increase Ward Cap from {{c|td|2}} to {{c|td|3}}.",
            },
            ["active"] = {
                ["name"] = "Safeguard",
                ["cooldown"] = "120s",
                ["description"] = "• Grants yourself and nearby Heroes a {{c|td|250 {{c|h|(+10%{{Icon|maxhealth2}})}} Shield}} for {{c|td|3s}}.<br>• While the {{c|td|Shield}} holds, Heroes gain {{c|td|60% Tenacity}}.",
        },
    },
        ["stats"] = {
        	["goldpersecond"] = 1.5,
            ["healthregeneration"] = 50,
            ["maxhealth"] = 120,
        },
        ["recipe"] = {"Warden Crest"},
        	},
	        ["Leafsong"] = {
        ["id"] = 0,
        ["image"] = "Leafsong.png",
        ["buy"] = 0,
        ["class"] = "Support",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Mobility",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Pacifist",
                ["description"] = "• receive diminishing {{g}} from excessive Minion kills.",
            },
            ["passive2"] = {
                ["name"] = "Visionary",
                ["condition"] = "Gain {{c|Passive|Solstone}}",
                ["description"] = "• Increase Ward Cap from {{c|td|2}} to {{c|td|3}}.",
            },
            ["active"] = {
                ["name"] = "Phantom Rush",
                ["cooldown"] = "100s",
                ["description"] = "• Increase the {{c|td|Movement Speed}} of nearby Allies by {{c|td|38%}} for {{c|td|4s}}.<br>• They are also immune to {{c|i|Slows}} and can pass through Heroes for {{c|td|4s}}.",
        },
    },
        ["stats"] = {
        	["goldpersecond"] = 1.5,
            ["healthregeneration"] = 50,
            ["maxhealth"] = 120,
        },
        ["recipe"] = {"Warden Crest"},
        	},
	        ["Rift Walkers"] = {
        ["id"] = 0,
        ["image"] = "Rift Walkers.png",
        ["buy"] = 0,
        ["class"] = "Support",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Engage",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Pacifist",
                ["description"] = "• receive diminishing {{g}} from excessive Minion kills.",
            },
            ["passive2"] = {
                ["name"] = "Visionary",
                ["condition"] = "Gain {{c|Passive|Solstone}}",
                ["description"] = "• Increase Ward Cap from {{c|td|2}} to {{c|td|3}}.",
            },
            ["active"] = {
                ["name"] = "Rift Snatcher",
                ["cooldown"] = "120s",
                ["description"] = "• {{c|td|Dash}} forward a short distance.<br>• {{c|i|Pull}} nearby Heroes towards you.",
        },
    },
        ["stats"] = {
        	["goldpersecond"] = 1.5,
            ["healthregeneration"] = 50,
            ["maxhealth"] = 120,
        },
        ["recipe"] = {"Warden Crest"},
        	},
	        ["Epoch"] = {
        ["id"] = 0,
        ["image"] = "Epoch.png",
        ["buy"] = 0,
        ["class"] = "Mage",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Stasis",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Stasis",
                ["cooldown"] = "120s",
                ["description"] = "• Enter {{c|td|Stasis}} for {{c|td|2.5s}}.",
        },
    },
        ["stats"] = {
        	["abilityhaste"] = 8,
            ["magicalpower"] = 25,
            ["maxmana"] = 200,
        },
        ["recipe"] = {"Wizard Crest"},
        	},
	        ["Time-Flux Band"] = {
        ["id"] = 0,
        ["image"] = "Time-Flux Band.png",
        ["buy"] = 0,
        ["class"] = "Mage",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "pduce Cooldowns",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Turntable",
                ["cooldown"] = "90s",
                ["description"] = "• {{c|td|Mark}} your current location.<br>• Gain {{c|td|20% Movement Speed}} for {{c|td|4s}}.",
        },
    },
        ["stats"] = {
        	["abilityhaste"] = 8,
            ["magicalpower"] = 25,
            ["maxmana"] = 200,
        },
        ["recipe"] = {"Wizard Crest"},
        	},
	        ["Soulbearer"] = {
        ["id"] = 0,
        ["image"] = "Soulbearer.png",
        ["buy"] = 0,
        ["class"] = "Mage",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Sustained Fighting",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Anima",
                ["cooldown"] = "90s",
                ["description"] = "• Gain a {{c|m|(+25%{{Icon|maxmana2}})}} {{c|td|Shield}} for {{c|td|8s}}.<br>• Gain {{c|td|20% Magical Lifesteal}} and {{c|td|10% Movement Speed}} for {{c|td|8s}}.",
        },
    },
        ["stats"] = {
        	["abilityhaste"] = 8,
            ["magicalpower"] = 25,
            ["maxmana"] = 200,
        },
        ["recipe"] = {"Wizard Crest"},
        	},
	        ["Typhoon"] = {
        ["id"] = 0,
        ["image"] = "Typhoon.png",
        ["buy"] = 0,
        ["class"] = "Mage",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Mobility",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Cyclone",
                ["condition"] = "On Successful Basic Attack",
                ["description"] = "• Gain a stack of {{c|td|Cyclone On-Hit}} for {{c|td|3s}}.<br>• Each stack increases your {{c|td|Attack Speed}} by {{c|td|5{{c|m|(+3%{{Icon|magicalpower2}})}}%}}.<br>• Stacks up to {{c|td|4}} times.",
            },
            ["active"] = {
                ["name"] = "Mirage",
                ["condition"] = "When at {{c|Passive|4}} stacks of {{c|Passive|Cyclone}}",
                ["cooldown"] = "20s",
                ["description"] = "• Dash a short distance.",
        },
    },
        ["stats"] = {
        	["abilityhaste"] = 8,
            ["magicalpower"] = 25,
            ["maxhealth"] = 100,
        },
        ["recipe"] = {"Warlock Crest"},
        	},
	        ["Tempest"] = {
        ["id"] = 0,
        ["image"] = "Tempest.png",
        ["buy"] = 0,
        ["class"] = "Mage",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Sustained Fighting",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Overcharge",
                ["cooldown"] = "90s",
                ["description"] = "• Deal {{c|md|20 (+12%{{Icon|magicalpower2}}) Damage}} to 3 nearby Heroes every second for {{c|md|8s}}.<br>• {{c|h|Heal}} equal to {{c|h|50%}} of the damage dealt.<br>• Multiple strikes against the same target deal half the {{c|md|Damage}}.",
        },
    },
        ["stats"] = {
        	["abilityhaste"] = 8,
            ["magicalpower"] = 25,
            ["maxhealth"] = 100,
        },
        ["recipe"] = {"Warlock Crest"},
        	},
	        ["Obelisk"] = {
        ["id"] = 0,
        ["image"] = "Obelisk.png",
        ["buy"] = 0,
        ["class"] = "Mage",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Burst",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Soul Stealer",
                ["description"] = "• Souls collected grant {{c|md|1 Magical Power}}.",
            },
            ["active"] = {
                ["name"] = "Condemn",
                ["cooldown"] = "20s",
                ["description"] = "• Enhance next Basic Attack.<br>• Deal {{c|md|50 (+12%{{Icon|magicalpower2}}) Damage}}.<br>• If the Target dies within {{c|td|3s}}, collect a {{c|td|Soul}}.<br>• Damage increases by {{c|md|8}} for each {{c|td|Soul}} collected.",
        },
    },
        ["stats"] = {
        	["abilityhaste"] = 8,
            ["magicalpower"] = 25,
            ["maxhealth"] = 100,
        },
        ["recipe"] = {"Warlock Crest"},
        	},
	        ["Eviscerator"] = {
        ["id"] = 0,
        ["image"] = "Eviscerator.png",
        ["buy"] = 0,
        ["class"] = "Carry",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Anti-Tank",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Rending Strikes",
                ["cooldown"] = "60s",
                ["description"] = "• Gain {{c|td|15% Attack Speed}} for {{c|td|6s}}.<br>• Empower your Basic Attacks to deal {{c|pd|(+15%{{Icon|physicalpower2}})}} {{c|td|Damage On-Hit}} for {{c|td|6s}}.",
        },
    },
        ["stats"] = {
        	["attackspeed"] = 15,
            ["lifesteal"] = 7,
            ["physicalpower"] = 10,
        },
        ["recipe"] = {"Sharpshooter Crest"},
        	},
	        ["Liberator"] = {
        ["id"] = 0,
        ["image"] = "Liberator.png",
        ["buy"] = 0,
        ["class"] = "Carry",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Cleanse",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Purifying Guard",
                ["cooldown"] = "150s",
                ["description"] = "• {{c|td|Cleanse}} all {{c|td|Debuffs}}.<br>• Gain a {{c|pd|(+150%{{Icon|physicalpower2}})}} {{c|td|Shield}} for {{c|td|2.5s}}.",
        },
    },
        ["stats"] = {
        	["attackspeed"] = 15,
            ["lifesteal"] = 7,
            ["physicalpower"] = 10,
        },
        ["recipe"] = {"Sharpshooter Crest"},
        	},
	        ["Pacifier"] = {
        ["id"] = 0,
        ["image"] = "Pacifier.png",
        ["buy"] = 0,
        ["class"] = "Carry",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Multi-Kill",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Adrenalize",
                ["cooldown"] = "120s",
                ["description"] = "• {{c|td|Dash}} a short distance.<br>• Empower your next Physical Damage Instance within {{c|td|3s}}.<br>• Deal {{c|pd|(+30%{{Icon|physicalpower2}}) Damage}}.<br>• Increased by {{c|pd|2.5x}} against Targets below {{c|h|40% Max Health}}.<br>• Killing a Hero within {{c|td|3s}} allows {{c|Passive|Adrenalize}} to be recast for {{c|Passive|6s}}.",
        },
    },
        ["stats"] = {
        	["attackspeed"] = 15,
            ["lifesteal"] = 7,
            ["physicalpower"] = 10,
        },
        ["recipe"] = {"Sharpshooter Crest"},
        	},
	        ["Nex"] = {
        ["id"] = 0,
        ["image"] = "Nex.png",
        ["buy"] = 0,
        ["class"] = "Assassin",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Burst",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Sow",
                ["condition"] = "On damaging Heroes",
                ["description"] = "• Store {{c|td|20%}} of the damage as {{c|td|Sow}}.<br>• {{c|td|10%}} for AoE Abilities.<br>• {{c|td|Sow}} is stored for {{c|td|5s}}.",
            },
            ["active"] = {
                ["name"] = "Reap",
                ["condition"] = "Dash a short distance and",
                ["cooldown"] = "90s",
                ["description"] = "• Deal {{c|pd|(+100%{{Icon|physicalpower2}})}} Damage to nearby Heroes.<br>• Increased with {{c|Passive|Sow}} charge.<br>• {{c|i|Slows}} by {{c|i|80%}} for {{c|i|1s}}.",
        },
    },
        ["stats"] = {
        	["abilityhaste"] = 8,
            ["physicalpenetration"] = 5,
            ["physicalpower"] = 12,
        },
        ["recipe"] = {"Assassin Crest"},
        	},
	        ["Ortus"] = {
        ["id"] = 0,
        ["image"] = "Ortus.png",
        ["buy"] = 0,
        ["class"] = "Assassin",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Multi-Kill",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Limit Breaker",
                ["cooldown"] = "90s",
                ["description"] = "• Gain {{c|td|20% Movement Speed}} and {{c|pd|10% Physical Power}} for {{c|td|8s}}.<br>• Takedowns within {{c|td|8s}} permanently grant {{c|pd|3 Physical Power}} and refreshes the duration.",
        },
    },
        ["stats"] = {
        	["abilityhaste"] = 8,
            ["physicalpenetration"] = 5,
            ["physicalpower"] = 12,
        },
        ["recipe"] = {"Assassin Crest"},
        	},
	        ["Witchstalker"] = {
        ["id"] = 0,
        ["image"] = "Witchstalker.png",
        ["buy"] = 0,
        ["class"] = "Assassin",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Cleanse",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Purifying Strike",
                ["cooldown"] = "150s",
                ["description"] = "• {{c|td|Cleanse}} all {{c|td|Debuffs}}.<br>• Empower your next Damage Instance within {{c|td|8s}}.<br>• Deal {{c|h|4% Target Max Health}} as {{c|td|Damage}}.<br>• {{c|td|Double}} the {{c|td|Damage}} if a {{c|td|Debuff}} is {{c|td|Cleansed}}.<br>• {{c|h|Heal}} equal to the {{c|td|Damage}} dealt.",
        },
    },
        ["stats"] = {
        	["abilityhaste"] = 8,
            ["physicalpenetration"] = 5,
            ["physicalpower"] = 12,
        },
        ["recipe"] = {"Assassin Crest"},
        	},
	        ["Saphir's Mantle"] = {
        ["id"] = 0,
        ["image"] = "Saphir's Mantle.png",
        ["buy"] = 0,
        ["class"] = "Tank",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Teamfight Durability",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Atlas",
                ["cooldown"] = "75s",
                ["description"] = "• Increase your {{c|td|Size}} and {{c|h|Max Health}} by {{c|td|12%}} for {{c|td|6s}}.<br>• Deal {{c|td|55 {{c|h|(+1%{{Icon|maxhealth2}})}} Damage}} to nearby Heroes. <br>• After the duration, permanently increase your {{c|h|Max Health}} by {{c|td|20%}} of the {{c|td|Damage}} dealt.",
        },
    },
        ["stats"] = {
        	["magicalarmor"] = 5,
            ["maxhealth"] = 180,
            ["physicalarmor"] = 8,
        },
        ["recipe"] = {"Goliath Crest"},
        	},
	        ["Razorback"] = {
        ["id"] = 0,
        ["image"] = "Razorback.png",
        ["buy"] = 0,
        ["class"] = "Tank",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Reflect Damage",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Echidna",
                ["cooldown"] = "90s",
                ["description"] = "• Gain {{c|td|25%}} {{c|pd|Physical Armor}} and {{c|md|Magical Armor}} for {{c|td|6s}}.<br>• Reflect {{c|td|15%}} of Pre-Mitigated Damage received from Heroes as {{c|td|Damage}}.",
        },
    },
        ["stats"] = {
        	["magicalarmor"] = 5,
            ["maxhealth"] = 180,
            ["physicalarmor"] = 8,
        },
        ["recipe"] = {"Goliath Crest"},
        	},
	        ["Nyr Warboots"] = {
        ["id"] = 0,
        ["image"] = "Nyr Warboots.png",
        ["buy"] = 0,
        ["class"] = "Tank",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Mobility",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Resiliance",
                ["cooldown"] = "90s",
                ["description"] = "• Gain {{c|td|50% Decaying Movement Speed}} for {{c|td|5s}}.<br>• {{C|h|Regenerate 2%}} of your {{c|h|Max Health}} every second for {{c|h|5s}}.",
        },
    },
        ["stats"] = {
        	["magicalarmor"] = 5,
            ["maxhealth"] = 180,
            ["physicalarmor"] = 8,
        },
        ["recipe"] = {"Goliath Crest"},
        	},
	        ["Brutallax"] = {
        ["id"] = 0,
        ["image"] = "Brutallax.png",
        ["buy"] = 0,
        ["class"] = "Fighter",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Cleanse",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Purifying Rage",
                ["cooldown"] = "150s",
                ["description"] = "• {{c|td|Cleanse}} all {{c|td|Debuffs}}<br>• Gain {{c|td|60% Tenacity}} for {{c|td|8s}}.<br>• Successful Basic Attacks extend the duration of  this by {{C|td|0.5s On-Hit}}.",
        },
    },
        ["stats"] = {
            ["maxhealth"] = 100,
            ["physicalpower"] = 12,
            ["omnivamp"] = 4,
        },
        ["recipe"] = {"Champion Crest"},
        	},
	        ["Iceskorn Talons"] = {
        ["id"] = 0,
        ["image"] = "Iceskorn Talons.png",
        ["buy"] = 0,
        ["class"] = "Fighter",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Dueling",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Glacial Colosseum",
                ["cooldown"] = "45s",
                ["description"] = "• Create an {{c|td|Ice Sheet}} around you for {{c|td|15s}}.<br>• Allies on the sheet gain {{c|pd|15% Physical Power}} for {{c|td|3s}}.<br>• They also gain {{c|td|15% Movement Speed}} for {{c|td|3s}}.<br>• Enemy Units on the sheet are {{c|i|Slowed}} by {{c|i|15%}}.",
        },
    },
        ["stats"] = {
            ["maxhealth"] = 100,
            ["physicalpower"] = 12,
            ["omnivamp"] = 4,
        },
        ["recipe"] = {"Champion Crest"},
        	},
	        ["Judgement"] = {
        ["id"] = 0,
        ["image"] = "Judgement.png",
        ["buy"] = 0,
        ["class"] = "Fighter",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Area Damage",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Thunder Cleaver",
                ["cooldown"] = "24-10s",
                ["description"] = "• Deal {{c|md|70 (+40%{{Icon|physicalpower2}}) Damage}} in an area around you.<br>• On Hero hit, {{c|h|Heal}} {{c|pd|(+35%{{Icon|physicalpower2}})}} {{c|h|(8%{{Icon|maxhealth2}})}}.<br>• Subsequent Hero hits {{c|h|heal}} for {{c|td|50%}} effectiveness.",
        },
    },
        ["stats"] = {
            ["maxhealth"] = 100,
            ["physicalpower"] = 12,
            ["omnivamp"] = 4,
        },
        ["recipe"] = {"Champion Crest"},
        	},
--------------------------------------------------------------------------------
-- Consumables
--------------------------------------------------------------------------------
    ["Hunt"] = {
        ["id"] = 0,
        ["image"] = "Hunt.png",
        ["slot"] = "Active",
        ["tier"] = 1,
        ["type"] = "Consumable",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Forest Dweller",
                ["condition"] = "On damaging Monsters",
                ["description"] = "• Deal bonus {{c|td|Damage}} over {{c|td|3s}}.<br>• Restore {{c|m|Mana}} {{c|td|On-Hit}} and while in the {{c|td|Jungle}}.<br>• Melee Heroes {{c|h|Heal}} for {{c|td|5%}} of damage dealt.<br>• {{c|h|Healing}} increases to {{c|td|8%}} while below {{c|h|40% Health}}.<br>• receive diminishing {{g}} from excessive Minion Kills.",
            },
            ["passive2"] = {
                ["name"] = "Big Game Hunter",
                ["condition"] = "On Killing Monsters",
                ["description"] = "• Grant a stack of {{c|td|Hunt}}.<br>• At {{c|td|40}} stacks, this item evolves into {{c|Passive|Wild Hunt}}.",
            },
            ["active"] = {
                ["name"] = "Slay",
                ["cooldown"] = "90",
                ["description"] = "• Deal {{C|td|500 Damage}} to an Enemy Minion or Monster.<br>",
            },
        },
    },
    ["Wild Hunt"] = {
        ["id"] = 0,
        ["image"] = "Wild Hunt.png",
        ["slot"] = "Active",
        ["tier"] = 1,
        ["type"] = "Consumable",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Forest Dweller",
                ["condition"] = "On damaging Monsters",
                ["description"] = "• Deal bonus {{c|td|Damage}} over {{c|td|3s}}.<br>• Restore {{c|m|Mana}} {{c|td|On-Hit}} and while in the {{c|td|Jungle}}.<br>• Melee Heroes {{c|h|Heal}} for {{c|td|5%}} of damage dealt.<br>• {{c|h|Healing}} increases to {{c|td|8%}} while below {{c|h|40% Health}}.<br>• receive diminishing {{g}} from excessive Minion Kills.",
            },
            ["active"] = {
                ["name"] = "Slay",
                ["cooldown"] = "90",
                ["description"] = "• Deal {{C|td|1000 Damage}} to an Enemy Minion or Monster.<br>",
            },
        },
    },
    ["Refillable Potion"] = {
        ["id"] = 0,
        ["image"] = "Refillable Potion.png",
        ["type"] = "Consumable",
        ["slot"] = "Active",
        ["benefit"] = "Offense",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Consume",
                ["description"] = "• {{c|h|Regenerate 120-375 Health}} over {{c|h|15s}}.<br>• Based on Level.<br>• Max Charges: 2.<br>• Charges are restored upon entering the base.",
            },
        },
    },
    ["Sentry"] = {
        ["id"] = 0,
        ["image"] = "Sentry.png",
        ["slot"] = "Trinket",
        ["type"] = "Consumable",
        ["benefit"] = "Offense",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Activate",
                ["cooldown"] = "94s",
                ["description"] = "• Reveal nearby {{c|td|Wards}} in an area around you for {{c|td|12s}}.<br>• Max Charges: {{c|td|2}}.<br>• Cooldown is reduced by {{c|td|3}} per {{c|m|Level}}.",
            },
        },
    },
    ["Stealth Ward"] = {
        ["id"] = 0,
        ["image"] = "Stealth Ward.png",
        ["slot"] = "Trinket",
        ["type"] = "Consumable",
        ["benefit"] = "Offense",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Activate",
                ["cooldown"] = "171s",
                ["description"] = "• Place an invisible {{c|td|Ward}} for {{c|td|86s}}.<br>• Reveals any nearby non {{c|td|Stealthed}} Units.<br>• Max Charges: {{c|td|2}}.",
            },
        },
    },
    ["Solstone"] = {
        ["id"] = 0,
        ["image"] = "Solstone.png",
        ["buy"] = 0,
        ["slot"] = "Trinket",
        ["type"] = "Consumable",
        ["benefit"] = "Offense",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Activate",
                ["cooldown"] = "120s",
                ["description"] = "• Place an invisible {{c|td|Oracle}} Ward for {{c|td|120s}}.<br>• Reveals any nearby non {{c|td|Stealthed}} Units.<br>• Max Charges: {{c|td|3}}.<br>• Charges are restored upon entering base.",
            },
        },
    },
    ["Sonar Drone"] = {
        ["id"] = 0,
        ["image"] = "Sonar Drone.png",
        ["slot"] = "Trinket",
        ["type"] = "Consumable",
        ["effects"] = {
            ["active"] = {
            	["passive"] = {
                ["name"] = "Stealth Detection",
                ["condition"] = "After {{c|m|Level 6}}",
                ["description"] = "• The first {{c|ts|2}} Pulses reveal {{C|td|Stealthed}} Units.",
            },
                ["name"] = "Who's there?",
                ["cooldown"] = "90-37s",
                ["description"] = "• Shoots a Camouflaged Sonar Drone<br>• Lasts for {{c|td|30-47s}}.<br>• Pulses revealing non {{C|td|Stealthed}} Units for {{c|td|3s}}.<br>• Max Charges: {{c|td|2}}.<br>• Charges restored upon entering Base",
            },
        },
    },
    ["Solstone Drone"] = {
        ["id"] = 0,
        ["image"] = "Solstone Drone.png",
        ["slot"] = "Trinket",
        ["type"] = "Consumable",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Who's there?",
                ["cooldown"] = "90-37s",
                ["description"] = "• Shoots a Camouflaged Sonar Drone<br>• Lasts for {{c|td|30-47s}}.<br>• Pulses revealing non {{C|td|Stealthed}} Units for {{c|td|3s}}.<br>• Max Charges: {{c|td|3}}.<br>• Charges restored upon entering Base",
            },
        },
    },
    ["Intellect Tonic"] = {
        ["id"] = 0,
        ["image"] = "Intellect Tonic.png",
        ["buy"] = 750,
        ["class"] = "Mage",
        ["type"] = "Consumable",
        ["benefit"] = "Offense",
        ["requiredlevel"] = 11,
        ["effects"] = {
            ["active"] = {
                ["name"] = "Consume",
                ["description"] = "• Gain {{c|md|50 Magical Power}} and {{c|m|200% Mana Regen}} for {{c|td|300s}}.<br>• Effect is lost upon death.",
            },
        },
    },
    ["Protection Tonic"] = {
        ["id"] = 0,
        ["image"] = "Protection Tonic.png",
        ["buy"] = 750,
        ["class"] = "Tank",
        ["type"] = "Consumable",
        ["benefit"] = "Offense",
        ["requiredlevel"] = 11,
        ["effects"] = {
            ["active"] = {
                ["name"] = "Consume",
                ["description"] = "• Gain {{c|pd|20 Physical Armor}} and {{c|md|20 Magical Armor}} for {{c|td|300s}}.<br>• Gain {{c|td|30% Tenacity}} for {{c|td|300s}}.<br>• Effect is lost upon death.",
            },
        },
    },
    ["Stamina Tonic"] = {
        ["id"] = 0,
        ["image"] = "Stamina Tonic.png",
        ["buy"] = 750,
        ["class"] = "Fighter",
        ["type"] = "Consumable",
        ["benefit"] = "Offense",
        ["requiredlevel"] = 11,
        ["effects"] = {
            ["active"] = {
                ["name"] = "Consume",
                ["description"] = "• Gain {{c|h|300 Health}} and {{c|h|12 Health Regen}} for {{c|h|300s}}.<br>• Effect is lost upon death.",
            },
        },
    },
    ["Strength Tonic"] = {
        ["id"] = 0,
        ["image"] = "Strength Tonic.png",
        ["buy"] = 750,
        ["class"] = "Carry",
        ["type"] = "Consumable",
        ["benefit"] = "Offense",
        ["requiredlevel"] = 11,
        ["effects"] = {
            ["active"] = {
                ["name"] = "Consume",
                ["description"] = "• Gain {{c|pd|30 Physical Power}} and {{c|td|10% Omnivamp}} for {{c|td|300s}}.<br>• Effect is lost upon death.",
            },
        },
    },
--------------------------------------------------------------------------------
-- Tier 1
--------------------------------------------------------------------------------
	["Codex"] = {
		["id"] = 0,
		["buy"] = 350,
		["tier"] = 1,
		["image"] = "Codex.png",
		["stats"] = {
			["magicalpower"] = 12,
		},
		["buildsinto"] = {"Divine Wreath", "Diffusal Cane", "Crystal Tear", "Spiked Birch", "Dusk Stave", "Golem's Gift", "Timewarp", "Rune Bow", "Blood Tome", "Chronomatic Wand", "Scalding Sceptre", "Chaotic Core", "Mystic Cane", "Alchemical Rod", "Nether Shard", "Crescelia"},
    },
    ["Crossbow"] = {
        ["id"] = 0,
        ["buy"] = 450,
        ["tier"] = 1,
        ["image"] = "Crossbow.png",
        ["stats"] = {
            ["criticalchance"] = 10,
        },
        ["buildsinto"] = {"Claymore", "Demolisher", "Robust Arbalest"},
    },
    ["Energy Stream"] = {
        ["id"] = 0,
        ["buy"] = 350,
        ["tier"] = 1,
        ["image"] = "Energy Stream.png",
        ["stats"] = {
            ["manaregeneration"] = 50,
        },
        ["buildsinto"] = {"Cerulean Stone", "Essence Ring", "Mystic Cane"},
    },
    ["Greatsword"] = {
        ["id"] = 0,
        ["buy"] = 1200,
        ["tier"] = 1,
        ["image"] = "Greatsword.png",
        ["stats"] = {
            ["physicalpower"] = 30,
        },
        ["buildsinto"] = {"Imperator", "Salvation", "Dust Devil"},
    },
    ["Life Stream"] = {
        ["id"] = 0,
        ["buy"] = 350,
        ["tier"] = 1,
        ["image"] = "Life Stream.png",
        ["stats"] = {
            ["healthregeneration"] = 40,
        },
        ["buildsinto"] = {"Loch Shawl", "Stalwart Gauntlets", "Life Ring"},
    },
    ["Longbow"] = {
        ["id"] = 0,
        ["buy"] = 350,
        ["tier"] = 1,
        ["image"] = "Longbow.png",
        ["stats"] = {
            ["attackspeed"] = 10,
        },
        ["buildsinto"] = {"Composite Bow", "Robust Arbalest", "Ironwood Warbow", "Rune Bow", "Resolution", "Equinox"},
    },
    ["Pendant"] = {
        ["id"] = 0,
        ["buy"] = 350,
        ["tier"] = 1,
        ["image"] = "Pendant.png",
        ["stats"] = {
            ["abilityhaste"] = 5,
        },
        ["buildsinto"] = {"Omen", "Tainted Scepter", "Tainted Guard", "Flux Matrix", "Gilded Pendant", "Mutilator", "Polar Treads", "Azure Core", "Essence Ring", "Violet Brooch", "Temporal Ripper", "Chronomatic Wand", "Magnify", "Spell Slasher", "Nether Shard", "Tainted Trident", "Lifebinder"},
    },
    ["Potent Staff"] = {
        ["id"] = 0,
        ["buy"] = 1150,
        ["tier"] = 1,
        ["image"] = "Potent Staff.png",
        ["stats"] = {
            ["magicalpower"] = 40,
        },
        ["buildsinto"] = {"Oblivion Crown", "Wraith Leggings", "Dreambinder", "Noxia"},
    },
    ["Sabre"] = {
        ["id"] = 0,
        ["buy"] = 650,
        ["tier"] = 1,
        ["image"] = "Sabre.png",
        ["stats"] = {
            ["phsyicalpower"] = 15,
        },
        ["buildsinto"] = {"Dread", "Demolisher", "Tainted Blade", "Absolution", "Legacy", "Lightning Hawk", "Stone of Strength", "Mistmeadow Buckler", "Kingsbane", "Equinox"},
    },
    ["Scepter"] = {
        ["id"] = 0,
        ["buy"] = 850,
        ["tier"] = 1,
        ["image"] = "Scepter.png",
        ["stats"] = {
            ["magicalpower"] = 30,
        },
        ["buildsinto"] = {"Spellbreaker", "Oathkeeper", "Void Crystal", "Prophecy"},
    },
	["Shortsword"] = {
		["id"] = 0,
		["buy"] = 350,
		["tier"] = 1,
		["image"] = "Shortsword.png",
		["stats"] = {
			["physicalpower"] = 8,
		},
		["buildsinto"] = {"Barbaric Cleaver", "Claymore", "Crimson Edge", "Fortified Mantle", "Honed Kris", "Ironwood Warbow","Ruthless Broadsword", "Serrated Blade", "Soul Chalice", "Temporal Ripper", "Tectonic Mallet", "Stone of Strength", "Zealous Tomahawk", "Rapid Rapier", "Bloodletter", "Nightfall", "Terminus"},
	},
    ["Spirit Beads"] = {
        ["id"] = 0,
        ["buy"] = 350,
        ["tier"] = 1,
        ["image"] = "Spirit Beads.png",
        ["stats"] = {
            ["maxmana"] = 150,
        },
        ["buildsinto"] = {"Mindrazor", "Dusk Stave", "Infernum", "Soul Chalice", "Alchemical Rod", "Envy", "Nuclear Rounds"},
    },
    ["Tunic"] = {
        ["id"] = 0,
        ["buy"] = 350,
        ["tier"] = 1,
        ["image"] = "Tunic.png",
        ["stats"] = {
            ["physicalarmor"] = 10,
        },
        ["buildsinto"] = {"Draconum", "Steel Mail", "Barbed Pauldron", "Cerulean Stone", "Fortified Mantle", "Horned Plate", "Life Ring", "Vigorous Amulet", "Gilded Pendant"},
    },
    ["Vitality Beads"] = {
        ["id"] = 0,
        ["buy"] = 350,
        ["tier"] = 1,
        ["image"] = "Vitality Beads.png",
        ["stats"] = {
            ["maxhealth"] = 100,
        },
        ["buildsinto"] = {"Banded Emerald", "Tainted Totem", "Tenacious Drape", "Brimstone", "Stalwart Gauntlets", "Violet Brooch", "Chaotic Core", "Vigorous Amulet", "Stone of Strength", "Penumbra", "Fist Of Razuul", "Unbroken Will"},
    },
    ["Wraps"] = {
        ["id"] = 0,
        ["buy"] = 350,
        ["tier"] = 1,
        ["image"] = "Wraps.png",
        ["stats"] = {
            ["magicalarmor"] = 10,
        },
        ["buildsinto"] = {"Loch Shawl", "Galaxy Greaves", "Heroic Guard", "Nullifying Mask"},
    },
--------------------------------------------------------------------------------
-- Tier 2
--------------------------------------------------------------------------------
    ["Banded Emerald"] = {
        ["id"] = 0,
        ["buy"] = 850,
        ["tier"] = 2,
        ["image"] = "Banded Emerald.png",
        ["stats"] = {
            ["maxhealth"] = 250,
        },
        ["buildsinto"] = {"Dynamo", "Augmentation", "Overlord", "Raiment of Renewal", "Elafrost", "Void Helm", "Frosted Lure", "Earthshaker", "Fist Of Razuul", "Tainted Bastion", "Bonesaw"},
        ["recipe"] = {"Vitality Beads"},
    },
    ["Bloodletter"] = {
        ["id"] = 0,
        ["buy"] = 1200,
        ["tier"] = 2,
        ["image"] = "Bloodletter.png",
        ["stats"] = {
            ["physicalpower"] = 20,
            ["omnivamp"] = 4,
        },
        ["buildsinto"] = {"Mutilator", "Mistmeadow Buckler"},
        ["recipe"] = {"Shortsword", "Shortsword"},
    },
    ["Blood Tome"] = {
        ["id"] = 0,
        ["buy"] = 900,
        ["tier"] = 2,
        ["image"] = "Blood Tome.png",
        ["stats"] = {
            ["magicalpower"] = 25,
            ["magicallifesteal"] = 5,
        },
        ["buildsinto"] = {"Lifebinder", "Magnify"},
        ["recipe"] = {"Codex"},
    },
    ["Chaotic Core"] = {
        ["id"] = 0,
        ["buy"] = 1200,
        ["tier"] = 2,
        ["image"] = "Chaotic Core.png",
        ["stats"] = {
            ["magicalpower"] = 25,
            ["maxhealth"] = 150,
        },
        ["buildsinto"] = {"Dreambinder", "Magnify", "Tainted Scepter", "Truesilver Bracelet", "Oathkeeper", "Orb of Growth", "Everbloom"},
        ["recipe"] = {"Codex", "Vitality Beads"},
    },
    ["Cerulean Stone"] = {
        ["id"] = 0,
        ["buy"] = 1000,
        ["tier"] = 2,
        ["image"] = "Cerulean Stone.png",
        ["stats"] = {
            ["physicalarmor"] = 20,
            ["manaregeneration"] = 75,
        },
        ["buildsinto"] = {"Galaxy Greaves", "Golem's Gift", "Elafrost"},
        ["recipe"] = {"Tunic","Energy Stream"},
    },
    ["Chronomatic Wand"] = {
        ["id"] = 0,
        ["buy"] = 1000,
        ["tier"] = 2,
        ["image"] = "Chronomatic Wand.png",
        ["stats"] = {
            ["magicalpower"] = 30,
            ["abilityhaste"] = 8,
        },
        ["buildsinto"] = {"Spellbreaker", "Timewarp", "Astral Catalyst", "Golem's Gift", "Prophecy", "Noxia", "Soulbinder", "Lunaria", "Marshal", "Megacosm"},
        ["recipe"] = {"Codex","Pendant"},
    },
    ["Claymore"] = {
        ["id"] = 0,
        ["buy"] = 1250,
        ["tier"] = 2,
        ["image"] = "Claymore.png",
        ["stats"] = {
            ["physicalpower"] = 20,
            ["criticalchance"] = 12,
        },
        ["buildsinto"] = {"Imperator", "Terminus", "Ashbringer", "Vanquisher", "Nuclear Rounds"},
        ["recipe"] = {"Shortsword","Crossbow"},
    },
    ["Crimson Edge"] = {
        ["id"] = 0,
        ["buy"] = 800,
        ["tier"] = 2,
        ["image"] = "Crimson Edge.png",
        ["stats"] = {
            ["physicalpower"] = 15,
            ["lifesteal"] = 5,
        },
        ["buildsinto"] = {"Terminus", "Nightfall", "Sky Splitter"},
        ["recipe"] = {"Shortsword"},
    },
    ["Diffusal Cane"] = {
        ["id"] = 0,
        ["buy"] = 1200,
        ["tier"] = 2,
        ["image"] = "Diffusal Cane.png",
        ["stats"] = {
            ["magicalpower"] = 35,
            ["magicalpenetration"] = 5,
        },
        ["buildsinto"] = {"Wraith Leggings", "Combustion", "Spirit Of Amir"},
        ["recipe"] = {"Codex","Codex"},
    },
    ["Divine Wreath"] = {
        ["id"] = 0,
        ["buy"] = 800,
        ["tier"] = 2,
        ["image"] = "Divine Wreath.png",
        ["stats"] = {
            ["magicalpower"] = 20,
            ["healshieldincrease"] = 5,
        },
        ["buildsinto"] = {"Crystal Tear", "Windcaller", "Everbloom", "Lunaria"},
        ["recipe"] = {"Codex"},
    },
    ["Dusk Stave"] = {
        ["id"] = 0,
        ["buy"] = 1250,
        ["tier"] = 2,
        ["image"] = "Dusk Stave.png",
        ["stats"] = {
            ["magicalpower"] = 30,
            ["maxmana"] = 200,
        },
        ["buildsinto"] = {"Megacosm", "Combustion", "Astral Catalyst", "Azure Core", "Orb of Growth", "Soulbinder"},
        ["recipe"] = {"Codex","Spirit Beads"},
    },
    ["Essence Ring"] = {
        ["id"] = 0,
        ["buy"] = 900,
        ["tier"] = 2,
        ["image"] = "Essence Ring.png",
        ["stats"] = {
            ["manaregeneration"] = 100,
            ["abilityhaste"] = 8,
        },
        ["buildsinto"] = {"Tainted Totem", "Crystal Tear"},
        ["recipe"] = {"Energy Stream"},
    },
    ["Fortified Mantle"] = {
        ["id"] = 0,
        ["buy"] = 1300,
        ["tier"] = 2,
        ["image"] = "Fortified Mantle.png",
        ["stats"] = {
            ["physicalpower"] = 20,
            ["physicalarmor"] = 15,
        },
        ["buildsinto"] = {"Citadel", "Draconum"},
        ["recipe"] = {"Shortsword", "Tunic"},
    },
    ["Gilded Pendant"] = {
        ["id"] = 0,
        ["buy"] = 1000,
        ["tier"] = 2,
        ["image"] = "Gilded Pendant.png",
        ["stats"] = {
            ["physicalarmor"] = 20,
            ["abilityhaste"] = 8,
        },
        ["buildsinto"] = {"Hexbound Bracers", "Dynamo", "Giant's Ring", "Gaia Greaves", "Frosted Lure", "Fist Of Razuul"},
        ["recipe"] = {"Pendant", "Tunic"},
    },
	["Honed Kris"] = {
		["id"] = 0,
		["buy"] = 1000,
		["tier"] = 2,
		["image"] = "Honed_Kris.png",
		["stats"] = {
			["physicalpenetration"] = 3,
			["physicalpower"] = 20,
		},
		["buildsinto"] = {"Malady", "Mesmer", "Deathstalker", "Dread", "Omen", "Painweaver", "Resolution", "Vanquisher", "Demon Edge", "Nightfall", "Envy", "Infernum", "Tainted Trident", "Penumbra"},
		["recipe"] = {"Shortsword", "Shortsword"},
	},
    ["Ironwood Warbow"] = {
        ["id"] = 0,
        ["buy"] = 1350,
        ["tier"] = 2,
        ["image"] = "Ironwood Warbow.png",
        ["stats"] = {
            ["physicalpower"] = 20,
            ["attackspeed"] = 15,
        },
        ["buildsinto"] = {"Storm Breaker", "Sky Splitter", "Absolution", "Deathstalker", "Echelon Cloak", "Earthshaker", "Nuclear Rounds", "Plasma Blade"},
        ["recipe"] = {"Shortsword", "Longbow"},
    },
	["Heroic Guard"] = {
		["id"] = 0,
		["buy"] = 900,
		["tier"] = 2,
		["image"] = "Heroic Guard.png",
		["stats"] = {
			["tenacity"] = 15,
			["magicalarmor"] = 20,
		},
		["buildsinto"] = {"Vanguardian", "Absolution","Legacy"},
		["recipe"] = {"Wraps"},
	},
    ["Life Ring"] = {
        ["id"] = 0,
        ["buy"] = 900,
        ["tier"] = 2,
        ["image"] = "Life Ring.png",
        ["stats"] = {
            ["healthregeneration"] = 60,
            ["physicalarmor"] = 15,
        },
        ["buildsinto"] = {"Hexbound Bracers", "Dawnstar", "Frostguard"},
        ["recipe"] = {"Life Stream", "Tunic"},
    },
    ["Mystic Cane"] = {
        ["id"] = 0,
        ["buy"] = 1050,
        ["tier"] = 2,
        ["image"] = "Mystic Cane.png",
        ["stats"] = {
            ["magicalpower"] = 20,
            ["manaregeneration"] = 75,
        },
        ["buildsinto"] = {"Caustica", "Truesilver Bracelet", "Marshal", "Windcaller", "Crescelia", "Timewarp"},
        ["recipe"] = {"Codex", "Energy Stream"},
    },
    ["Nullifying Mask"] = {
        ["id"] = 0,
        ["buy"] = 700,
        ["tier"] = 2,
        ["image"] = "Nullifying Mask.png",
        ["stats"] = {
            ["magicalarmor"] = 20,
        },
        ["buildsinto"] = {"Crystalline Cuirass", "Spellbreaker", "Dread", "Flux Matrix", "Unbroken Will", "Void Helm", "Mistmeadow Buckler", "Frostguard"},
        ["recipe"] = {"Wraps"},
    },
    ["Robust Arbalest"] = {
        ["id"] = 0,
        ["buy"] = 1100,
        ["tier"] = 2,
        ["image"] = "Robust Arbalest.png",
        ["stats"] = {
            ["criticalchance"] = 12,
            ["attackspeed"] = 20,
        },
        ["buildsinto"] = {"Lightning Hawk", "Tainted Rounds", "Dust Devil", "Onixian Quiver", "Equinox"},
        ["recipe"] = {"Crossbow", "Longbow"},
    },
    ["Rune Bow"] = {
        ["id"] = 0,
        ["buy"] = 1250,
        ["tier"] = 2,
        ["image"] = "Rune Bow.png",
        ["stats"] = {
            ["magicalpower"] = 25,
            ["attackspeed"] = 15,
        },
        ["buildsinto"] = {"Plasma Blade"},
        ["recipe"] = {"Codex", "Longbow"},
    },
    ["Stalwart Gauntlets"] = {
        ["id"] = 0,
        ["buy"] = 1150,
        ["tier"] = 2,
        ["image"] = "Stalwart Gauntlets.png",
        ["stats"] = {
            ["maxhealth"] = 200,
            ["healthregeneration"] = 50,
        },
        ["buildsinto"] = {"Crystalline Cuirass", "Raiment of Renewal"},
        ["recipe"] = {"Vitality Beads", "Life Stream"},
    },
    ["Steel Mail"] = {
        ["id"] = 0,
        ["buy"] = 1000,
        ["tier"] = 2,
        ["image"] = "Steel Mail.png",
        ["stats"] = {
            ["physicalarmor"] = 30,
        },
        ["buildsinto"] = {"Vanguardian", "Stonewall", "Fire Blossom", "Warden's Faith"},
        ["recipe"] = {"Tunic", "Tunic"},
    },
    ["Stone of Strength"] = {
        ["id"] = 0,
        ["buy"] = 1350,
        ["tier"] = 2,
        ["image"] = "Stone of Strength.png",
        ["stats"] = {
            ["maxhealth"] = 150,
            ["physicalpower"] = 20,
        },
        ["buildsinto"] = {"Mesmer", "Bonesaw", "Berserker's Axe", "Demon Edge"},
        ["recipe"] = {"Sabre", "Vitality Beads"},
    },
	["Temporal Ripper"] = {
		["id"] = 0,
		["buy"] = 1000,
		["tier"] = 2,
		["image"] = "Temporal_Ripper.png",
		["stats"] = {
			["abilityhaste"] = 8, 
			["physicalpower"] = 20,
		},
		["buildsinto"] = {"Ashbringer", "Malady", "Draconum", "Legacy", "Mutilator", "Tectonic Mallet", "The Perforator", "Augmentation", "Berserker's Axe", "Infernum", "Mindrazor", "Penumbra", "Kingsbane"},
		["recipe"] = {"Shortsword", "Shortsword"},
	},
    ["Tenacious Drape"] = {
        ["id"] = 0,
        ["buy"] = 1250,
        ["tier"] = 2,
        ["image"] = "Tenacious Drape.png",
        ["stats"] = {
            ["maxhealth"] = 300,
            ["tenacity"] = 15,
        },
        ["buildsinto"] = {"Unbroken Will", "World Breaker", "Salvation", "Gaia Greaves"},
        ["recipe"] = {"Vitality Beads", "Vitality Beads"},
    },
    ["Vigorous Amulet"] = {
        ["id"] = 0,
        ["buy"] = 1300,
        ["tier"] = 2,
        ["image"] = "Vigorous Amulet.png",
        ["stats"] = {
            ["maxhealth"] = 200,
            ["physicalarmor"] = 20,
        },
        ["buildsinto"] = {"Stonewall", "Tainted Guard", "Warden's Faith", "Citadel", "Giant's Ring"},
        ["recipe"] = {"Vitality Beads", "Tunic"},
    },
    ["Violet Brooch"] = {
        ["id"] = 0,
        ["buy"] = 1000,
        ["tier"] = 2,
        ["image"] = "Violet Brooch.png",
        ["stats"] = {
            ["maxhealth"] = 200,
            ["abilityhaste"] = 8,
        },
        ["buildsinto"] = {"Basilisk", "Tainted Blade", "Flux Matrix", "Raiment of Renewal", "Void Helm", "Echelon Cloak", "Dawnstar"},
        ["recipe"] = {"Vitality Beads", "Pendant"},
    },
    ["Alchemical Rod"] = {
        ["id"] = 0,
        ["buy"] = 1050,
        ["tier"] = 2,
        ["image"] = "Alchemical Rod.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Font",
            ["condition"] = "On Killing any Unit",
            ["description"] = "• Gain {{c|m|5 Max Mana}}.<br>• Camp Leaders grant {{c|m|10}}.<br>• Stacks up to {{c|m|400}}.<br>• At {{c|m|400}}, gain {{c|md|(4%{{Icon|maxmana2}}) Magical Power}}.",
                }
        },
        ["stats"] = {
            ["magicalpower"] = 15,
            ["maxmana"] = 150,
        },
        ["buildsinto"] = {"Azure Core"},
        ["recipe"] = {"Codex", "Spirit Beads"},
    },
    ["Barbaric Cleaver"] = {
        ["id"] = 0,
        ["buy"] = 1350,
        ["tier"] = 2,
        ["image"] = "Barbaric Cleaver.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Cleave",
            ["condition"] = "On Successful Basic Attack",
            
            ["description"] = "• Deal {{c|pd|(+25%{{Icon|physicalpower2}})}} Damage in an area around the Target.<br>• Damage decreases from {{c|td|100%}} to {{c|td|50%}} based on the distance.",
                }
        },
        ["stats"] = {
            ["physicalpower"] = 25,
        },
        ["buildsinto"] = {"Mindrazor", "Overlord"},
        ["recipe"] = {"Shortsword", "Shortsword"},
    },
    ["Barbed Pauldron"] = {
        ["id"] = 0,
        ["buy"] = 1000,
        ["tier"] = 2,
        ["image"] = "Barbed Pauldron.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Lesser Strife",
            ["condition"] = "On being hit by a Basic Attack",
            ["description"] = "• Reduce their {{c|td|Attack Speed}} by {{c|td|2.5%}} for {{c|td|2.5s}}.<br>• Stacks up to {{c|td|5}} times.",
                }
        },
        ["stats"] = {
            ["physicalarmor"] = 25,
        },
        ["buildsinto"] = {"Frostguard"},
        ["recipe"] = {"Tunic", "Tunic"},
    },
    ["Brimstone"] = {
        ["id"] = 0,
        ["buy"] = 1200,
        ["tier"] = 2,
        ["image"] = "Brimstone.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Blaze",
            ["condition"] = "Burn nearby Enemy Units",
            ["description"] = "• Deals {{c|md|12 Magical Damage}} each second.",
                }
        },
        ["stats"] = {
            ["maxhealth"] = 250,
        },
        ["buildsinto"] = {"Fire Blossom"},
        ["recipe"] = {"Vitality Beads", "Vitality Beads"},
    },
    ["Composite Bow"] = {
        ["id"] = 0,
        ["buy"] = 900,
        ["tier"] = 2,
        ["image"] = "Composite Bow.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Honed Strikes",
            ["condition"] = "On Successful Basic Attacks",
            ["description"] = "• Deal {{c|pd|12 Damage}} {{c|td|On-Hit}}.",
                }
        },
        ["stats"] = {
            ["attackspeed"] = 20,
        },
        ["buildsinto"] = {"Onixian Quiver", "Prophecy", "Kingsbane"},
        ["recipe"] = {"Longbow"},
    },
    ["Horned Plate"] = {
        ["id"] = 0,
        ["buy"] = 900,
        ["tier"] = 2,
        ["image"] = "Horned Plate.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Blighted Skin",
            ["condition"] = "On being hit by a Basic Attack",
            ["description"] = "• Reduce the Source's {{c|h|Healing}} by {{c|h|30%}} for {{c|h|3s}}.",
                }
        },
        ["stats"] = {
            ["physicalarmor"] = 25,
        },
        ["buildsinto"] = {"Tainted Guard"},
        ["recipe"] = {"Tunic"},
    },
    ["Loch Shawl"] = {
        ["id"] = 0,
        ["buy"] = 1150,
        ["tier"] = 2,
        ["image"] = "Loch Shawl.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Blighted Veil",
            ["condition"] = "On taking Magical Damage",
            ["description"] = "• Reduce the Source's {{c|h|Healing}} by {{c|h|30%}} for {{c|h|3s}}.",
                }
        },
        ["stats"] = {
            ["healthregeneration"] = 60,
            ["magicalarmor"] = 25,
        },
        ["buildsinto"] = {"Tainted Bastion"},
        ["recipe"] = {"Wraps", "Life Stream"},
    },
    ["Nether Shard"] = {
        ["id"] = 0,
        ["buy"] = 1250,
        ["tier"] = 2,
        ["image"] = "Nether Shard.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Monster Slayer",
            ["description"] = "• Abilities Deal {{c|td|8%}} more damage to {{c|Passive|Monsters}}.",
                }
        },
        ["stats"] = {
            ["magicalpower"] = 35,
            ["abilityhaste"] = 8,
        },
        ["buildsinto"] = {"Spirit of Amir"},
        ["recipe"] = {"Pendant", "Codex"},
    },
    ["Polar Treads"] = {
        ["id"] = 0,
        ["buy"] = 800,
        ["tier"] = 2,
        ["image"] = "Polar Treads.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Celerity",
            ["condition"] = "While out of combat",
            ["description"] = "• Gain {{c|td|8% Movement Speed}}.",
                }
        },
        ["stats"] = {
            ["abilityhaste"] = 10,
        },
        ["buildsinto"] = {"Galaxy Greaves"},
        ["recipe"] = {"Pendant"},
    },
    ["Rapid Rapier"] = {
        ["id"] = 0,
        ["buy"] = 900,
        ["tier"] = 2,
        ["image"] = "Rapid Rapier.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Momentum",
            ["condition"] = "While moving or landing Basic Attacks",
            ["description"] = "• Generate stacks of {{c|td|Momentum}}.<br>• At {{c|td|100}} stacks empower your next Basic Attack.<br>• Deal {{c|pd|30 Damage}}.",
                }
        },
        ["stats"] = {
            ["physicalpower"] = 20,
        },
        ["buildsinto"] = {"Omen", "Storm Breaker", "Lightning Hawk"},
        ["recipe"] = {"Shortsword", "Shortsword"},
    },
    ["Ruthless Broadsword"] = {
        ["id"] = 0,
        ["buy"] = 1350,
        ["tier"] = 2,
        ["image"] = "Ruthless Broadsword.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Corrode",
            ["condition"] = "On damaging a Hero",
            ["description"] = "• Reduce their {{c|pd|Physical Armor}} by {{c|pd|4%}} for {{c|pd|3s}}.<br>• Stacks up to {{c|td|6}} times.<br>• At {{c|td|6}} stacks they become {{c|td|Eroded}}.",
                }
        },
        ["stats"] = {
            ["physicalpower"] = 25,
        },
        ["buildsinto"] = {"Basilisk"},
        ["recipe"] = {"Shortsword", "Shortsword"},
    },
    ["Scalding Sceptre"] = {
        ["id"] = 0,
        ["buy"] = 1300,
        ["tier"] = 2,
        ["image"] = "Scalding Sceptre.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Magi",
            ["description"] = "• Ignore {{c|md|18%}} of {{c|md|Magical Armor}}.",
                }
        },
        ["stats"] = {
            ["magicalpower"] = 30,
        },
        ["buildsinto"] = {"Caustica"},
        ["recipe"] = {"Codex", "Codex"},
    },
    ["Serrated Blade"] = {
        ["id"] = 0,
        ["buy"] = 1000,
        ["tier"] = 2,
        ["image"] = "Serrated Blade.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Blighted Strikes",
            ["condition"] = "On dealing {{c|pd|Physical Damage}}",
            ["description"] = "• Reduce Target's {{c|h|Healing}} by {{c|h|30%}} for {{c|h|3s}}.",
                }
        },
        ["stats"] = {
            ["physicalpower"] = 20,
        },
        ["buildsinto"] = {"Tainted Blade", "Tainted Rounds", "Tainted Trident"},
        ["recipe"] = {"Shortsword", "Shortsword"},
    },
    ["Soul Chalice"] = {
        ["id"] = 0,
        ["buy"] = 1050,
        ["tier"] = 2,
        ["image"] = "Soul Chalice.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Potent Font",
            ["condition"] = "On Killing any Unit",
            ["description"] = "• Gain {{c|m|5 Max Mana}}.<br>• Camp Leaders grant {{c|m|10}}.<br>• Stacks up to {{c|m|400}}.<br>• At {{c|m|400}}, gain {{c|pd|(2.5%{{Icon|maxmana2}}) Physical Power}}.",
                }
        },
        ["stats"] = {
            ["physicalpower"] = 10,
            ["maxmana"] = 150,
        },
        ["buildsinto"] = {"Resolution"},
        ["recipe"] = {"Shortsword", "Spirit Beads"},
    },
    ["Spell Slasher"] = {
        ["id"] = 0,
        ["buy"] = 700,
        ["tier"] = 2,
        ["image"] = "Spell Slasher.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Spellblade",
            ["condition"] = "On Ability Use",
            ["cooldown"] = "1.5s",
            ["description"] = "• Empower your next Basic Attack within {{c|td|4s}}.<br>• Deal {{c|pd|(+80%{{Icon|physicalpower2}}) Damage}}. ",
                }
        },
        ["stats"] = {
            ["abilityhaste"] = 10,
        },
        ["buildsinto"] = {"Oathkeeper", "Elafrost", "Augmentation", "Crescelia"},
        ["recipe"] = {"Pendant"},
    },
    ["Spiked Birch"] = {
        ["id"] = 0,
        ["buy"] = 1050,
        ["tier"] = 2,
        ["image"] = "Spiked Birch.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Blighted Spells",
            ["condition"] = "On dealing {{c|md|Magical Damage}}",
            ["description"] = "• Reduce the Target's {{c|h|Healing}} by {{c|h|30%}} for {{c|h|3s}}.",
                }
        },
        ["stats"] = {
            ["magicalpower"] = 35,
        },
        ["buildsinto"] = {"Tainted Scepter", "Tainted Totem"},
        ["recipe"] = {"Codex", "Codex"},
    },
    ["Void Crystal"] = {
        ["id"] = 0,
        ["buy"] = 1500,
        ["tier"] = 2,
        ["image"] = "Void Crystal.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Lesser Fiend",
            ["condition"] = "On dealing {{c|md|Magical Damage}} to a Hero",
            ["description"] = "• Increase your {{c|md|Magical Damage}} dealt by {{c|md|2%}} for {{c|md|3s}}.<br>• Stacks up to {{C|td|4}} times.",
                }
        },
        ["stats"] = {
            ["magicalpower"] = 35,
        },
        ["buildsinto"] = {"World Breaker"},
        ["recipe"] = {"Scepter"},
    },
    ["Zealous Tomahawk"] = {
        ["id"] = 0,
        ["buy"] = 1350,
        ["tier"] = 2,
        ["image"] = "Zealous Tomahawk.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Desolate",
            ["description"] = "• Ignore {{c|pd|18%}} of {{c|pd|Physical Armor}}.",
                }
        },
        ["stats"] = {
            ["physicalpower"] = 20,
        },
        ["buildsinto"] = {"Demolisher", "The Perforator"},
        ["recipe"] = {"Shortsword", "Shortsword"},
    },
--------------------------------------------------------------------------------
-- Tier 3
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- Carry Items
--------------------------------------------------------------------------------
	["Absolution"] = {
		["id"] = 0,
		["buy"] = 3150,
		["class"] = "Ranger",
		["tier"] = 3,
		["benefit"] = "Cleanse",
		["image"] = "Absolution.png",
		["effects"] = {
			["passive"] = {
				["name"] = "Bravery",
				["description"] = "• Gain {{c|td|25% Damage Mitigation}}.<br>• Gain {{c|td|40% Movement Speed}}.<br>• Lasts {{c|td|3s}}.",
				["condition"] = "On being {{c|i|Immobilized}}",
				["cooldown"] = "45s",
			},
		},
		["stats"] = {
			["physicalpower"] = 40,
			["attackspeed"] = 25, 
			["magicalarmor"] = 20,
			["tenacity"] = 20,
		},
		["recipe"] = {"Ironwood Warbow", "Sabre", "Heroic Guard"},
	},
	["Ashbringer"] = {
		["id"] = 0,
		["buy"] = 2900,
		["class"] = "Ranger",
		["tier"] = 3,
		["benefit"] = "Reduced Cooldowns",
		["image"] = "Ashbringer.png",
		["effects"] = {
			["passive"] = {
				["name"] = "Chrono Strikes",
				["description"] = "• Decrease current Non-Ultimate {{c|td|Cooldowns}} by {{c|td|0.3}}s.<br>• Doubled for {{c|td|Critical Strikes}}.",
				["condition"] = "On Basic Attacking Heroes",
			},
		},
		["stats"] = {
			["physicalpower"] = 45,
			["abilityhaste"] = 25, 
			["criticalchance"] = 20,
		},
		["recipe"] = {"Claymore", "Temporal Ripper"},
	},
    ["Demolisher"] = {
        ["id"] = 0,
        ["image"] = "Demolisher.png",
        ["buy"] = 3200,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Anti-Tank",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Deicide",
                ["description"] = "• Deal {{c|pd|0%-25% Bonus Physical Damage}} to Heroes.<br>• Scales with difference in {{C|h|Max Health}} from {{c|h|0}} to {{c|h|2,500}}.",
            },
            ["passive2"] = {
                ["name"] = "Puncture",
                ["description"] = "• Ignore {{C|pd|30%}} of {{c|pd|Physical Armor}}.",
            },
        },
        ["stats"] = {
            ["criticalchance"] = 20,
            ["physicalpower"] = 35,
        },
        ["recipe"] = {"Zealous Tomahawk", "Sabre", "Crossbow"},
    },
    ["Dust Devil"] = {
        ["id"] = 0,
        ["image"] = "Dust Devil.png",
        ["buy"] = 3150,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Mobility",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Menace",
                ["condition"] = "On Basic Attacking Heroes:",
                ["description"] = "• Gain {{c|td|3% Attack Speed}} for {{c|td|3s}}.<br>• Stacks up to {{c|td|6}} times.<br>• At {{c|td|6}} stacks gain {{c|td|15% Movement Speed}}.<br>• {{c|td|Critical Strikes}} grant {{c|td|2}} stacks.",
            },
        },
        ["stats"] = {
            ["attackspeed"] = 25,
            ["criticalchance"] = 20,
            ["physicalpower"] = 30,
        },
        ["recipe"] = {"Greatsword", "Robust Arbalest"},
    },
    ["Equinox"] = {
        ["id"] = 0,
        ["image"] = "Equinox.png",
        ["buy"] = 3000,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Shielding",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Nightshade",
                ["description"] = "• Upon {{c|td|Critically Striking}}, deal {{c|td|5%}} bonus {{c|td|Damage}}.",
            },
            ["passive2"] = {
                ["name"] = "Adamance",
                ["cooldown"] = "90s",
                ["description"] = "• On going below {{c|h|40% Health}}, gain a {{c|td|200-400 Shield}} for {{c|td|4s}}, {{c|td|Shield}} increases with {{c|m|Level}}.",
            },
        },
        ["stats"] = {
            ["attackspeed"] = 30,
            ["criticalchance"] = 20,
            ["physicalpower"] = 20,
        },
        ["recipe"] = {"Robust Arbalest", "Sabre", "Longbow"},
    },
    ["Imperator"] = {
        ["id"] = 0,
        ["image"] = "Imperator.png",
        ["buy"] = 2550,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Critical Damage",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Precision",
                ["description"] = "• {{c|td|Critical Strikes}} deal {{c|td|25%}} more damage.",
            },
        },
        ["stats"] = {
            ["criticalchance"] = 20,
            ["physicalpower"] = 50,
        },
        ["recipe"] = {"Claymore", "Greatsword"},
    },
    ["Kingsbane"] = {
		["id"] = 0,
		["buy"] = 3200,
		["class"] = "Ranger",
		["tier"] = 3,
		["benefit"] = "On-Hit",
		["image"] = "Kingsbane.png",
		["effects"] = {
			["passive"] = {
            ["name"] = "Regicide",
            ["condition"] = "On Successful Basic Attack",
            ["description"] = "• Deal {{c|pd|15 Damage}} {{c|td|On-Hit}}.<br>• Increases by {{c|td|(+4.5% Attack Speed)}} on subsequent hits per Target.<br>• Resets after not damaging the Target for {{c|td|2s}}.",
                },
		},
		["stats"] = {
			["physicalpower"] = 35, 
			["attackspeed"] = 25,
			["abilityhaste"] = 15,
		},
		["recipe"] = {"Composite Bow", "Temporal Ripper", "Sabre"},
	},
    ["Lightning Hawk"] = {
        ["id"] = 0,
        ["image"] = "Lightning Hawk.png",
        ["buy"] = 3100,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Poke",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Chilling Momentum",
                ["condition"] = "While moving or landing Basic Attacks",
                ["description"] = "• Generate stacks of {{c|td|Momentum}}.<br>• At {{c|td|100}} stacks empower your next Basic Attack.<br>• Deal {{c|pd|40 (+30%{{Icon|physicalpower2}})}} {{c|md|Damage}}.<br>• {{c|i|Slows}} by {{c|i|30%}} for {{c|i|0.75s}}. ",
            },
        },
        ["stats"] = {
            ["attackspeed"] = 25,
            ["criticalchance"] = 20,
            ["physicalpower"] = 40,
        },
        ["recipe"] = {"Rapid Rapier", "Robust Arbalest", "Sabre"},
    },
    ["Nuclear Rounds"] = {
        ["id"] = 0,
        ["image"] = "Nuclear Rounds.png",
        ["buy"] = 3200,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Damage Amplification",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Havoc",
                ["condition"] = "Based on Critical Strike Chance",
                ["description"] = "• Increase Ability Damage by {{c|td|3-15%}}.",
            },
        },
        ["stats"] = {
            ["attackspeed"] = 20,
            ["criticalchance"] = 20,
            ["maxmana"] = 250,
            ["physicalpower"] = 40,
        },
        ["recipe"] = {"Ironwood Warbow", "Spirit Beads", "Claymore"},
    },
    ["Onixian Quiver"] = {
        ["id"] = 0,
        ["image"] = "Onixian Quiver.png",
        ["buy"] = 2900,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Dueling",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Multishot",
                ["condition"] = "On Range Basic Attack",
                ["description"] = "• Fire {{c|td|2}} additional projectiles.<br>• Each deals {{c|pd|16-40%}} (increases with Range)({{Icon|physicalpower2}}) {{c|pd|Damage}}.<br>• Can {{c|td|Critically Strike}} and apply {{c|td|Lifesteal}}.",
            },
            ["passive2"] = {
                ["name"] = "Keen Strikes",
                ["condition"] = "On Successful Basic Attacks",
                ["description"] = "• Deal {{c|pd|20 Damage}} {{c|td|On-Hit}}.",
            },
            ["passive3"] = {
                ["name"] = "Onixia",
                ["condition"] = "For every {{c|h|10% Missing Health}} on Melee Heroes only",
                ["description"] = "• Gain {{C|td|2% Attack Speed}} and {{c|td|1% Damage Mitigation}}.",
            },
        },
        ["stats"] = {
            ["attackspeed"] = 40,
            ["criticalchance"] = 20,
            ["lifesteal"] = 5,
        },
        ["recipe"] = {"Robust Arbalest", "Composite Bow"},
    },
    ["Plasma Blade"] = {
        ["id"] = 0,
        ["image"] = "Plasma Blade.png",
        ["buy"] = 3000,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Offense",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Vibro Cutter",
                ["condition"] = "On Basic Attacking Heroes",
                ["description"] = "• Gain {{c|td|8%}} Critical Strike Chance for {{c|td|3s}}.<br>• Stacks up to {{c|td|5}} times.",
            },
        },
        ["stats"] = {
            ["attackspeed"] = 30,
            ["magicalpower"] = 45,
            ["physicalpower"] = 30,
        },
        ["recipe"] = {"Ironwood Warbow", "Rune Bow"},
    },
    ["Resolution"] = {
        ["id"] = 0,
        ["image"] = "Resolution.png",
        ["buy"] = 3200,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Scaling Mana",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Darksteel",
                ["condition"] = "On Successful Basic Attacks",
                ["description"] = "• Deal (+3% {{Icon|maxmana2}}) {{c|pd|Damage}} {{c|td|On-Hit}}.",
            },
            ["passive2"] = {
                ["name"] = "Potent Font",
                ["condition"] = "On Killing any Unit",
                ["description"] = "• Gain {{c|m|5 Max Mana}}.<br>• Camp Leaders grant {{c|m|10}}.<br>• Stacks up to {{c|m|400}}.<br>• At {{c|m|400}}, gain{{c|pd|(+2.5%{{Icon|maxmana2}})Damage}}.",
            },
        },
        ["stats"] = {
            ["attackspeed"] = 15,
            ["maxmana"] = 300,
            ["physicalpenetration"] = 6,
            ["physicalpower"] = 35,
        },
        ["recipe"] = {"Soul Chalice", "Honed Kris", "Longbow"},
    },
    ["Sky Splitter"] = {
        ["id"] = 0,
        ["image"] = "Sky Splitter.png",
        ["buy"] = 3100,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Anti-Tank",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Rend",
                ["condition"] = "On Successful Basic Attack",
                ["description"] = "• Deal {{c|h|3.5%}} of {{c|h|Target's Current Health}} as {{c|pd|Damage}} {{c|td|On-Hit}}.<br>• Minimum of {{c|pd|15 Damage}}.",
            },
        },
        ["stats"] = {
            ["attackspeed"] = 25,
            ["lifesteal"] = 8,
            ["physicalpower"] = 40,
        },
        ["recipe"] = {"Ironwood Warbow", "Crimson Edge"},
    },
    ["Storm Breaker"] = {
        ["id"] = 0,
        ["image"] = "Storm Breaker.png",
        ["buy"] = 3000,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Area Damage",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Electric Momentum",
                ["description"] = "• Generate stacks of {{c|td|Momentum}}.<br>• At {{c|td|100}} stacks empower your next Basic Attack.<br>• Release a bolt of lightning that chains to {{c|td|7}} Targets.<br>• Deal {{c|md|30}} (+35%{{Icon|physicalpower2}}) {{c|md|Magical Damage}}.<br>• Applies {{c|td|On-Hit}} effects.",
            },
        },
        ["stats"] = {
            ["attackspeed"] = 25,
            ["physicalpower"] = 40,
        },
        ["recipe"] = {"Ironwood Warbow", "Rapid Rapier"},
    },
    ["Tainted Rounds"] = {
        ["id"] = 0,
        ["image"] = "Tainted Rounds.png",
        ["buy"] = 3000,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Anti-Heal",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Blighted Strikes",
                ["condition"] = "On Successful Basic Attacks",
                ["description"] = "• Reduce Target's {{c|h|Healing}} by {{c|h|40%}} for {{c|h|3s}}.<br>• Deal {{c|pd|(+15%{{Icon|physicalpower2}})}} {{c|td|(+20%{{Icon|criticalchance}}) }} {{c|md|Damage}} {{c|td|On-Hit}}.<br>• Increase up to {{c|md|100%}} as the Target's {{c|h|Health}} decreases.",
            },
        },
        ["stats"] = {
            ["attackspeed"] = 25,
            ["criticalchance"] = 20,
            ["physicalpower"] = 30,
        },
        ["recipe"] = {"Serrated Blade", "Robust Arbalest"},
    },
    ["Terminus"] = {
        ["id"] = 0,
        ["image"] = "Terminus.png",
        ["buy"] = 3050,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Sustain",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Grit",
                ["condition"] = "For every {{c|h|10% Missing Health}}",
                ["description"] = "• Gain {{c|td|1% Lifesteal}}.",
            },
            ["passive2"] = {
                ["name"] = "Anon",
                ["condition"] = "On {{c|h|Overhealing}} from Lifesteal",
                ["description"] = "• Convert excess Healing into a {{c|td|Shield}}.<br>• Max {{c|td|Shield}} Size: {{c|pd|(+100%{{Icon|physicalpower2}})}}.<br>• The {{c|td|Shield}} slowly decays {{c|td|15s}} after leaving combat.",
            },
        },
        ["stats"] = {

            ["criticalchance"] = 20,
            ["lifesteal"] = 10,
            ["physicalpower"] = 45,
        },
        ["recipe"] = {"Claymore", "Crimson Edge", "Shortsword"},
    },
    ["Vanquisher"] = {
        ["id"] = 0,
        ["image"] = "Vanquisher.png",
        ["buy"] = 3100,
        ["class"] = "Carry",
        ["tier"] = 3,
        ["benefit"] = "Burst",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Annihilate",
                ["condition"] = "On damaging a Hero below {{c|h|5% Health}}",
                ["description"] = "• Execute them.",
            },
        },
        ["stats"] = {
            ["criticalchance"] = 20,
            ["physicalpenetration"] = 9,
            ["physicalpower"] = 45,
        },
        ["recipe"] = {"Claymore", "Honed Kris"},
    },
--------------------------------------------------------------------------------
-- Mage Items
--------------------------------------------------------------------------------
    ["Astral Catalyst"] = {
        ["id"] = 0,
        ["image"] = "Astral Catalyst.png",
        ["buy"] = 2950,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Multi-Kill",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Ravenous",
                ["condition"] = "On Takedown",
                ["description"] = "• Reduce Ultimate {{c|td|Cooldowns}} by {{c|td|20%}}.",
            },
            ["passive2"] = {
                ["name"] = "Event Horizon",
                ["condition"] = "On damaging a {{c|td|Shielded Target}}",
                ["description"] = "• Deal 30% of the {{c|td|Shield}} as {{c|md|Damage}}.<br>• Does not exceed the size of the {{c|td|Shield}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 15, 
            ["magicalpower"] = 80,
            ["maxmana"] = 250,
        },
        ["recipe"] = {"Dusk Stave", "Chronomatic Wand"},
    },
    ["Azure Core"] = {
        ["id"] = 0,
        ["image"] = "Azure Core.png",
        ["buy"] = 3000,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Scaling Mana",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Spirit Shield",
                ["condition"] = "On going below {{c|h|40% Health}}",
                ["cooldown"] = "90s",
                ["description"] = "• Gain a {{c|h|(+25%{{Icon|maxmana2}})}} {{c|td|Shield}} for {{c|td|5s}}. ",
            },
            ["passive2"] = {
                ["name"] = "Font",
                ["condition"] = "On killing any Unit",
                ["description"] = "• Gain {{c|m|5 Max Mana}}.<br>• Camp Leaders grant {{c|m|10}}.<br>• Stacks up to {{c|m|400}}.<br>• At {{c|m|400}}, gain {{c|md|(4%{{Icon|maxmana2}}) Magical Power}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 15, 
            ["magicalpower"] = 65,
            ["maxmana"] = 350,
        },
        ["recipe"] = {"Alchemical Rod", "Pendant","Dusk Stave"},
    },
    ["Caustica"] = {
        ["id"] = 0,
        ["image"] = "Caustica.png",
        ["buy"] = 2900,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Magical Penetration",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Magus",
                ["description"] = "• Ignore {{c|md|35%}} of {{c|md|Magical Armor}}.",
            },
            ["passive2"] = {
                ["name"] = "Arcane Might",
                ["condition"] = "On dealing {{c|md|Ability Damage}} to a Hero",
                ["description"] = "• While they are above {{c|h|50% Health}}<br>• For every point of Bonus Magical Armor they possess, deal 0.3% more {{c|md|Damage}}.",
            },
        },
        ["stats"] = {
            ["magicalpower"] = 70,
            ["manaregeneration"] = 75,
        },
        ["recipe"] = {"Scalding Sceptre", "Mystic Cane"},
    },
    ["Combustion"] = {
        ["id"] = 0,
        ["image"] = "Combustion.png",
        ["buy"] = 3000,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Burst",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Pyro",
                ["condition"] = "On dealing Ability Damage",
                ["cooldown"] = "15s",
                ["description"] = "• Deal {{c|md|50 (+15%{{Icon|magicalpower2}}) Damage}} to the Target and nearby Enemies.",
            },
            ["passive2"] = {
                ["name"] = "Pyromaniac",
                ["condition"] = "On damaging Heroes",
                ["description"] = "• Reduce the {{c|td|Cooldown}} of {{c|Passive|Pyro}} by {{c|td|0.5s}}.",
            },
        },
        ["stats"] = {
            ["magicalpenetration"] = 7,
            ["magicalpower"] = 75,
            ["maxmana"] = 400,
        },
        ["recipe"] = {"Dusk Stave", "Diffusal Cane"},
    },
    ["Dreambinder"] = {
        ["id"] = 0,
        ["image"] = "Dreambinder.png",
        ["buy"] = 2900,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Slowing Spells",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Chilling Spells",
                ["condition"] = "On dealing Ability Damage",
                ["description"] = "• {{c|i|Slows}} by {{c|i|25%}} for {{c|i|1s}}.<br>• Reduce to {{c|i|10%}} for DoT abilities.",
            },
        },
        ["stats"] = {
            ["magicalpower"] = 90,
            ["maxhealth"] = 350,
        },
        ["recipe"] = {"Chaotic Core", "Potent Staff"},
    },
    ["Golem's Gift"] = {
        ["id"] = 0,
        ["image"] = "Golem's Gift.png",
        ["buy"] = 2900,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Anti-Burst",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Stone Skin",
                ["condition"] = "When out of combat",
                ["description"] = "• Gain {{c|td|5}} stacks of {{c|td|Stone Skin}}.<br>• Gain {{c|md|5 Magical Power}} and {{c|pd|5 Physical Armor}} per stack.",
            },
            ["passive2"] = {
                ["name"] = "Stoneweaver",
                ["description"] = "• On taking {{c|td|Physical Damage}} from a hero: Lose {{c|td|1}} stack.<br>• On casting an Ability: Gain {{c|td|1}} stack.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["magicalpower"] = 65,
            ["manaregeneration"] = 100,
            ["physicalarmor"] = 30,
        },
        ["recipe"] = {"Chronomatic Wand", "Cerulean Stone", "Codex"},
    },
    ["Lifebinder"] = {
        ["id"] = 0,
        ["image"] = "Lifebinder.png",
        ["buy"] = 3050,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Sustain",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Twilght Sonata",
                ["condition"] = "For every {{c|h|10% Missing Health}}",
                ["description"] = "• Gain {{c|md|3 Magical Power}} and {{c|td|1% Magical Lifesteal}}.",
            },
        },
        ["stats"] = {
			["abilityhaste"] = 10,
            ["magicallifesteal"] = 15,
            ["magicalpower"] = 80,
        },
        ["recipe"] = {"Blood Tome", "Pendant", "Blood Tome"},
    },
    ["Magnify"] = {
        ["id"] = 0,
        ["image"] = "Magnify.png",
        ["buy"] = 3050,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Dueling",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Arcana",
                ["condition"] = "While moving or casting Abilities",
                ["description"] = "• Generate stacks of {{c|td|Focus}}.<br>• At 100 stacks empower your next Basic Attack.<br>• Deal {{c|md|50(+25%{{Icon|magicalpower2}}) Damage}}.<br>• Shred {{c|md|15%}} of the Target's {{c|md|Magical Armor}} for {{c|md|4s}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["magicalpower"] = 65,
            ["maxhealth"] = 300,
            ["omnivamp"] = 8,
        },
        ["recipe"] = {"Chaotic Core", "Pendant", "Blood Tome"},
    },
    ["Megacosm"] = {
        ["id"] = 0,
        ["image"] = "Megacosm.png",
        ["buy"] = 3150,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Anti-Tank",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Disintigrate",
                ["condition"] = "On dealing Ability Damage",
                ["description"] = "• Deal {{c|h|3%}} of their {{c|h|Max Health}} as {{c|md|Damage}} over {{c|md|3s}}.",
            },
            ["passive2"] = {
                ["name"] = "Star Killer",
                ["condition"] = "On dealing Ability Damage to Heroes",
                ["description"] = "• Deal {{c|h|6%}} of their {{c|h|Bonus Health}} as {{c|md|Damage}} over {{c|md|3s}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["magicalpower"] = 75,
            ["maxmana"] = 300,
        },
        ["recipe"] = {"Dusk Stave","Chronomatic Wand"},
    },
    ["Noxia"] = {
        ["id"] = 0,
        ["image"] = "Noxia.png",
        ["buy"] = 3050,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Burst",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Evil Eye",
                ["description"] = "• Mark Heroes for 3s upon dealing Ability Damage; with a separate ability, deal damage to a marked hero to activate {{c|Passive|Dark Matter}}.",
            },
            ["passive2"] = {
                ["name"] = "Dark Matter",
                ["cooldown"] = "10s",
                ["description"] = "• Deal {{c|h|5%}} of {{c|h|Max Health}} as bonus {{c|md|Damage}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 20, 
            ["magicalpower"] = 80,
        },
        ["recipe"] = {"Potent Staff", "Chronomatic Wand"},
    },
    ["Oathkeeper"] = {
        ["id"] = 0,
        ["image"] = "Oathkeeper.png",
        ["buy"] = 3100,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Burst",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Celestial Spellblade",
                ["condition"] = "On Ability Cast",
                ["cooldown"] = "1.5s",
                ["description"] = "• Empower your next Basic Attack within {{c|td|4s}}.<br>• Deal {{c|md|(+40%{{Icon|magicalpower2}}){{c|pd|(+80%{{Icon|physicalpower2}}) }} }} {{c|td|On-Hit}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 15, 
            ["magicalpower"] = 80,
            ["maxhealth"] = 250,
        },
        ["recipe"] = {"Chaotic Core", "Spell Slasher", "Scepter"},
    },
    ["Oblivion Crown"] = {
        ["id"] = 0,
        ["image"] = "Oblivion Crown.png",
        ["buy"] = 3500,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Damage Amplification",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Eradicate",
                ["description"] = "• Increase your {{c|md|Magical Power}} by {{c|md|18%}}.",
            },
        },
        ["stats"] = {
            ["magicalpower"] = 110,
        },
        ["recipe"] = {"Potent Staff", "Potent Staff"},
    },
    ["Orb of Growth"] = {
        ["id"] = 0,
        ["image"] = "Orb Of Growth.png",
        ["buy"] = 3000,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Scaling",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Inner Growth",
                ["condition"] = "On Killing Units gain XP",
                ["description"] = "• Minions and Monsters grant {{c|m|6}}.<br>• Camp Leaders grant {{c|m|12}}.<br>• Takedowns grant {{c|m|42}}.<br>• On gaining {{c|m|500}} bonus {{c|m|XP}}:<br>• Enter Base to {{c|td|Evolve}} this item into {{c|Passive|Orb Of Enlightenment}}.",
            },
            ["passive2"] = {
                ["name"] = "Art of Fortune",
                ["condition"] = "On Ability Cast",
                ["description"] = "• Restore {{c|h|3%}} of {{c|h|Missing Health}} over {{c|h|3s}}.",
            },
        },
        ["stats"] = {
            ["magicalpower"] = 65,
            ["maxhealth"] = 250,
            ["maxmana"] = 250,
        },
        ["buildsinto"] = {"Orb of Enlightenment"},
        ["recipe"] = {"Dusk Stave", "Chaotic Core"},
    },
    ["Orb of Enlightenment"] = {
        ["id"] = 0,
        ["image"] = "Orb Of Enlightenment.png",
        ["buy"] = 3000,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Scaling",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Enlightened",
                ["condition"] = "For each Hero Level",
                ["description"] = "• Gain {{c|md|3 Magical Power}}.<br>• {{c|h|Gain 12 Health}}.",
            },
            ["passive2"] = {
                ["name"] = "Art of Fortitude",
                ["condition"] = "On Ability Cast",
                ["description"] = "• Restore {{c|h|3% Missing Health}} over {{c|h|3s}}.",
            },
        },
        ["stats"] = {
            ["magicalpower"] = 65,
            ["maxhealth"] = 250,
            ["maxmana"] = 250,
        },
        ["recipe"] = {"Orb of Growth"},
    },
    ["Prophecy"] = {
        ["id"] = 0,
        ["image"] = "Prophecy.png",
        ["buy"] = 3150,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "On-Hit",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Magical Strikes",
                ["condition"] = "On Basic Attack",
                ["description"] = "• Deal {{c|md|20 (+20%{{Icon|magicalpower2}}) Damage}} {{c|td|On-Hit}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 25, 
            ["attackspeed"] = 35,
            ["magicalpower"] = 80,
        },
        ["recipe"] = {"Chronomatic Wand", "Scepter", "Composite Bow"},
    },
    ["Soulbinder"] = {
        ["id"] = 0,
        ["image"] = "Soulbinder.png",
        ["buy"] = 3000,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Poke",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Arcane Salvo",
                ["condition"] = "Damaging Heroes from afar",
                ["cooldown"] = "10s",
                ["description"] = "• Deal {{c|td|8%}} bonus {{c|td|Damage}}.<br>• Permanently gain {{c|md|1 Magical Power}}.<br>• Activates at 1,500+ Range.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 15, 
            ["magicalpower"] = 75,
            ["maxmana"] = 400,
        },
        ["recipe"] = {"Chronomatic Wand", "Dusk Stave"},
    },
    ["Spellbreaker"] = {
        ["id"] = 0,
        ["image"] = "Spellbreaker.png",
        ["buy"] = 3000,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Spell Shield",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Veil",
                ["cooldown"] = "45s",
                ["description"] = "• Gain a {{c|td|Spell Shield}} that blocks the next Ability.",
            },
            ["passive2"] = {
                ["name"] = "Malefic",
                ["condition"] = "While {{c|Passive|Veil}} is active",
                ["description"] = "• Increase your {{c|md|Magical Power}} by {{c|md|15%}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["magicalarmor"] = 35,
            ["magicalpower"] = 75,
        },
        ["recipe"] = {"Chronomatic Wand", "Scepter", "Nullifying Mask"},
    },
    ["Spirit of Amir"] = {
        ["id"] = 0,
        ["image"] = "Spirit Of Amir.png",
        ["buy"] = 3000,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Sustain",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Natural Selection",
                ["condition"] = "Gain Effects, based on your location",
                ["description"] = "• {{c|Passive|In the Jungle:}} Gain {{c|td|8% Magical Lifesteal}}.<br>• {{c|Passive|Outside the Jungle:}} Gain {{c|md|8% Magical Power}}.",
            },
            ["passive2"] = {
                ["name"] = "Monster Slayer",
                ["description"] = "• Abilities deal {{c|td|8%}} more damage to {{c|Passive|Monsters}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["magicalpenetration"] = 8,
            ["magicalpower"] = 75,
        },
        ["recipe"] = {"Nether Shard", "Diffusal Cane"},
    },
    ["Tainted Scepter"] = {
        ["id"] = 0,
        ["image"] = "Tainted Scepter.png",
        ["buy"] = 3050,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Anti-Heal",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Blighted Spells",
                ["condition"] = "On dealing {{c|md|Magical Damage}}",
                ["description"] = "• Reduce Target's {{c|h|Healing}} for {{c|h|40%}} for {{c|h|4s}}.",
            },
            ["passive2"] = {
                ["name"] = "Malice",
                ["condition"] = "Once every second",
                ["description"] = "• Gain a stack of {{c|td|Malice}}.<br>• Stacks up to {{c|td|15}} times.<br>• Takedowns grant {{c|td|15}} stacks instantly.<br>• Hitting a Hero with Ability Damage will deal {{c|td|4}}{{c|md|(+1%{{Icon|magicalpower2}})}} {{c|td|Damage}} per stack.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["magicalpower"] = 75,
            ["maxhealth"] = 200,
        },
        ["recipe"] = {"Spiked Birch", "Pendant", "Chaotic Core"},
    },
    ["Timewarp"] = {
        ["id"] = 0,
        ["image"] = "Timewarp.png",
        ["buy"] = 3200,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Reduce Cooldowns",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Chime",
                ["condition"] = "Every 8s",
                ["description"] = "• Subtract {{c|td|1s}} from Non-Ultimate {{c|td|Cooldowns}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 15, 
            ["magicalpower"] = 80,
            ["manaregeneration"] = 175,
        },
        ["recipe"] = {"Mystic Cane", "Chronomatic Wand", "Codex"},
    },
    ["World Breaker"] = {
        ["id"] = 0,
        ["image"] = "World Breaker.png",
        ["buy"] = 3200,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Fiend",
                ["condition"] = "On dealing {{c|md|Magical Damage}} to a Hero",
                ["description"] = "• Increase your {{c|md|Magical Damage}} dealt by {{c|md|2%}} for {{c|md|3s}}.<br>• Stacks up to {{c|td|6}} times.",
            },
            ["passive2"] = {
                ["name"] = "Maya",
                ["description"] = "• Gain {{c|h|(5%{{Icon|maxhealth2}})}} {{c|md|Magical Power}}.",
            },
        },
        ["stats"] = {
            ["magicalpower"] = 40,
            ["maxhealth"] = 300,
            ["tenacity"] = 20,
        },
        ["recipe"] = {"Void Crystal", "Tenacious Drape"},
    },
    ["Wraith Leggings"] = {
        ["id"] = 0,
        ["image"] = "Wraith Leggings.png",
        ["buy"] = 3100,
        ["class"] = "Mage",
        ["tier"] = 3,
        ["benefit"] = "Mobility",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Carnage",
                ["condition"] = "Against Heroes below {{c|h|40% Health}}",
                ["description"] = "• Abilities deal {{c|md|12%}} more {{c|md|Magical Damage}}.",
            },
        },
        ["stats"] = {
            ["magicalpenetration"] = 10,
            ["magicalpower"] = 90,
            ["movementspeed"] = 5,
        },
        ["recipe"] = {"Diffusal Cane", "Potent Staff"},
    },

--------------------------------------------------------------------------------
-- Support Items items
--------------------------------------------------------------------------------
    ["Crescelia"] = {
        ["id"] = 0,
        ["image"] = "Crescelia.png",
        ["buy"] = 2600,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "Reduce Cooldowns",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Moonblade",
                ["condition"] = "On Ability Cast",
                ["cooldown"] = "1.5s",
                ["description"] = "• Empower your next Basic Attack within 4s.<br>• Deal {{c|md|(+25%{{Icon|magicalpower2}})}} {{c|pd|(+80%{{Icon|physicalpower2}})}} {{c|md|Damage}} {{c|td|On-Hit}}.<br>• Reduce Non-Ultimate {{c|td|Cooldowns}} by {{c|td|15%}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 20, 
            ["magicalpower"] = 40,
            ["manaregeneration"] = 100,
        },
        ["recipe"] = {"Mystic Cane", "Spell Slasher", "Codex"},
    },
    ["Crystal Tear"] = {
        ["id"] = 0,
        ["image"] = "Crystal Tear.png",
        ["buy"] = 2650,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "Utility",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Elation",
                ["condition"] = "On {{c|h|Healing}} or {{c|td|Shielding}} Allies",
                ["description"] = "• You both gain {{c|md|30 Magical Power}} for {{c|td|5s}}.<br>• You both gain {{c|td|15 Ability Haste}} for {{c|td|5s}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["healshieldincrease"] = 10,
            ["magicalpower"] = 40,
            ["manaregeneration"] = 150,
        },
        ["recipe"] = {"Essence Ring", "Divine Wreath", "Codex"},
    },
    ["Dawnstar"] = {
        ["id"] = 0,
        ["image"] = "Dawnstar.png",
        ["buy"] = 2600,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "Defensive Aura",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Debilitating Strikes",
                ["condition"] = "On Successfully Basic Attacking Heroes",
                ["description"] = "• Reduce their damage dealt by {{c|i|2%}} for {{c|i|3s}}.<br>• Stacks up to {{c|td|5}} times.<br>• Melee Basic Attacks apply {{c|td|2}} stacks.",
            },
            ["passive2"] = {
                ["name"] = "Crusader",
                ["condition"] = "On {{c|i|Immoblizing}} Heroes",
                ["description"] = "• Gain {{c|td|20% Attack Speed}} for {{c|td|2.5s}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["manaregeneration"] = 75,
            ["maxhealth"] = 300,
            ["physicalarmor"] = 20,
        },
        ["recipe"] = {"Violet Brooch", "Life Ring"},
    },
    ["Dynamo"] = {
        ["id"] = 0,
        ["image"] = "Dynamo.png",
        ["buy"] = 2600,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "Magical Shred",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Immoblizer",
                ["condition"] = "On Immoblizing an Enemy",
                ["description"] = "• They take {{c|td|8%}} more damage for {{c|td|2.5s}}.",
            },
            ["passive2"] = {
                ["name"] = "Adaptive Aggression",
                ["description"] = "• Gain {{c|pd|20 Physical Power}}.<br>• When your {{c|md|Magical Power}}>{{c|pd|Bonus Physical Power}}<br>• Gain {{c|md|30 Magical Power}} instead.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["maxhealth"] = 300,
            ["physicalarmor"] = 20,
        },
        ["recipe"] = {"Gilded Pendant", "Banded Emerald"},
    },
    ["Everbloom"] = {
        ["id"] = 0,
        ["image"] = "Everbloom.png",
        ["buy"] = 2650,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "Healing & Shielding",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Divine Protection",
                ["condition"] = "On {{c|h|Healing}} or {{c|td|Shielding}} Allies",
                ["description"] = "• Grants them {{c|td|5% Damage Mitigation}} and {{c|td|15% Tenacity}} for {{c|td|2s}}.",
            },
        },
        ["stats"] = {
            ["healshieldincrease"] = 8,
            ["magicalpower"] = 45,
            ["maxhealth"] = 200,
        },
        ["recipe"] = {"Divine Wreath", "Chaotic Core"},
    },
    ["Frosted Lure"] = {
        ["id"] = 0,
        ["image"] = "Frosted Lure.png",
        ["buy"] = 2700,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "Defense",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Frostwave",
                ["condition"] = "On being near Enemy Heroes for 4s",
                ["cooldown"] = "45s",
                ["description"] = "• Deal {{c|td|50 {{c|h|(+5%{{Icon|maxhealth2}})}} Damage}} to nearby Heroes.<br>• {{c|i|Slows}} by {{c|i|40%}} for {{c|i|1.5s}}.<br>• {{c|td|Shields}} you for {{c|td|140%}} of the damage dealt {{c|td|4s}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["maxhealth"] = 400,
            ["physicalarmor"] = 30,
        },
        ["recipe"] = {"Gilded Pendant", "Banded Emerald"},
    },
    ["Galaxy Greaves"] = {
        ["id"] = 0,
        ["image"] = "Galaxy Greaves.png",
        ["buy"] = 2600,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "ZeroG",
                ["condition"] = "While moving",
                ["description"] = "• Generate stacks of ZeroG.<br>• at {{c|td|100}} stacks your next jump has increased height.",
            },
            ["passive2"] = {
                ["name"] = "Celerity",
                ["condition"] = "While out of combat",
                ["description"] = "• Gain {{c|td|10%}} Movement Speed",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["magicalarmor"] = 20,
            ["manaregeneration"] = 150,
            ["physicalarmor"] = 30,
        },
        ["recipe"] = {"Cerulean Stone", "Polar Treads", "Wraps"},
    },
    ["Hexbound Bracers"] = {
        ["id"] = 0,
        ["image"] = "Hexbound Bracers.png",
        ["buy"] = 2650,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "Reduce Cooldowns",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Mana Reactor",
                ["description"] = "• Restore {{c|m|Mana}} Equal to {{c|m|30%}} of damage taken.",
            },
            ["passive2"] = {
                ["name"] = "Hexed Guard",
                ["description"] = "• Take {{c|td|4 (+1% per Level)}} less damage from Hero Basic Attacks.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 20, 
            ["manaregeneration"] = 100,
            ["physicalarmor"] = 40,
        },
        ["recipe"] = {"Life Ring", "Gilded Pendant"},
    },
    ["Lunaria"] = {
        ["id"] = 0,
        ["image"] = "Lunaria.png",
        ["buy"] = 2650,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "Healing & Shielding",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Incandescence",
                ["condition"] = "On dealing Damage",
                ["description"] = "• Gain charges equal to {{c|td|30%}} of damage dealt.<br>• Charge limit: 100-360 based on {{c|m|Level}}.",
            },
            ["passive2"] = {
                ["name"] = "Mending",
                ["condition"] = "On {{c|h|Healing}} or {{c|td|Shielding}} an ally Hero",
                ["description"] = "• Consume all {{c|Passive|Incandescence}} charges.<br>• {{c|h|Heal}} them all for the amount<br>• Prioritize the {{c|h|Lowest Health}} Target.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["magicalpower"] = 55,
            ["healshieldincrease"] = 8,
        },
        ["recipe"] = {"Divine Wreath", "Chronomatic Wand"},
    },
    ["Marshal"] = {
        ["id"] = 0,
        ["image"] = "Marshal.png",
        ["buy"] = 2600,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "On-Hit Aura",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Sherrif",
                ["condition"] = "Buff yourself and nearby Allies to",
                ["description"] = "• Gain {{c|td|15% Attack Speed}}.<br>• Deal {{c|md|8 {{c|td|(+2 Per Level)}} Damage}} {{c|td|On-Hit}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 15, 
            ["magicalpower"] = 50,
            ["manaregeneration"] = 125,
        },
        ["recipe"] = {"Mystic Cane", "Chronomatic Wand"},
    },
    ["Tainted Totem"] = {
        ["id"] = 0,
        ["image"] = "Tainted Totem.png",
        ["buy"] = 2700,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "Anti-Heal",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Blighted Touch",
                ["condition"] = "On dealing damage",
                ["description"] = "• Reduce the Target's {{c|h|Healing}} by {{c|h|40%}} for {{c|h|3s}}.",
            },
            ["passive2"] = {
                ["name"] = "Blighted Well",
                ["condition"] = "On {{c|h|Healing}} or {{c|td|Shielding}} Allies",
                ["description"] = "• Grant them {{c|Passive|Blighted Touch}} for {{c|Passive|4s}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["magicalpower"] = 40,
            ["manaregeneration"] = 125,
            ["maxhealth"] = 200,
        },
        ["recipe"] = {"Spiked Birch", "Essence Ring", "Vitality Beads"},
    },
    ["Truesilver Bracelet"] = {
        ["id"] = 0,
        ["image"] = "Truesilver Bracelet.png",
        ["buy"] = 2700,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "Anti-Disruption",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Reprisal",
                ["condition"] = "On casting you Ultimate",
                ["cooldown"] = "40s",
                ["description"] = "• Gain a {{c|td|150 {{c|h|(+20%{{Icon|maxhealth2}})}} Shield}} for {{c|td|4s}}.<br>• While the {{c|td|Shield}} holds you are {{c|td|CC Immune}}.<br>• When removed, it explodes dealing {{c|md|Damage}} equal to {{c|td|40%}} of the Initial {{c|td|Shield}}.",
            },
        },
        ["stats"] = {
            ["magicalpower"] = 45,
            ["manaregeneration"] = 75,
            ["maxhealth"] = 250,
        },
        ["recipe"] = {"Mystic Cane", "Chaotic Core"},
    },
    ["Vanguardian"] = {
        ["id"] = 0,
        ["image"] = "Vanguardian.png",
        ["buy"] = 2600,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "Defense Aura",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Guardian",
                ["condition"] = "Neraby Allied Heroes gain",
                ["description"] = "• {{c|pd|12 Physical Armor}}.<br>• {{c|md|10 Magical Armor}}.",
            },
        },
        ["stats"] = {
            ["magicalarmor"] = 30,
            ["physicalarmor"] = 30,
            ["tenacity"] = 20,
        },
        ["recipe"] = {"Steel Mail", "Heroic Guard"},
    },
    ["Windcaller"] = {
        ["id"] = 0,
        ["image"] = "Windcaller.png",
        ["buy"] = 2600,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "Mobility",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Zephyr",
                ["condition"] = "On {{c|h|Healing}} or {{c|td|Shielding}} an Ally",
                ["cooldown"] = "8s",
                ["description"] = "• You both gain {{c|td|12% Movement Speed}} for {{c|td|1.5s}}.<br>• Cooldown is per Target.",
            },
        },
        ["stats"] = {
            ["healshieldincrease"] = 10,
            ["magicalpower"] = 45,
            ["manaregeneration"] = 100,
            ["movementspeed"] = 3,
        },
        ["recipe"] = {"Mystic Cane", "Divine Wreath"},
    },

--------------------------------------------------------------------------------
-- Tank items
--------------------------------------------------------------------------------
    ["Crystalline Cuirass"] = {
        ["id"] = 0,
        ["image"] = "Crystalline Cuirass.png",
        ["buy"] = 3100,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["benefit"] = "Anti-Magic",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Celestial Carapace",
                ["condition"] = "On taking Magical Damage",
                ["description"] = "• Gain a stack of {{c|td|Celestite}} for {{c|td|5s}}.<br>• Stacks up to {{c|td|6}} times.<br>• Stacks can only be gained once every {{c|td|0.5s}}.",
            },
            ["passive2"] = {
                ["name"] = "Celestite",
                ["description"] = "• Gain {{c|md|5 Magical Armor}} per stack.<br>• At {{c|td|6}} stacks gain {{c|td|15% Movement Speed}}.",
            },
        },
        ["stats"] = {
            ["healthregeneration"] = 75,
            ["magicalarmor"] = 45,
            ["maxhealth"] = 250,
        },
        ["recipe"] = {"Nullifying Mask", "Stalwart Gauntlets", "Nullifying Mask"},
    },
    ["Elafrost"] = {
        ["id"] = 0,
        ["image"] = "Elafrost.png",
        ["buy"] = 3000,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["benefit"] = "Area Damage",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Frostblade",
                ["condition"] = "On Ability Cast",
                ["cooldown"] = "1.5s",
                ["description"] = "• Empower your next Basic Attack within {{c|td|4s}}.<br>• Deal {{c|md|20}} {{c|pd|(+80%{{Icon|physicalpower2}}) }} {{c|h|(+2%{{Icon|maxhealth2}}) }} {{c|md|Damage}} {{c|td|On-Hit}} around the target.<br>• {{c|i|Slows}} by {{c|i|20%}} for {{c|i|0.5s}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 15, 
            ["manaregeneration"] = 150,
            ["maxhealth"] = 300,
            ["physicalarmor"] = 30,
        },
        ["recipe"] = {"Cerulean Stone", "Spell Slasher", "Banded Emerald"},
    },
	["Fire Blossom"] = {
        ["id"] = 0,
        ["image"] = "Fire Blossom.png",
        ["buy"] = 3000,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["benefit"] = "Area Damage",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Heatwave",
                ["condition"] = "Burn nearby Enemy Units",
                ["description"] = "• Deals {{c|md|15}} {{c|h|(+1% Max Health)}} {{c|md|Damage}} per second.",
            },
            ["passive2"] = {
                ["name"] = "Firestorm",
                ["condition"] = "When {{c|Passive|Heatwave}} damages a Target",
                ["description"] = "• Deals {{c|td|6.25%}} more damage each second, up to {{c|td|50%}}.<br>• Resets after not damaging the Target for {{c|td|2.5s}}.",
            },
        },
        ["stats"] = {
            ["maxhealth"] = 350,
            ["physicalarmor"] = 40,
        },
        ["recipe"] = {"Brimstone", "Steel Mail"},
    },
    ["Fist Of Razuul"] = {
        ["id"] = 0,
        ["image"] = "Fist Of Razuul.png",
        ["buy"] = 3000,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["benefit"] = "Dueling",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Razuul's Might",
                ["condition"] = "When dealing or receiveing damage",
                ["description"] = "• For the next 3s, generate a stack each second.<br>• Upon reaching 5 stacks, Empower your next Basic Attack.<br>• Deals {{c|h|(+3%{{Icon|maxhealth2}})}} bonus {{c|md|Damage}}, increased by {{c|td|2x}} on Heroes.<br>• {{c|h|Heal}} for {{c|td|100%}} of the bonus damage dealt.",
            },
            ["passive2"] = {
                ["name"] = "Minion Crusher",
                ["description"] = "• Deal {{c|td|30%}} Increased damage to {{c|Passive|Minions}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 20, 
            ["maxhealth"] = 550,
        },
        ["recipe"] = {"Banded Emerald", "Gilded Pendant", "Vitality Beads"},
    },
    ["Flux Matrix"] = {
        ["id"] = 0,
        ["image"] = "Flux Matrix.png",
        ["buy"] = 2850,
        ["class"] = "Support",
        ["tier"] = 3,
        ["benefit"] = "Offensive Aura",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Unstable Shackles",
                ["condition"] = "Nearby Enemy Heroes",
                ["description"] = "• Take {{c|md|10%}} additional {{c|md|Magical Damage}}.<br>• Have their {{c|td|Tenacity}} decreased by {{c|td|20%}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["maxhealth"] = 350,
            ["physicalarmor"] = 35,
        },
        ["recipe"] = {"Violet Brooch", "Nullifying Mask", "Pendant"},
    },
    ["Frostguard"] = {
        ["id"] = 0,
        ["image"] = "Frostguard.png",
        ["buy"] = 3150,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["benefit"] = "Defense",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Chilling Presence",
                ["condition"] = "On being near Enemy Heroes",
                ["description"] = "• Apply a stack of {{c|Passive|Stifle}} every {{c|Passive|1s}}.",
            },
            ["passive2"] = {
                ["name"] = "Stifle",
                ["condition"] = "On being hit by a Basic Attack",
                ["description"] = "• Reduce their {{c|td|Attack Speed}} by {{c|td|3%}} for {{c|td|2.5s}}.<br>• Stacks up to {{c|td|5}} times.",
            },
        },
        ["stats"] = {
            ["healthregeneration"] = 100,
            ["magicalarmor"] = 30,
            ["physicalarmor"] = 50,
        },
        ["recipe"] = {"Barbed Pauldron", "Life Ring", "Nullifying Mask"},
    },
    ["Giant's Ring"] = {
        ["id"] = 0,
        ["image"] = "Giant's Ring.png",
        ["buy"] = 3100,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["benefit"] = "Reduce Cooldowns",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Retribution",
                ["condition"] = "When hit by a Basic Attack",
                ["cooldown"] = "0.5s",
                ["description"] = "• Reduce your Non-Ultimate {{c|td|Cooldowns}} by {{c|td|0.25s}}.",
            },
            ["passive2"] = {
                ["name"] = "Gigantism",
                ["condition"] = "On casting your Ultimate",
                ["cooldown"] = "30s",
                ["description"] = "• Gain {{c|td|15% Hero Size}}.<br>• {{c|td|Mitigate 5%}} of damage taken.<br>• Double the effectiveness of {{c|Passive|Retribution}} for {{c|Passive|6s}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 15, 
            ["maxhealth"] = 350,
            ["physicalarmor"] = 45,
        },
        ["recipe"] = {"Vigorous Amulet", "Gilded Pendant"},
    },
    ["Raiment of Renewal"] = {
        ["id"] = 0,
        ["image"] = "Raiment of Renewal.png",
        ["buy"] = 3100,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["benefit"] = "Sustain",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Regenerator",
                ["condition"] = "While Out of Combat",
                ["description"] = "• {{c|h|Regenerate 3%}} of your {{c|h|Missing Health}} each second.",
            },
            ["passive2"] = {
                ["name"] = "Synthesis",
                ["condition"] = "For each Level",
                ["description"] = "• Gain {{c|h|5%}} additional Base {{c|h|Health Regen}}.",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["healthregeneration"] = 50,
            ["maxhealth"] = 650,
        },
        ["recipe"] = {"Violet Brooch", "Life Stream", "Banded Emerald"},
    },
    ["Stonewall"] = {
        ["id"] = 0,
        ["image"] = "Stonewall.png",
        ["buy"] = 3100,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["benefit"] = "Defense",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Bulwark",
                ["description"] = "• Mitigate {{c|pd|5 (+5%{{Icon|physicalpower2}})%}} of {{c|pd|Physical Damage}}.",
            },
        },
        ["stats"] = {
            ["maxhealth"] = 350,
            ["physicalarmor"] = 60,
        },
        ["recipe"] = {"Steel Mail", "Gilded Pendant"},
    },
    ["Tainted Bastion"] = {
        ["id"] = 0,
        ["image"] = "Tainted Bastion.png",
        ["buy"] = 3000,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["benefit"] = "Anti-Heal",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Blighted Veil",
                ["condition"] = "On taking {{c|md|Magical Damage}}",
                ["description"] = "• Reduce the Source's {{c|h|Healing}} by {{c|h|40%}} for {{c|h|3s}}.",
            },
            ["passive2"] = {
                ["name"] = "Colossus",
                ["description"] = "• {{c|td|Mitigate 3%}} of damage taken. <br>• Doubled against {{c|td|Blighted}} targets.",
            },
        },
        ["stats"] = {
            ["maxhealth"] = 400,
            ["magicalarmor"] = 35,
            ["healthregeneration"] = 75,
        },
        ["recipe"] = {"Loch Shawl", "Banded Emerald"},
    },
    ["Tainted Guard"] = {
        ["id"] = 0,
        ["image"] = "Tainted Guard.png",
        ["buy"] = 3000,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["benefit"] = "Anti-Heal",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Blighted Thorns",
                ["condition"] = "On being hit by a Basic Attack",
                ["description"] = "• Reduce the Target's {{c|h|Healing}} by {{c|h|40%}} for {{c|h|3s}}.<br>• Apply a {{c|td|Bleed}} dealing {{c|md|60}} {{c|pd|(+30%{{Icon|physicalarmor}})}} {{c|md|Damage}} over {{c|td|3s}}..",
            },
        },
        ["stats"] = {
            ["abilityhaste"] = 10, 
            ["maxhealth"] = 300,
            ["physicalarmor"] = 45,
        },
        ["recipe"] = {"Horned Plate", "Pendant", "Vigorous Amulet"},
    },
    ["Unbroken Will"] = {
        ["id"] = 0,
        ["image"] = "Unbroken Will.png",
        ["buy"] = 2950,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["benefit"] = "Anti-Disruption",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Undying",
                ["condition"] = "On being {{c|i|Immoblized}}",
                ["description"] = "• Increase your {{c|pd|Physical Armor}} by {{c|pd|25%}} for {{c|pd|2.5s}}.<br>• Increase your {{c|md|Magical Armor}} by {{c|md|25%}} for {{c|md|2.5s}}.",
            },
        },
        ["stats"] = {
            ["magicalarmor"] = 30,
            ["maxhealth"] = 500,
            ["tenacity"] = 20,
        },
        ["recipe"] = {"Tenacious Drape", "Nullifying Mask", "Vitality Beads"},
    },
    ["Void Helm"] = {
        ["id"] = 0,
        ["image"] = "Void Helm.png",
        ["buy"] = 3000,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["benefit"] = "Anti Magic",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Anima",
                ["description"] = "• {{c|h|Heal 15%}} more from all sources.",
            },
        },
        ["stats"] = {
            ["maxhealth"] = 500,
            ["magicalarmor"] = 30,
            ["abilityhaste"] = 10,
        },
        ["recipe"] = {"Nullifying Mask", "Violet Brooch", "Banded Emerald"},
    },
    ["Warden's Faith"] = {
        ["id"] = 0,
        ["image"] = "Warden's Faith.png",
        ["buy"] = 3200,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["benefit"] = "Anti-Crit",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Stalwart",
                ["description"] = "• Take {{c|td|15%}} less damage from {{c|td|Critical Strikes}}.",
            },
            ["passive2"] = {
                ["name"] = "Mocking Presence",
                ["condition"] = "Nearby Enemy Heroes",
                ["description"] = "• Have their {{c|pd|Physical Power}} reduced by {{c|pd|5%}}.",
            },
        },
        ["stats"] = {
            ["maxhealth"] = 300,
            ["physicalarmor"] = 70,
        },
        ["recipe"] = {"Steel Mail", "Vigorous Amulet"},
    },

--------------------------------------------------------------------------------
-- Fighter items
--------------------------------------------------------------------------------
	["Augmentation"] = {
        ["id"] = 0,
        ["image"] = "Augmentation.png",
        ["buy"] = 3250,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "On-Hit",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "True Strike",
                ["cooldown"] = "1.5s",
                ["condition"] = "On Ability use",
                ["description"] = "• Empower your next Basic Attack within {{c|td|4s}}.<br>• Deal {{c|pd|(+120% {{Icon|physicalpower2}})}} {{c|td|True Damage On-Hit}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 35, 
            ["maxhealth"] = 300,
            ["abilityhaste"] = 20,
        },
        ["recipe"] = {"Temporal Ripper", "Spell Slasher", "Banded Emerald"},
    },
    ["Basilisk"] = {
        ["id"] = 0,
        ["image"] = "Basilisk.png",
        ["buy"] = 3150,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "Physical Shred",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Corrode",
                ["condition"] = "On damaging a Hero",
            	["description"] = "• Reduce their {{c|pd|Physical Armor}} by {{c|pd|4%}} for {{c|pd|3s}}.<br>• Stacks up to {{c|td|6}} times.<br>• At {{c|td|6}} stacks they become {{c|td|Eroded}}.",
            },
            ["passive2"] = {
                ["name"] = "Eminence",
                ["condition"] = "When Basic Attacking {{c|td|Eroded}} Heroes",
                ["description"] = "• Deal {{c|h|3% Target Missing Health}} as {{c|pd|Damage}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 45,
            ["maxhealth"] = 300, 
            ["abilityhaste"] = 15,
        },
        ["recipe"] = {"Ruthless Broadsword", "Violet Brooch", "Shortsword"},
    },
    ["Berserker's Axe"] = {
        ["id"] = 0,
        ["image"] = "Berserker's Axe.png",
        ["buy"] = 3050,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "Mobility",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Blitz",
                ["cooldown"] = "10s",
                ["condition"] = "On Dashing or Leaping",
            	["description"] = "• Empower your next Basic Attack within {{c|td|12s}}.<br>• Deal {{c|pd|40}} {{c|h|(+2.5%{{Icon|maxhealth2}})}} {{c|pd|Damage}}.<br>• {{c|i|Slows}} by {{c|i|50%}} for {{c|i|0.75s}}.<br>• Basic Attacks reduce {{c|Passive|Blitz's}} {{c|Passive|Cooldown}} by {{c|Passive|0.5s}}.",
            },
            ["passive2"] = {
                ["name"] = "Mist Runner",
                ["condition"] = "On crossing a Fog Wall",
                ["description"] = "• Gain {{c|td|20% Movement Speed}} for {{c|td|1.5s}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 40,
            ["maxhealth"] = 300, 
            ["abilityhaste"] = 15,
            ["movementspeed"] = 3,
        },
        ["recipe"] = {"Temporal Ripper", "Stone of Strength"},
    },
    ["Bonesaw"] = {
        ["id"] = 0,
        ["image"] = "Bonesaw.png",
        ["buy"] = 3000,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "On-Hit",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Colossal Sunder",
                ["condition"] = "On every third Basic Attack",
            	["description"] = "• Deal {{c|h|(+2%{{Icon|maxhealth2}})}} {{c|pd|Damage}}.<br>• {{c|i|Slows}} by {{c|i|20%}} for {{c|i|1s}}.<br>• Gain {{c|td|10% Attack Speed}} for {{c|td|5s}}.<br>• Stacks up to {{c|td|3}} times.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 35,
            ["maxhealth"] = 500, 
        },
        ["recipe"] = {"Stone of Strength", "Banded Emerald"},
    },
    ["Citadel"] = {
        ["id"] = 0,
        ["image"] = "Citadel.png",
        ["buy"] = 3150,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "Teamfight Durability",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Fortification",
                ["condition"] = "For each nearby Enemy Hero",
            	["description"] = "• Gain {{c|pd|5 Physical Armor}}.",
            },
            ["passive2"] = {
                ["name"] = "Intimidation",
                ["condition"] = "Nearby Enemy Heroes",
                ["description"] = "• {{c|pd|Physical Armor}} decreased by {{c|pd|20%}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 35,
            ["maxhealth"] = 200, 
            ["physicalarmor"] = 35,
        },
        ["recipe"] = {"Fortified Mantle", "Vigorous Amulet"},
    },
    ["Draconum"] = {
        ["id"] = 0,
        ["image"] = "Draconum.png",
        ["buy"] = 3050,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "Sustained Fighting",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Surge",
                ["condition"] = "On dealing damage to Heroes or Monsters",
            	["description"] = "• Gain {{c|h|2.5%}} increased {{c|h|Healing}} for {{c|td|5s}}.<br>• Stacks up to {{c|td|10}} times.",
            },
            ["passive2"] = {
                ["name"] = "Flow",
                ["condition"] = "On Takedown",
                ["description"] = "• Restore {{c|h|(+120%{{Icon|physicalpower2}})}} {{c|h|(+4%{{Icon|maxhealth2}}) Health}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 45,
            ["abilityhaste"] = 15, 
            ["physicalarmor"] = 35,
        },
        ["recipe"] = {"Temporal Ripper", "Tunic", "Fortified Mantle"},
    },
    ["Earthshaker"] = {
        ["id"] = 0,
        ["image"] = "Earthshaker.png",
        ["buy"] = 3000,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "Sustained Fighting",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Battleborn",
                ["condition"] = "On dealing damage to Heroes or Monsters",
            	["description"] = "• Increase your {{c|Passive|Ability Damage}} dealt by {{c|td|1%}} for {{c|td|3s}}.<br>• Stacks up to {{c|td|15}} times.<br>• Melee heroes gain Stacks twice as fast.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 30,
            ["attackspeed"] = 30, 
            ["maxhealth"] = 300,
        },
        ["recipe"] = {"Ironwood Warbow", "Banded Emerald"},
    },
    ["Gaia Greaves"] = {
        ["id"] = 0,
        ["image"] = "Gaia Greaves.png",
        ["buy"] = 2900,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "Mobility",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Tremor",
                ["condition"] = "Move to generate up to 100 stacks",
                ["description"] = "• Stacks grant up to {{c|td|60 Movement Speed}}.<br>• {{c|Passive|Basic Attacks}} expend all stacks for bonus {{c|pd|Damage}}.<br>• Deals up to {{c|pd|50 (+120% {{Icon|physicalpower2}})Damage}}.<br>• Lose 50 stacks per second while {{c|i|Slowed}} or {{c|i|Immobilized}}.",
            },
            ["passive2"] = {
                ["name"] = "Unburden",
                ["description"] = "• Increase your {{c|Passive|Jump Height}} by {{c|td|75%}}.",
            },
        },
        ["stats"] = {
            ["maxhealth"] = 350,
            ["physicalarmor"] = 30, 
            ["abilityhaste"] = 15,
            ["tenacity"] = 20
        },
        ["recipe"] = {"Gilded Pendant", "Tenacious Drape"},
    },
    ["Legacy"] = {
        ["id"] = 0,
        ["image"] = "Legacy.png",
        ["buy"] = 3050,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "Cleanse",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Tenacious Bravery",
                ["cooldown"] = "120s",
                ["condition"] = "On going below {{c|h|40% Health}}",
                ["description"] = "• Self {{c|td|Cleanse}}.<br>• Gain {{c|td|CC Immunity}} for {{c|td|3s}}.",
            },
        },
        ["stats"] = {
        	["physicalpower"] = 45, 
            ["magicalarmor"] = 30,
            ["abilityhaste"] = 10,
            ["tenacity"] = 20
        },
        ["recipe"] = {"Temporal Ripper", "Sabre", "Heroic Guard"},
    },
    ["Overlord"] = {
        ["id"] = 0,
        ["image"] = "Overlord.png",
        ["buy"] = 2900,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "Area Damage",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Colossal Cleave",
                ["condition"] = "On Successful Basic Attack",
                ["description"] = "• Deal {{c|pd|(+30%{{Icon|physicalpower2}})}} {{c|h|(+2.5%{{Icon|maxhealth2}})}} {{c|pd|Damage}} in an area around the Target.<br>• Damage decreaases from {{c|td|100%}} to {{c|td|50%}} based on distance.",
            },
            ["passive2"] = {
                ["name"] = "Bludgeon",
                ["description"] = "• Gain {{c|h|(+2.5%{{Icon|maxhealth2}})}} {{c|pd|Physical Power}}.",
            },
        },
        ["stats"] = {
        	["physicalpower"] = 30, 
            ["maxhealth"] = 400,
        },
        ["recipe"] = {"Barbaric Cleaver", "Banded Emerald"},
    },
    ["Mistmeadow Buckler"] = {
        ["id"] = 0,
        ["image"] = "Mistmeadow Buckler.png",
        ["buy"] = 3100,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "Anti-Magic",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Mistwood Guard",
            	["description"] = "• Gain {{c|td|100}} charges.<br>• Each second, regenerate {{c|td|5}} charges.<br>• While at {{c|td|100}} charges, gain {{c|md|15 Magical Armor}}.",
            },
            ["passive2"] = {
                ["name"] = "Bark Skin",
                ["condition"] = "When taking {{c|md|Magical Damage}}",
                ["description"] = "• Consume {{c|Passive|Mistwood Guard}} charges.<br>• Block up to {{c|md|50%}} of the {{c|md|Damage}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 45,
            ["omnivamp"] = 6, 
            ["magicalarmor"] = 30,
        },
        ["recipe"] = {"Bloodletter", "Sabre", "Nullifying Mask"},
    },
    ["Mutilator"] = {
        ["id"] = 0,
        ["image"] = "Mutilator.png",
        ["buy"] = 3300,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "Anti-Tank",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Mutilate",
                ["condition"] = "On Basic Attacking Heroes",
            	["description"] = "• Deal {{c|h|1%}} of their {{c|h|Max Health}} as {{c|pd|Damage}}.",
            },
            ["passive2"] = {
                ["name"] = "Devour",
                ["condition"] = "Ability Hits on Heroes",
                ["description"] = "• Deal {{c|h|2.5%}} of their {{c|h|Max Health}} as {{c|pd|Damage}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 40,
            ["omnivamp"] = 10, 
            ["abilityhaste"] = 15,
        },
        ["recipe"] = {"Bloodletter", "Pendant", "Temporal Ripper"},
    },
    ["Salvation"] = {
        ["id"] = 0,
        ["image"] = "Salvation.png",
        ["buy"] = 3050,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "Anti Burst",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Aegis",
                ["cooldown"] = "60s",
                ["condition"] = "On going below {{c|h|40% Health}}",
                ["description"] = "• Gain a {{c|h|(+22%{{Icon|maxhealth2}})}} {{c|td|Shield}} for {{c|td|6s}}.<br>• Reduced to {{c|td|50%}} Effectiveness for Ranged Heroes.<br>• Gain {{c|td|10% Omnivamp}} for {{c|td|6s}}.",
            },
        },
        ["stats"] = {
        	["physicalpower"] = 40,
            ["maxhealth"] = 425,
            ["tenacity"] = 20
        },
        ["recipe"] = {"Greatsword", "Tenacious Drape"},
    },
    ["Tainted Blade"] = {
        ["id"] = 0,
        ["image"] = "Tainted Blade.png",
        ["buy"] = 3100,
        ["class"] = "Fighter",
        ["tier"] = 3,
        ["benefit"] = "Anti-Heal",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Blighted Strikes",
                ["condition"] = "On dealing {{c|pd|Physical Damage}}",
            	["description"] = "• Reduce the Target's {{c|h|Healing}} by {{c|h|40%}} for {{c|h|3s}}.",
            },
            ["passive2"] = {
                ["name"] = "Hex",
                ["condition"] = "On dealing Ability Damage to a {{c|td|Blighted}} Target",
                ["description"] = "• Cause them to take {{c|td|8%}} more damage for {{c|td|3s}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 45,
            ["maxhealth"] = 300, 
            ["abilityhaste"] = 15,
        },
        ["recipe"] = {"Serrated Blade", "Violet Brooch", "Sabre"},
    },
--------------------------------------------------------------------------------
-- Assassin items
--------------------------------------------------------------------------------
	["Deathstalker"] = {
        ["id"] = 0,
        ["image"] = "Deathstalker.png",
        ["buy"] = 3100,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Physical Shred",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Virulent Strikes",
                ["condition"] = "On Basic Attacking Heroes",
                ["description"] = "• Shred {{c|pd|2 Physical Armor}} for {{c|td|3s}}.<br>• Stacks up to {{c|td|5}} times.",
            },
            ["passive2"] = {
                ["name"] = "Onslaught",
                ["description"] = "• Gain {{c|td|(+100%{{Icon|physicalpenetration2}}) Attack Speed}}. ",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 40, 
            ["physicalpenetration"] = 5,
            ["attackspeed"] = 20,
        },
        ["recipe"] = {"Honed Kris", "Ironwood Warbow"},
    },
    ["Demon Edge"] = {
        ["id"] = 0,
        ["image"] = "Demon Edge.png",
        ["buy"] = 3000,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Anti Shield",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Demonic",
                ["condition"] = "On damaging a Shielded Target",
                ["description"] = "• Gain {{c|td|20% Movement Speed}} for {{c|td|2s}}.<br>• Deal 30% bonus {{c|md|Damage}}.<br>• Does not exceed the size of the {{c|td|Shield}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 45, 
            ["physicalpenetration"] = 8,
            ["maxhealth"] = 200,
        },
        ["recipe"] = {"Honed Kris", "Stone of Strength"},
    },
    ["Dread"] = {
        ["id"] = 0,
        ["image"] = "Dread.png",
        ["buy"] = 3000,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Anti Magic",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Sinister Shield",
                ["condition"] = "On receiving {{c|md|Magical Damage}} from a Hero",
                ["description"] = "• Block {{c|md|20%}} of {{c|md|Magical Damage}} for {{c|md|3s}}.<br>• {{c|Passive|Sinister Shield}} reapplies after taking no damage from Heroes for {{c|td|20s}}.",
            },
            ["passive2"] = {
                ["name"] = "Scourge",
                ["condition"] = "While {{c|Passive|Sinister Shield}} is ready",
                ["description"] = "• Gain {{c|pd|15 Physical Power}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 40, 
            ["physicalpenetration"] = 8,
            ["magicalarmor"] = 30,
        },
        ["recipe"] = {"Honed Kris", "Nullifying Mask", "Sabre"},
    },
    ["Echelon Cloak"] = {
        ["id"] = 0,
        ["image"] = "Echelon Cloak.png",
        ["buy"] = 2850,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Utility",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Shadow",
                ["cooldown"] = "12s",
                ["condition"] = "On standing still and unharmed for for 2.5s",
                ["description"] = "• Become {{c|td|Camouflaged}}.<br>• Moving {{c|td|800}} units from this location, casting an ability, or receiving damage ends this effect.",
            },
            ["passive2"] = {
                ["name"] = "Unseen Threat",
                ["condition"] = "While Camouflaged",
                ["description"] = "• Gain {{c|td|1%}} of your {{c|h|Missing Health}} and {{c|m|Mana}} every second.<br>• Increase your damage dealt by {{c|td|8%}}.<br>• Lasts {{c|td|3s}} after exiting {{c|td|Camouflage}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 35, 
            ["attackspeed"] = 20,
            ["maxhealth"] = 250,
            ["abilityhaste"] = 10,
        },
        ["recipe"] = {"Ironwood Warbow", "Violet Brooch"},
    },
    ["Envy"] = {
        ["id"] = 0,
        ["image"] = "Envy.png",
        ["buy"] = 3200,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Dueling",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Sacrificial Strike",
                ["condition"] = "On Dashing, Leaping or exiting Camo",
                ["description"] = "• Your next Basic Attack within {{c|td|3s}} will {{c|td|Critically Strike}}.",
            },
            ["passive2"] = {
                ["name"] = "Hush",
                ["cooldown"] = "45s",
                ["condition"] = "On using {{c|Passive|Sacrificial Strike}} on a Hero",
                ["description"] = "• {{c|i|Silence}} them for {{c|i|1s}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 40, 
            ["physicalpenetration"] = 7,
            ["maxmana"] = 250,
        },
        ["recipe"] = {"Honed Kris", "Spirit Beads", "Honed Kris"},
    },
    ["Infernum"] = {
        ["id"] = 0,
        ["image"] = "Infernum.png",
        ["buy"] = 3000,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Burst",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Cinder",
                ["condition"] = "Damaging Abilities and Basic Attacks",
                ["description"] = "• Apply stacks of {{c|td|Kindling}} to Targets for {{c|td|2.5s}}.<br>• At {{c|td|4}} stacks, ignite them.<br>• Deals {{c|h|4}} {{c|h|(+1.25%{{Icon|Physicalpower2}})%}} of their {{c|h|Max Health}} as {{c|pd|Damage}} over {{c|pd|2s}}.",
            },
            ["passive2"] = {
                ["name"] = "Furnace",
                ["condition"] = "Based on Enemy Bonus Armor",
                ["description"] = "• For each point, {{c|Passive|Cinder}} deals {{c|td|0.5%}} more {{c|pd|Damage}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 40, 
            ["physicalpenetration"] = 6,
            ["maxmana"] = 250,
            ["abilityhaste"] = 15,
        },
        ["recipe"] = {"Honed Kris", "Spirit Beads", "Temporal Ripper"},
    },
    ["Malady"] = {
        ["id"] = 0,
        ["image"] = "Malady.png",
        ["buy"] = 2900,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Burst",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Parting Gift",
                ["cooldown"] = "2s",
                ["condition"] = "On killing a Unit",
                ["description"] = "• Cause them to {{c|td|Explode}}.<br>• Deals {{c|pd|Damage}} based on their {{c|h|Max Health}}.",
            },
            ["passive2"] = {
                ["name"] = "Demise",
                ["cooldown"] = "45s",
                ["condition"] = "On damaging a Hero below 40% Health",
                ["description"] = "• Deal {{c|pd|35 (+10% {{Icon|Physicalpower2}}) Damage}}.<br>• Gain a stack of {{c|td|Demise}}.<br>• Damage increases by {{c|pd|6}} per stack of {{c|td|Demise}}.<br>• Takedowns reset the {{c|td|Cooldown}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 45, 
            ["physicalpenetration"] = 7,
            ["abilityhaste"] = 10,
        },
        ["recipe"] = {"Honed Kris", "Temporal Ripper"},
    },
    ["Mesmer"] = {
        ["id"] = 0,
        ["image"] = "Mesmer.png",
        ["buy"] = 2900,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Spell Shield",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Vengeful Shroud",
                ["cooldown"] = "45s",
                ["description"] = "• Gain a {{c|td|Spell Shield}} that blocks the next Ability.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 40, 
            ["physicalpenetration"] = 8,
            ["maxhealth"] = 300,
        },
        ["recipe"] = {"Honed Kris", "Stone of Strength"},
    },
    ["Mindrazor"] = {
        ["id"] = 0,
        ["image"] = "Mindrazor.png",
        ["buy"] = 3000,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Area Damage",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Razor Cleave",
                ["condition"] = "On dealing Non-Item Damage",
                ["description"] = "• Deal {{c|pd|(30%{{Icon|physicalpower2}})Damage}} in an area around them.<br>• Damage decreases from {{c|td|100%}} to {{c|td|50%}} based on distance.<br>• {{c|Passive|Restriction:}} DoT Abilities cannot activate this effect.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 45, 
            ["maxmana"] = 300,
            ["abilityhaste"] = 20,
        },
        ["recipe"] = {"Barbaric Cleaver", "Spirit Beads", "Temporal Ripper"},
    },
    ["Nightfall"] = {
        ["id"] = 0,
        ["image"] = "Nightfall.png",
        ["buy"] = 2900,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Sustain",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Eclipse",
                ["description"] = "• Abilities {{c|h|Heal}} for {{c|h|10%}} of damage dealt to Heroes. ",
            },
            ["passive2"] = {
                ["name"] = "Dusk Reaver",
                ["condition"] = "On Takedown",
                ["description"] = "• Gain a {{c|td|200-400 Shield}} for {{c|td|3.5s}}.<br>• {{c|td|Shield}} size increases with {{c|m|Level}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 45, 
            ["physicalpenetration"] = 8,
            ["lifesteal"] = 8,
        },
        ["recipe"] = {"Honed Kris", "Crimson Edge", "Shortsword"},
    },
	["Omen"] = {
		["id"] = 0,
		["buy"] = 3100,
		["class"] = "Assassin",
		["tier"] = 3,
		["benefit"] = "Reduced Cooldowns",
		["image"] = "Omen.png",
		["effects"] = {
			["passive"] = {
				["name"] = "Bestial Momentum",
				["description"] = "• Generate stacks of {{c|td|Momentum}}.<br>• At {{c|td|100}} stacks empower your next Basic Attack.<br>• Deal {{c|pd|40 (+20%{{Icon|physicalpower2}})Damage}}.<br>• Reduce your Non-Ultimate Cooldowns by {{c|td|20%}}.",
				["condition"] = "While moving or landing Basic Attacks",
			},
		},
		["stats"] = {
			["abilityhaste"] = 10, 
			["physicalpenetration"] = 8,
			["physicalpower"] = 45,
		},
		["recipe"] = {"Honed Kris", "Pendant", "Rapid Rapier"},
	},
	["Painweaver"] = {
        ["id"] = 0,
        ["image"] = "Painweaver.png",
        ["buy"] = 3000,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Burst",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Splice",
                ["condition"] = "On Ability Cast",
                ["description"] = "• Gain {{c|pd|2 Physical Penetration}} for {{c|pd|4s}}.<br>• Gain {{c|td|2.5% Movement Speed}} for {{c|td|4s}}.<br>• Stacks up to {{c|td|4}} times. ",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 50, 
            ["physicalpenetration"] = 8,
        },
        ["recipe"] = {"Honed Kris", "Honed Kris"},
    },
    ["Penumbra"] = {
        ["id"] = 0,
        ["image"] = "Penumbra.png",
        ["buy"] = 3000,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Multi-Kill",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Essence Reaper",
                ["condition"] = "On Takedown",
                ["description"] = "• Reduce Non-Ultimate {{c|td|Cooldowns}} by {{c|td|4s}}.",
            },
        },
        ["stats"] = {
            ["physicalpower"] = 40, 
            ["maxhealth"] = 200,
            ["physicalpenetration"] = 6,
            ["abilityhaste"] = 20,
        },
        ["recipe"] = {"Honed Kris", "Vitality Beads", "Temporal Ripper"},
    },
    ["Tainted Trident"] = {
        ["id"] = 0,
        ["image"] = "Tainted Trident.png",
        ["buy"] = 2900,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Anti Heal",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Blighted Strikes",
                ["condition"] = "On dealing {{c|pd|Physical Damage}}",
            	["description"] = "• Reduce Target's {{c|h|Healing}} by {{c|h|40%}} for {{c|h|3s}}.",
            },
            ["passive2"] = {
                ["name"] = "Woundseeker",
                ["condition"] = "On dealing Ability Damage to a {{c|td|Blighted}} Unit:",
                ["description"] = "• Deal {{c|pd|4 (+15%{{Icon|physicalpenetration2}})%}} additional {{c|td|Damage}}. ",
            },
        },
        ["stats"] = {
			["physicalpower"] = 40, 
            ["physicalpenetration"] = 8,
            ["abilityhaste"] = 10,
        },
        ["recipe"] = {"Honed Kris", "Pendant", "Serrated Blade"},
    },
    ["The Perforator"] = {
        ["id"] = 0,
        ["image"] = "The Perforator.png",
        ["buy"] = 3200,
        ["class"] = "Assassin",
        ["tier"] = 3,
        ["benefit"] = "Anti-Tank",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Chilling Spells",
                ["condition"] = "On dealing Ability Damage",
            	["description"] = "• {{c|i|Slows}} by {{c|i|25%}} for {{c|i|1s}}.<br>• Reduced to {{c|i|10%}} for DoT Abilities.",
            },
            ["passive2"] = {
                ["name"] = "Puncture",
                ["description"] = "• Ignore {{c|pd|28%}} of {{c|pd|Physical Armor}}.",
            },
        },
        ["stats"] = {
			["physicalpower"] = 40, 
            ["physicalpenetration"] = 6,
            ["abilityhaste"] = 15,
        },
        ["recipe"] = {"Zealous Tomahawk", "Temporal Ripper"},
    },
--------------------------------------------------------------------------------
-- Removed items
--------------------------------------------------------------------------------
	["Parabox"] = {
		["id"] = 0,
		["buy"] = 0,
		["removed"] = "Early Access",
		["class"] = "Support",
		["tier"] = 3,
		["image"] = "Parabox.png",
		["effects"] = {
			["passive"] = {
				["name"] = "Yin",
            	["description"] = "• Allied Heroes within 700 units receive 20% increased {{c|h|Healing}} and {{c|td|Shielding}}.",
                },
            ["passive2"] = {
            	["name"] = "Yang",
            	["description"] = "• Enemy Heroes within 700 units have their {{c|h|Healing}} reduced by {{c|h|60%}}.",
        	},
		},
		["stats"] = {
			["physicalarmor"] = 25, 
			["magicalarmor"] = 20,
			["manaregenration"] = 2,
			["abilityhaste"] = 10,
		},

	},
	["Fenix"] = {
        ["id"] = 0,
        ["image"] = "Fenix.png",
        ["removed"] = "V0.18",
        ["class"] = "Fighter",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Resurrection",
        ["effects"] = {
            ["active"] = {
                ["name"] = "Rebirth",
                ["cooldown"] = "210s",
                ["description"] = "• {{c|td|Mark}} your current location for {{c|td|4s}}.<br>• If you die {{c|td|Resurrect}} at the {{c|td|Mark}}.<br>• {{c|h|Health}} and {{c|m|Mana}} will be set to {{c|td|40%}}.",
        				},
        	["passive"] = {
				["name"] = "Creep Slayer",
				["description"] = "• Deal {{c|pd|30 Damage}} to Minions {{c|td|On-Hit}}.",
			},
    				  },
        ["stats"] = {
            ["maxhealth"] = 150,
            ["physicalpower"] = 15,
        			},
        ["recipe"] = {"Champion Crest"},
     },
     ["Malediction"] = {
        ["id"] = 0,
        ["image"] = "Malediction.png",
        ["removed"] = "V0.4.3",
        ["class"] = "Support",
        ["slot"] = "Crest",
        ["tier"] = 3,
        ["benefit"] = "Slow",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Wealthy Pacifist",
                ["description"] = "• Increase Passive {{g}} Income by {{g|50%}}. <br>• receive diminishing {{g}} from excessive Minion kills.",
            },
            ["passive2"] = {
                ["name"] = "Visionary",
                ["description"] = "• Gain {{i|Solstone}}. <br>• Increase Ward Cap from 2 to 3.",
            },
            ["active"] = {
                ["name"] = "Cripple",
                ["cooldown"] = "120s",
                ["description"] = "• {{c|i|Slow}} an enemy Hero and reduce their {{c|td|Attack Speed}} by {{c|i|30%}} for {{c|i|2.5s}}.",
        },
    },
        ["stats"] = {
        	["magicalpower"] = 20,
            ["manaregeneration"] = 75,
            ["physicalarmor"] = 20,
        },
        ["recipe"] = {"Keeper Crest"},
	},
	["Abyssal Bracers"] = {
        ["id"] = 0,
        ["buy"] = 1150,
        ["removed"] = "V0.18",
        ["tier"] = 2,
        ["image"] = "Abyssal Bracers.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Ferrumancer",
            ["condition"] = "On Ability Cast",
            
            ["description"] = "• Gain {{c|md|3 Magical Power}} and {{c|pd|3 Physical Armor}} for {{c|td|5s}}.<br> •Stacks up to 5 times. ",
                }
        },
        ["stats"] = {
            ["magicalpower"] = 20,
            ["physicalarmor"] = 15,
        },
        ["buildsinto"] = {"Golem's Gift"},
        ["recipe"] = {"Codex", "Tunic"},
    },
    ["Hallowed Braid"] = {
        ["id"] = 0,
        ["buy"] = 1000,
        ["removed"] = "V0.18",
        ["tier"] = 2,
        ["image"] = "Hallowed Braid.png",
        ["effects"] = {
        ["passive"] = {
            ["name"] = "Elegy",
            ["condition"] = "On any Hero Death",
            
            ["description"] = "• Gain a stack of {{c|td|Elegy}}.<br> • Stacks up to {{c|td|20}} times.<br> • Gain {{c|md|1 Magical Power}} per stack.<br> • Gain {{c|m|5% Mana Regen}} per stack.",
                }
        },
        ["stats"] = {
            ["maxhealth"] = 150,
            ["manaregeneration"] = 50,
        },
        ["buildsinto"] = {"Requiem"},
        ["recipe"] = {"Energy Stream", "Vitality Beads"},
    },
    ["Requiem"] = {
		["id"] = 0,
		["buy"] = 2700,
		["removed"] = "V0.18",
		["class"] = "Support",
		["tier"] = 3,
		["benefit"] = "Utility Aura",
		["image"] = "Requiem.png",
		["effects"] = {
			["passive"] = {
            ["name"] = "Elegy",
            ["condition"] = "On any Hero Death",
            
            ["description"] = "• Gain a stack of {{c|td|Elegy}}.<br> • Stacks up to {{c|td|20}} times.<br> • Gain {{c|md|1 Magical Power}} per stack.<br> • Gain {{c|m|5% Mana Regen}} per stack.",
                },
            ["passive2"] = {
            ["name"] = "Remembrance",
            ["condition"] = "Nearby Allies gain",
            
            ["description"] = "• {{c|pd|1 Physical Power}} per stack of {{c|td|Elegy}}.<br> • {{c|td|0.5% Lifesteal}} per stack of {{c|td|Elegy}}.",
                },
		},
		["stats"] = {
			["magicalpower"] = 25, 
			["maxhealth"] = 200,
			["manaregeneration"] = 125,
			["healshieldincrease"] = 10
		},
		["recipe"] = {"Hallowed Braid", "Divine Wreath"},
	},
	["Breach"] = {
		["id"] = 0,
		["buy"] = 2800,
		["removed"] = "V0.18",
		["class"] = "Ranger",
		["tier"] = 3,
		["benefit"] = "Area Damage",
		["image"] = "Breach.png",
		["effects"] = {
			["passive"] = {
            ["name"] = "Critical Cleave",
            ["condition"] = "On Successful Basic Attacks",
            ["description"] = "• Deal {{c|pd|(+30% Physical Power) Damage}} around the target.<br> • This can {{c|td|Critically Strike}}.<br> • Damage decreases from {{c|td|100%}} to {{c|td|50%}} based on distance.",
                },
		},
		["stats"] = {
			["physicalpower"] = 30, 
			["attackspeed"] = 35,
			["criticalchance"] = 25,
		},
		["recipe"] = {"Barbaric Cleaver", "Robust Arbalest"},
	},
	["Viper"] = {
		["id"] = 0,
		["buy"] = 3200,
		["removed"] = "V0.18",
		["class"] = "Ranger",
		["tier"] = 3,
		["benefit"] = "Physical Shred",
		["image"] = "Viper.png",
		["effects"] = {
			["passive"] = {
			["name"] = "Corrode",
            ["condition"] = "On damaging a Hero",
            ["description"] = "• Reduce their {{c|pd|Physical Armor}} by {{c|pd|4%}} for {{c|pd|5s}}.<br>• Stacks up to {{c|td|6}} times.<br>• At {{c|td|6}} stacks they become {{c|td|Eroded}}.",
                },
            ["passive2"] = {
            ["name"] = "Diligence",
            ["condition"] = "When Basic Attacking Eroded Heroes",
            ["description"] = "• Your {{c|td|Critical Strikes}} deal {{c|td|10%}} more damage.",
                },
		},
		["stats"] = {
			["physicalpower"] = 35, 
			["attackspeed"] = 20,
			["criticalchance"] = 25,
		},
		["recipe"] = {"Ruthless Broadsword", "Robust Arbalest"},
	},
	["Wellspring"] = {
		["id"] = 0,
		["buy"] = 2700,
		["removed"] = "V0.18",
		["class"] = "Support",
		["tier"] = 3,
		["benefit"] = "Healing",
		["image"] = "Wellspring.png",
		["effects"] = {
			["passive"] = {
			["name"] = "Vital Waters",
            ["condition"] = "On casting an Ability",
            ["description"] = "• {{c|h|Heals}} nearby Allies for {{c|h|20}} {{c|mp|(+10% Magical Power)}} over {{c|h|2s}}. ",
                },
            ["passive2"] = {
            ["name"] = "Soothing Waters",
            ["condition"] = "When {{c|yellow|Vital Waters}} procs",
            ["cooldown"] = "20s",
            ["description"] = "• {{c|h|Heals}} the lowest Target by {{c|h|5%}} of their {{c|h|Max Health}}.<br> • Basic Attacks against Heroes reduce the {{c|td|Cooldown}} by {{c|td|2s}}.",
                },
		},
		["stats"] = {
			["magicalpower"] = 45, 
			["basemanaregen"] = 100,
			["healshieldincrease"] = 20,
		},
		["recipe"] = {"Energy Stream", "Divine Wreath", "Scepter"},
	},
	["Boneseeker"] = {
		["id"] = 0,
		["buy"] = 2900,
		["removed"] = "V0.18",
		["class"] = "Fighter",
		["tier"] = 3,
		["benefit"] = "Damage Amp",
		["image"] = "Boneseeker.png",
		["effects"] = {
			["passive"] = {
			["name"] = "Pursue",
            ["condition"] = "On Basic Attacking a Hero",
            ["description"] = "• Mark them as your {{c|td|Target}}.<br> • Increase your damage dealt to them by {{c|td|2%}} for {{c|td|4s}}.<br> • Stacks up to {{c|td|10}} times.<br> • Changing {{c|td|Targets}} resets the stack counter.",
                },
            ["passive2"] = {
            ["name"] = "Swift Strikes",
            ["condition"] = "On successful Basic Attacks",
            ["description"] = "• Deal {{c|pd|20 Damage}} {{c|td|On-Hit}}.<br> • Gain {{c|td|3% Movement Speed}} for {{c|td|1s}}.",
                },
		},
		["stats"] = {
			["attackspeed"] = 35, 
			["maxhealth"] = 300,
			["abilityhaste"] = 10,
		},
		["recipe"] = {"Composite Bow", "Violet Brooch", "Vitality Beads"},
	},
    ["Leviathan"] = {
        ["id"] = 0,
        ["image"] = "Leviathan.png",
        ["buy"] = 2850,
        ["class"] = "Tank",
        ["tier"] = 3,
        ["removed"] = "V0.2.3",
        ["benefit"] = "BECOME BEEF",
        ["effects"] = {
            ["passive"] = {
                ["name"] = "Colossus",
                ["condition"] = "On Killing Minions",
                ["description"] = "• Gain {{c|h|6 Bonus health}} per stack, up to a Maximum {{c|h|300 Bonus Health}}.<br>• At Maximum stacks gaint {{c|td|10 Ability Haste}}.",
            },
            ["passive2"] = {
                ["name"] = "Hasty Colossus",
                ["description"] = "• Gain {{c|h|(+1%{{Icon|maxhealth2}})}} Ability Haste.",
            },
        },
        ["stats"] = {
            ["healthregeneration"] = 225,
            ["maxhealth"] = 400,
        },
        ["recipe"] = {"Loch Shawl", "Stalwart Gauntlets"},
    },
	["Tectonic Mallet"] = {
		["id"] = 0,
		["buy"] = 3000,
		["removed"] = "V0.18",
		["class"] = "Fighter",
		["tier"] = 3,
		["benefit"] = "Mobility",
		["image"] = "Tectonic Mallet.png",
		["effects"] = {
			["passive"] = {
			["name"] = "Magnitude",
            ["description"] = "• Gain {{c|td|20%}} of your {{c|td|Bonus Movement Speed}} as {{c|pd|Physical Power}}.",
                },
            ["passive2"] = {
            ["name"] = "Harmonic Absorber",
            ["condition"] = "While {{c|i|Slowed}}",
            ["description"] = "• Gain {{c|td|10% Movement Speed}}.",
                },
		},
		["stats"] = {
			["physicalpower"] = 35, 
			["magicalarmor"] = 40,
			["movementspeed"] = 5,
			["abilityhaste"] = 10,
		},
		["recipe"] = {"Temporal Ripper", "Shortsword", "Nullifying Mask"},
	},
}