League of Legends Wiki

Want to contribute to this wiki?
Sign up for an account, and get started!
You can even turn off ads in your preferences.

Come join the LoL Wiki community Discord server!

READ MORE

League of Legends Wiki
Advertisement
Syntax
["item name"] = { --> Main object name; as defaut in ["icon"], the file of the <item name> is File:<item name> TFT item.png
	["Current"] = { --> Current set if you have not made a change, otherwise, you must list the remaining sets in your debut; Current is located in the {{cmd|TFTset}} to consult
		["icon"] = Y <-- Only place if there is a variation of the same object with respect to the previous sets.
		["stats"] = {
			["hp"] = X
			["ad"] = X
			["ap"] = X
			["as"] = X
			["mana"] = X
			["armor"] = X
			["mr"] = X
			["critchange"] = X
			["dodge"] = X <-- Obsolete since set 9
		},
		["caption"] = Y <-- Optional
		["pass"] = Y <-- Mandatory, in case there is more than one passive, then the following must be placed: ["pass"] = {[1] = Y, [2] = Y, [3] = Y}
		["recipe"] = {Y,Y} <-- In set 5.5 there is more than one container, please compare the objects as an example.
		["unique"] = Z <-- There are more boolean values to check this element, see the values in Template:TFT infobox to check the values they take.
	},
	["X"] = { -->The other valid sets, use the value AllTFTSets in module:Maintenance data/data to enumerate the set well when querying if necessary if there was a previous change, the set numbering must be descending from the Current set. The components do not need to enumerate.
		...
	},
},
X = integers for stats; reals for sets. Y = string. Z = boolean (except in trait, whose value is string for a true case and false as False value).
Example
["Determined Investor"] = {
	["Current"] = {
		["stats"] = {
			["hp"] = 150,
		},
		["pass"] = "After the holder dies 8 times, this item returns to your item tray and transforms into {{TFTi|Diamond Hands|set=7}}. Then gain 1 {{TFTi|Champion Duplicator|set=7}} and {{g|10}}.",
	},
},
["Diamond Hands"] = {
	["Current"] = {
		["stats"] = {
			["hp"] = 400,
			["ap"] = 20,
		},
		["pass"] = "When the holder first drops {{as|'''below''' 66% health}} and {{as|'''below''' 30% health}}, they gain {{g|1}} and damage immunity for 2 seconds.",
	},
},
Result

-- <pre>
return {
	["Abomination Emblem"] = {
		["5.5"]		= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also an {{TFTt|Abomination|set=5.5}}.<br />Cannot equip on a champion that is already an {{TFTt|Abomination|set=5.5}}.",
			["inactive"] 	= true,
		},
		["5"] 		= {
			["icon"]		= "Abomination Emblem TFT item old.png",
			["unique"] 		= true,
			["stats"] 		= {
				["critchance"]	= 5,
				["dodge"] 		= 10,
			},
			["pass"] 		= "Wearer is also an {{TFTt|Abomination|set=5}}.<br />Cannot equip on a champion that is already an {{TFTt|Abomination|set=5}}.",
			["recipe"] 		= {
				[1] = {"Shadow Spatula", "Sparring Gloves"},
				[2] = {"Spatula", "Shadow Gloves"},
				[3] = {"Shadow Spatula", "Shadow Gloves"}
			},
			["inactive"] 	= true,
		},
	},
	["Academy Emblem"] = {
		["6"]	= {
			["unique"] 		= true,
			["stats"] 		= {
				["mana"] 		= 15,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Academy|set=6}}. Cannot equip on a champion that is already a {{TFTt|Academy|set=6}}.",
			["recipe"] 		= {"Spatula", "Tear of the Goddess"},
			["inactive"] 	= true,
		},
	},
	["Anima Visage"] = {
		["Current"]	= {
			["artifact"] 	= true,
			["stats"] 		= {
				["hp"] 			= 200,
				["mr"] 			= 25,
			},
			["pass"] 		= "The wearer regenerates {{as|6% of their '''maximum''' health}} each second.",
		},
	},
	["Arcanist Emblem"] = {
		["Current"] 	= {
			["unique"] 		= true,
			["stats"] 		= {
				["ap"] 			= 10,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Arcanist|set=6.5}}. Cannot equip on a champion that is already a {{TFTt|Arcanist|set=6.5}}.",
			["recipe"] 		= {"Spatula", "Needlessly Large Rod"},
		},
		["6"] 	= {
			["unique"] 		= true,
			["stats"] 		= {
				["ap"] 			= 10,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Arcanist|set=6}}. Cannot equip on a champion that is already a {{TFTt|Arcanist|set=6}}.",
			["recipe"] 		= {"Spatula", "Needlessly Large Rod"},
			["inactive"]    = true,
		},
	},
	["Archangel's Staff"] = {
		["Current"] 	= {
			["stats"] 		= {
				["ap"] 			= 10,
				["mana"] 		= 15,
			},
			["pass"] 		= "Grants the wearer {{as|25 ability power}} every 5 seconds.",
			["recipe"] 		= {"Needlessly Large Rod", "Tear of the Goddess"},
		},
	},
	["Archdemon's Staff of Immortality"] = {
		["5"] 		= {
			["stats"] 		= {
				["ap"] 			= 10,
				["mana"] 		= 15,
			},
			["pass"] 		= "Each time the wearer casts their ability, they gain bonus health equal to {{as|350% '''maximum''' mana}} and then heal for the same amount.",
			["recipe"] 		= {
				[1] = {"Shadow Rod", "Tear of the Goddess"},
				[2] = {"Needlessly Large Rod", "Shadow Tear"},
				[3] = {"Shadow Rod", "Shadow Tear"}
			},
			["removed"] 	= true,
		},
	},
	["Aspect of Dusk"] = {
		["4"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["ap"] 			= 15,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Dusk|set=4}}.<br />Cannot equip on a champion that is already a {{TFTt|Dusk|set=4}}.",
			["recipe"] 		= {"Spatula", "Needlessly Large Rod"},
			["inactive"] 	= true,
		},
	},
	["Assassin Emblem"] = {
		["Current"]	= {
			["unique"] 		= true,
			["stats"] 		= {
				["critchance"]	= 5,
				["dodge"] 		= 10,
			},
			["pass"] 		= "Wearer is also an {{TFTt|Assassin|set=6}}.<br />Cannot equip on a champion that is already an {{TFTt|Assassin|set=6}}.",
			["recipe"] 		= {"Spatula", "Sparring Gloves"},
		},
		["5.5"] 	= {
			["unique"] 		= true,
			["stats"] 		= {
				["critchance"]	= 5,
				["dodge"] 		= 10,
			},
			["pass"] 		= "Wearer is also an {{TFTt|Assassin|set=5.5}}.<br />Cannot equip on a champion that is already an {{TFTt|Assassin|set=5.5}}.",
			["recipe"] 		= {"Spatula", "Sparring Gloves"},
			["inactive"] 	= true,
		},
		["5"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["critchance"]	= 5,
				["dodge"] 		= 10,
			},
			["pass"] 		= "Wearer is also an {{TFTt|Assassin|set=5}}.<br />Cannot equip on a champion that is already an {{TFTt|Assassin|set=5}}.",
			["recipe"] 		= {"Spatula", "Sparring Gloves"},
			["inactive"] 	= true,
		},
	},
	["B. F. Sword"] = {
		["Current"]	= {
			["stats"] 		= {
				["ad"] 			= 10,
			},
		},
	},
	["Banshee's Claw"] = {
		["Current"]	= {
			["stats"] 		= {
				["dodge"] 		= 15,
				["hp"] 			= 150,
			},
			["pass"] 		= "At the beginning of each round, the holder and allies within 1 hex in the same row gain a shield that blocks the first enemy ability, up to 600 damage.",
			["recipe"] 		= {"Giant's Belt", "Sparring Gloves"},
		},
		["5"]	= {
			["icon"]		= "Banshee's Claw TFT item old.png",
			["unique"]		= true,
			["stats"] 		= {
				["dodge"] 		= 15,
				["hp"] 			= 150,
			},
			["pass"] 		= "At the beginning of each round, the holder and allies within 1 hex in the same row gain a shield that blocks the first enemy ability.",
			["recipe"] 		= {
				[1] = {"Shadow Belt", "Sparring Gloves"},
				[2] = {"Giant's Belt", "Shadow Gloves"},
				[3] = {"Shadow Belt", "Shadow Gloves"},
			},
			["removed"]		= true,
		},
	},
	["Banshee's Silence"] = {
		["Current"]	= {
			["stats"] 		= {
				["dodge"] 		= 15,
				["hp"] 			= 150,
			},
			["pass"] 		= 
			{
				[1] = "At the beginning of each round, the holder and all allies gain a shield that blocks the first enemy ability, up to 600 damage.",
				[2] = "Grants {{as|50 '''bonus''' health}} to all allies at the start of combat."
			},
		},
	},
	["Battlecast Plating"] = {
		["3.5"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["ap"] 			= 20,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Battlecast|set=3.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Battlecast|set=3.5}}.",
			["recipe"] 		= {"Spatula", "Needlessly Large Rod"},
			["inactive"] 	= true,
		},
	},
	["Berserker's Axe"] = {
		["2"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["critchance"]	= 10,
				["dodge"] 		= 10,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Berserker|set=2}}.<br />Cannot equip on a {{TFTt|Berserker|set=2}} champion.",
			["recipe"] 		= {"Spatula", "Sparring Gloves"},
			["inactive"] 	= true,
		},
	},
	["Blade of the Ruined King"] = {
		["3.5"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["ad"] 			= 15,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Blademaster|set=3.5}}.<br />Cannot equip on a {{TFTt|Blademaster|set=3.5}} champion.",
			["recipe"] 		= {"B. F. Sword", "Spatula"},
			["inactive"] 	= true,
		},
	},
	["Blessed Bloodthirster"] = {
		["Current"]		= {
			["stats"] 		= {
				["ad"] 			= 30,
				["mr"] 			= 20,
			},
			["pass"] 		= 
			{
				[1] = "{{as|Physical damage}} heals for 60% of the damage dealt.",
				[2] = "Gains a {{as|40% '''maximum''' health}} shield for 5 seconds if the wearer falls {{as|'''below''' 40% health}}."
			},
		},
	},
	["Bloodthirster"] = {
		["Current"]	= {
			["stats"] 		= {
				["ad"] 			= 10,
				["mr"] 			= 20,
			},
			["pass"] 		= {
				[1] = "{{as|Physical damage}} heals for 33% of the damage dealt.",
				[2] = "Gains a {{as|30% '''maximum''' health}} shield for 5 seconds if the wearer falls below {{as|40% '''maximum''' health}}."
			},
			["recipe"] 		= {"B. F. Sword", "Negatron Cloak"},
		},
	},
	["Blue Blessing"] = {
		["Current"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["ap"] 			= 40,
				["mana"] 		= 50,
			},
			["pass"] 		= "After each spellcast, the wearer's {{as|mana}} is set to 30.",
		},
	},
	["Blue Buff"] = {
		["Current"]	= {
			["unique"] 		= true,
			["stats"] 		= {
				["mana"] 		= 50,
			},
			["pass"] 		= "After each spellcast, the wearer's {{as|mana}} is set to 20.",
			["recipe"] 		= {"Tear of the Goddess", "Tear of the Goddess"},
		},
	},
	["Bodyguard Emblem"] = {
		["Current"]	= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Bodyguard|set=6.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Bodyguard|set=6.5}}.",
		},
		["6"]	= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Bodyguard|set=6}}.<br />Cannot equip on a champion that is already a {{TFTt|Bodyguard|set=6}}.",
			["inactive"]    = true,
		},
	},
	["Bramble Vest"] = {
		["Current"]	= {
			["stats"] 		= {
				["armor"] 		= 70,
			},
			["pass"] 		= {
				[1] = "Negates 75% of '''bonus''' damage from {{tip|TFT critical strike|critical strikes}} on the wearer.",
				[2] = "When the wearer is hit by a basic attack, deals {{as|{{pp|75;100;150|type=Star level}} magic damage}} to all nearby enemies ({{fd|2.5}} second cooldown)."
			},
			["recipe"] 		= {"Chain Vest", "Chain Vest"},
		},
	},
	["Brawler Emblem"] = {
		["5.5"]		= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Brawler|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Brawler|set=5.5}}.",
			["inactive"] 	= true,
		},
	},
	["Brink of Dawn"] = {
		["Current"]	= {
			["unique"] 		= true,
			["stats"] 		= {
				["ad"] 			= 10,
				["armor"] 		= 20,
			},
			["pass"] 		= "When the holder first drops {{as|'''below''' 60% health}} and {{as|'''below''' 30% health}}, they briefly enter stealth, becoming untargetable and shedding negative effects. After coming out of stealth, the holder gains {{as|55% '''bonus''' attack speed}}. Units can attack and cast abilities while stealthed.",
		},
	},
	["Bruiser Emblem"] = {
		["Current"]	= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Bruiser|set=6.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Bruiser|set=6.5}}.",
		},
		["6"]	= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Bruiser|set=6}}.<br />Cannot equip on a champion that is already a {{TFTt|Bruiser|set=6}}.",
			["inactive"]    = true,
		},
	},
	["Cannoneer Emblem"] = {
		["5.5"]		= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Cannoneer|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Cannoneer|set=5.5}}.",
			["inactive"] 	= true,
		},
	},
	["Caustic Deathblade"] = {
		["5"] 		= {
			["stats"] 		= {
				["ad"] 			= 20,
			},
			["pass"] 		= {
				[1] = "Grant {{as|15 '''bonus''' attack damage}} per stack. Starts at 4 stacks. Gain 1 stack when participating in killing an enemy, including summoned units. Stacks with no upper limit.",
				[2] = "Reduces the wearer's {{as|'''maximum''' health by 20%}}."
			},
			["recipe"] 		= {
				[1] = {"B. F. Sword", "Shadow Sword"},
				[2] = {"Shadow Sword", "Shadow Sword"},
			},
			["removed"] 	= true,
		},
	},
	["Caustic Quicksilver"] = {
		["5"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["dodge"] 		= 15,
				["mr"] 			= 20,
			},
			["pass"] 		= {
				[1] = "The wearer is immune to attack damage debuffs and crowd control effects for the entirety of combat.",
				[2] = "Reduces the wearer's {{as|'''maximum''' health by 20%}}."
			},
			["recipe"] 		= {
				[1] = {"Shadow Gloves", "Negatron Cloak"},
				[2] = {"Sparring Gloves", "Shadow Cloak"},
				[3] = {"Shadow Gloves", "Shadow Cloak"},
			},
			["removed"] 	= true,
		},
	},
	["Cavalier Emblem"] = {
		["5.5"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["armor"] 		= 20,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Cavalier|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Cavalier|set=5.5}}.",
			["recipe"] 		= {"Spatula", "Chain Vest"},
			["inactive"] 	= true,
		},
		["5"] 		= {
			["icon"] 		= "Cavalier Emblem TFT item old.png",
			["unique"] 		= true,
			["stats"] 		= {
				["armor"] 		= 20,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Cavalier|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Cavalier|set=5}}.",
			["recipe"] 		= {
				[1] = {"Shadow Spatula", "Chain Vest"},
				[2] = {"Spatula", "Shadow Vest"},
				[3] = {"Shadow Spatula", "Shadow Vest"},
			},
			["inactive"] 	= true,
		},
	},
	["Celestial Orb"] = {
		["3.5"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["mr"] 			= 25,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Celestial|set=3.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Celestial|set=3.5}}.",
			["recipe"] 		= {"Spatula", "Negatron Cloak"},
			["inactive"] 	= true,
		},
	},
	["Chain Vest"] = {
		["Current"]	= {
			["stats"] 		= {
				["armor"] 		= 20,
			},
		},
	},
	["Chalice of Charity"] = {
		["Current"]		= {
			["stats"] 		= {
				["mana"] 		= 15,
				["mr"] 			= 20,
			},
			["pass"] 		= "At the start of combat, the wearer and all allies within 1 hex in the same row to the left and right gain {{tip|TFT AP|{{as|50 ability power}}}} and heal for 10% of the {{as|magic|magic damage}} and {{as|true|true damage}} damage dealt by abilities for the rest of combat.",
		},
	},
	["Chalice of Favor"] = {
		["3"] 		= {
			["stats"] 		= {
				["mana"] 		= 15,
				["mr"] 			= 25,
			},
			["pass"] 		= "When the wearer casts a spell, they and allies within 2 hexes restore {{as|8 mana}}.",
			["recipe"] 		= {"Tear of the Goddess", "Negatron Cloak"},
			["removed"] 	= true,
		},
	},
	["Chalice of Malice"] = {
		["5"] 		= {
			["stats"] 		= {
				["mana"] 		= 15,
				["mr"] 			= 20,
			},
			["pass"] 		= "At the start of combat, all allies within 1 hex in the same row to the left and right gain {{as|40 ability power}} and the wearer loses {{as|20 ability power}} for the rest of combat.",
			["recipe"] 		= {
				[1] = {"Shadow Tear", "Negatron Cloak"},
				[2] = {"Tear of the Goddess", "Shadow Cloak"},
				[3] = {"Shadow Tear", "Shadow Cloak"},
			},
			["removed"] 	= true,
		},
	},
	["Chalice of Power"] = {
		["Current"]	= {
			["stats"] 		= {
				["mana"] 		= 15,
				["mr"] 			= 20,
			},
			["pass"] 		= "At the start of combat, the wearer and all allies within 1 hex in the same row to the left and right gain {{tip|TFT AP|{{as|30 ability power}}}} for the rest of combat.",
			["recipe"] 		= {"Tear of the Goddess", "Negatron Cloak"},
		},
	},
	["Challenger Emblem"] = {
		["Current"]	= {
			["unique"] 		= true,
			["stats"] 		= {
				["as"] 			= 10,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Challenger|set=6.5}}. Cannot equip on a champion that is already a {{TFTt|Challenger|set=6.5}}.",
			["recipe"] 		= {"Spatula", "Recurve Bow"},
		},
		["6"]	= {
			["unique"] 		= true,
			["stats"] 		= {
				["as"] 			= 10,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Challenger|set=6}}. Cannot equip on a champion that is already a {{TFTt|Challenger|set=6}}.",
			["recipe"] 		= {"Spatula", "Recurve Bow"},
			["inactive"]    = true,
		},
	},
	["Champion Duplicator"] = {
		["Current"]	= {
			["consume"]		= "Use on a champion to create an extra 1-star unit of that champion and add it to your bench.",
		},
	},
	["Chemtech Emblem"] = {
		["Current"]	= {
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Chemtech|set=6.5}}. Cannot equip on a champion that is already a {{TFTt|Chemtech|set=6.5}}.",
			["recipe"] 		= {"Spatula", "Giant's Belt"},
		},
		["6"]	= {
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Chemtech|set=6}}. Cannot equip on a champion that is already a {{TFTt|Chemtech|set=6}}.",
			["recipe"] 		= {"Spatula", "Giant's Belt"},
			["inactive"]    = true
		},
	},
	["Clockwork Emblem"] = {
		["Current"]	= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Clockwork|set=6.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Clockwork|set=6.5}}.",
		},
		["6"]	= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Clockwork|set=6}}.<br />Cannot equip on a champion that is already a {{TFTt|Clockwork|set=6}}.",
			["inactive"]    = true,
		},
	},
	["Covalent Spark"] = {
		["Current"]		= {
			["stats"] 		= {
				["ap"] 			= 10,
				["mr"] 			= 20,
			},
			["pass"] 		= 
			{
				[1] = "Enemies within 4 hexes have their {{as|magic resistance}} reduced by 50% (does not stack)",
				[2] = "When enemies within 4 hexes cast their ability, they are dealt {{as|275% of their '''maximum''' mana}} as {{as|magic damage}}.",
				[3] = "Regenerates {{as|1% '''maximum''' health}} per second."
			},
		},
	},
	["Coven Emblem"] = {
		["5"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["mana"] 		= 15,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Coven|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Coven|set=5}}.",
			["recipe"] 		= {
				[1] = {"Shadow Spatula", "Tear of the Goddess"},
				[2] = {"Spatula", "Shadow Tear"},
				[3] = {"Shadow Spatula", "Shadow Tear"},
			},
			["inactive"] 	= true,
		},
	},
	["Crown of Champions"] = {
		["7"] 		= {
			["stats"] 		= {
			},
			["pass"] 		= "Every 4 seconds, the wearer's next basic attack deals 9001x the amount of gold in your bank as {{as|true damage}}.",
		},
	},
	["Cursed Blade"] = {
		["1"] 		= {
			["stats"] 		= {
				["as"] 			= 20,
				["mr"] 			= 20,
			},
			["pass"] 		= "Basic attacks have a 20% chance to {{tip|TFT shrink|shrink}} the main target, removing 1 Star. A unit can be reduced to a 0-Star unit.",
			["recipe"] 		= {"Recurve Bow", "Negatron Cloak"},
			["removed"] 	= true,
		},
	},
	["Dark Shroud of Stillness"] = {
		["5"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["armor"] 		= 20,
				["dodge"] 		= 15,
			},
			["pass"] 		= "When combat begins, shoots a beam straight ahead and behind in a {{fd|1.5}}-hex line that delays affected allies (excluding the wearer) and enemies' first spellcast, increasing their {{as|'''maximum''' mana by 65%}} until they cast.",
			["recipe"] 		= {
				[1] = {"Shadow Gloves", "Chain Vest"},
				[2] = {"Sparring Gloves", "Shadow Vest"},
				[3] = {"Shadow Gloves", "Shadow Vest"},
			},
			["removed"] 	= true,
		},
	},
	["Dark Star's Heart"] = {
		["3.5"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["critchance"]	= 10,
				["dodge"] 		= 10,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Dark Star|set=3.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Dark Star|set=3.5}}.",
			["recipe"] 		= {"Sparring Gloves", "Spatula"},
			["inactive"] 	= true,
		},
	},
	["Darkin"] = {
		["1"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["mana"] 		= 40,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Demon|set=1}}.<br />Cannot equip on a {{TFTt|Demon|set=1}} champion.",
			["recipe"] 		= {"Tear of the Goddess", "Spatula"},
			["inactive"] 	= true,
		},
	},
	["Dawnbringer Emblem"] = {
		["5.5"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Dawnbringer|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Dawnbringer|set=5.5}}.",
			["recipe"] 		= {"Spatula", "Giant's Belt"},
			["inactive"] 	= true,
		},
		["5"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Dawnbringer|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Dawnbringer|set=5}}.",
			["recipe"] 		= {"Spatula", "Giant's Belt"},
			["inactive"] 	= true,
		},
	},
	["Death's Defiance"] = {
		["Current"]	= {
			["artifact"] 	= true,
			["stats"] 		= {
				["ad"] 			= 20,
				["armor"] 		= 20,
				["as"] 			= 20,
			},
			["pass"]		= {
				[1] = "Heal for 20% of the damage dealt by basic attacks and abilities.",
				[2] = "70% of the damage the wearer receives is instead dealt over 5 seconds as non-lethal damage."
			},
		},
	},
	["Deathblade"] = {
		["Current"]	= {
			["stats"] 		= {
				["ad"] 			= "{{pp|50;75;100|type=Star level}}",
			},
			["recipe"] 		= {"B. F. Sword", "B. F. Sword"},
		},
	},
	["Debonair Emblem"] = {
		["Current"]	= {
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 20,
			},
			["pass"]		= "Wearer is also a {{TFTt|Debonair|set=6.5}}. Cannot equip on a champion that is already a {{TFTt|Debonair|set=6.5}}.",
			["recipe"]		= {"Spatula", "Chain Vest"},
		},
	},
	["Demolitionist's Charge"] = {
		["3"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["ap"] 			= 20,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Demolitionist|set=3}}.<br />Cannot equip on a champion that is already a {{TFTt|Demolitionist|set=3}}.",
			["recipe"] 		= {"Spatula", "Needlessly Large Rod"},
			["inactive"] 	= true,
		},
	},
	["Demon Slayer"] = {
		["Current"]		= {
			["stats"] 		= {
				["ad"] 			= 10,
				["as"] 			= 10,
			},
			["pass"] 		= "Basic attacks and spells gain 40% increased damage (pre-mitigation), increased to 80% if the enemy has over {{as|1400 '''maximum''' health}}.",
		},
	},
	["Determined Investor"] = {
		["7"] 		= {
			["stats"] 		= {
				["hp"] 			= 300,
			},
			["pass"] 		= "After the holder dies 7 times, this item returns to your item tray and transforms into {{TFTi|Diamond Hands|set=7}}. Then gain 1 {{TFTi|Champion Duplicator|set=7}} and {{g|15}}.",
		},
	},
	["Diamond Hands"] = {
		["7"] 		= {
			["stats"] 		= {
				["hp"] 			= 300,
				["ap"]          = 20,
			},
			["pass"] 		= "When the holder first drops {{as|'''below''' 66% health}} and {{as|'''below''' 30% health}}, they gain {{g|1}} and damage immunity for 2 seconds.",
		},
	},
	["Draconic Emblem"] = {
		["5.5"]		= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Draconic|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Draconic|set=5.5}}.",
			["inactive"] 	= true,
		},
	},
	["Dragon Blessing"] = {
		["Current"]	= {
			["consume"]		= "Place on a {{TFTt|Dragonmancer|set=7}} champion and they become the Hero, gaining {{as|'''bonus''' health}} and ability power.",
		},
	},
	["Dragon's Claw"] = {
		["Current"]	= {
			["stats"] 		= {
				["mr"] 			= 200,
			},
			["pass"] 		= "On being hit by {{as|magic|magic damage}} or {{as|true|true damage}} damage from an ability, launch a fireball at the ability's caster that deals {{as|18% of their '''maximum''' health}} {{as|magic damage}} ({{fd|0.5}} second cooldown).",
			["recipe"] 		= {"Negatron Cloak", "Negatron Cloak"},
		},
	},
	["Dragon's Will"] = {
		["Current"]		= {
			["stats"] 		= {
				["mr"] 			= 300,
			},
			["pass"] 		= {
				[1] = "On being hit by {{as|magic|magic damage}} or {{as|true|true damage}} damage from an ability, launch a fireball at the ability's caster that deals {{as|25% of their '''maximum''' health}} {{as|magic damage}} ({{fd|0.5}} second cooldown).",
				[2] = "Regenerates {{as|2% '''maximum''' health}} per second."
			},
		},
	},
	["Dragonslayer Emblem"] = {
		["5"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["ap"] 			= 10,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Dragonslayer|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Dragonslayer|set=5}}.",
			["recipe"] 		= {
				[1] = {"Shadow Spatula", "Needlessly Large Rod"},
				[2] = {"Spatula", "Shadow Rod"},
				[3] = {"Shadow Spatula", "Shadow Rod"},
			},
			["inactive"] 	= true,
		},
	},
	["Draven's Axe"] = {
		["7"] 		= {
			["stats"] 		= {
				["ad"] 			= 20,
				["as"]          = 20,
			},
			["pass"] 		= "Gain {{as|1 '''bonus''' attack damage}} per gold in your bank, up to 80. Gain 1 stack per basic attack. At 100 stacks, gain {{g|10}} and 1 item component.",
		},
	},
	["Duelist's Zeal"] = {
		["4.5"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["as"] 			= 15,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Duelist|set=4.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Duelist|set=4.5}}.",
			["recipe"] 		= {"Spatula", "Recurve Bow"},
			["inactive"] 	= true,
		},
		["4"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["as"] 			= 15,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Duelist|set=4}}.<br />Cannot equip on a champion that is already a {{TFTt|Duelist|set=4}}.",
			["recipe"] 		= {"Spatula", "Recurve Bow"},
			["inactive"] 	= true,
		},
	},
	["Dvarapala Stoneplate"] = {
		["Current"]		= {
			["stats"] 		= {
				["armor"] 		= 20,
				["mr"] 			= 20,
			},
			["pass"] 		= 
			{
				[1] = "The holder gains 30 {{as|'''bonus''' armor}} and {{as|'''bonus''' magic resistance}} for each enemy targeting them.",
				[2] = "Regenerates {{as|3% '''maximum''' health}} per second."
			},
		},
	},
	["Eclipse Cape"] = {
		["5"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["armor"] 		= 20,
				["hp"] 			= 150,
			},
			["pass"] 		= 
			{
				[1] = "Every {{fd|1.5}} seconds applies a 10-second burn to a random enemy within 3 hexes, dealing {{as|{{fd|2.5}}% of target's '''maximum''' health}} {{as|true damage}} each second and applying {{tip|TFT Grievous Wounds|Grievous Wounds}} for the duration.",
				[2] = "For the first 8 seconds of combat, the wearer is burned for {{as|{{fd|2.5}}% '''maximum''' health}} {{as|true damage}} every second, and have {{tip|TFT Grievous Wounds|Grievous Wounds}} applied to them for the duration."
			},
			["recipe"] 		= {
				[1] = {"Shadow Vest", "Giant's Belt"},
				[2] = {"Chain Vest", "Shadow Belt"},
				[3] = {"Shadow Vest", "Shadow Belt"},
			},
			["removed"] 	= true,
		},
	},
	["Edge of Night"] = {
		["Current"]	= {
			["unique"] 		= true,
			["stats"] 		= {
				["ad"] 			= 10,
				["armor"] 		= 20,
			},
			["pass"] 		= "When the holder first drops {{as|'''below''' 60% health}}, they briefly enter stealth, becoming untargetable and shedding negative effects. After coming out of stealth, the holder gains {{as|40% '''bonus''' attack speed}}. Units can attack and cast abilities while stealthed.",
			["recipe"] 		= {"B. F. Sword", "Chain Vest"},
		},
	},
	["Elderwood Sprout"] = {
		["4.5"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["mr"] 			= 25,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Elderwood|set=4.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Elderwood|set=4.5}}.",
			["recipe"] 		= {"Spatula", "Negatron Cloak"},
			["inactive"] 	= true,
		},
	},
	["Enforcer Emblem"] = {
		["Current"]	= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Enforcer|set=6.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Enforcer|set=6.5}}.",
		},
		["6"]	= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Enforcer|set=6}}.<br />Cannot equip on a champion that is already a {{TFTt|Enforcer|set=6}}.",
			["inactive"]    = true,
		},
	},
	["Eternal Whisper"] = {
		["Current"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["as"] 			= 10,
				["critchance"]	= 50,
			},
			["pass"] 		= "{{tip|TFT crit|Critical strike}} hits reduce the target's {{as|armor}} by 70% for the rest of combat. This effect does not stack.",
		},
	},
	["Eternal Winter"] = {
		["Current"]	= {
			["artifact"] 	= true,
			["stats"] 		= {
				["armor"] 		= 25,
				["hp"] 			= 200,
			},
			["pass"] 		= "Enemies who damage the wearer have their {{as|attack speed}} slowed by 30% for 2 seconds. After being slowed this way 7 times, the attacker is {{tip|TFT stun|Frozen}} for the duration instead. An enemy can only be ''Frozen'' once every 10 seconds.",
		},
	},
	["Fallen Guardian Angel"] = {
		["5"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["ad"] 			= 10,
				["armor"] 		= 20,
			},
			["pass"] 		= "Upon death, cleanses negative effects and revives after 2 seconds at {{as|70% '''maximum''' health}}. This effect can trigger once per combat. After the wearer revives, reduce their {{as|attack speed}} by 50% for the rest of combat.",
			["recipe"] 		= {
				[1] = {"Shadow Sword", "Chain Vest"},
				[2] = {"B. F. Sword", "Shadow Vest"},
				[3] = {"Shadow Sword", "Shadow Vest"},
			},
			["removed"] 	= true,
		},
	},
	["Final Whisper"] = {
		["5"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["as"] 			= 10,
				["critchance"]	= 15,
			},
			["pass"] 		= 
			{
				[1] = "{{tip|TFT crit|Critical strike}} hits reduce the target's {{as|armor}} and {{as|magic resistance}} by 70% for 5 seconds. This effect does not stack.",
				[2] = "The wearer's {{as|armor}} and {{as|magic resistance}} are permanently reduced by 25%."
			},
			["recipe"] 		= {
				[1] = {"Shadow Bow", "Sparring Gloves"},
				[2] = {"Recurve Bow", "Shadow Gloves"},
				[3] = {"Shadow Bow", "Shadow Gloves"},
			},
			["removed"] 	= true,
		},
	},
	["Fist of Fairness"] = {
		["Current"]		= {
			["stats"] 		= {
				["critchance"]	= 15,
				["mana"] 		= 15,
			},
			["pass"] 		= "At the start of each round, grants {{as|35 '''bonus''' attack damage}}, {{as|35 ability power}}, and basic attacks and abilities heal for 35% of the damage dealt.",
		},
	},
	["Force of Darkness"] = {
		["5"] 		= {
			["unique"] 		= true,
			["pass"] 		= "Increases the unit cap by 2, but your Little Legends takes double damage.",
			["recipe"] 		= {
				[1] = {"Shadow Spatula", "Spatula"},
				[2] = {"Shadow Spatula", "Shadow Spatula"},
			},
			["removed"] 	= true,
		},
	},
	["Force of Nature"] = {
		["5.5"]		= {
			["pass"] 		= "Increases the unit cap by 1.",
			["recipe"] 		= {"Spatula", "Spatula"},
			["removed"] 	= true,
		},
	},
	["Forgotten Emblem"] = {
		["5.5"]		= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Forgotten|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Forgotten|set=5.5}}.",
		},
		["5"]		= {
			["icon"] 		= "Forgotten Emblem TFT item old.png",
			["unique"] 		= true,
			["stats"] 		= {
				["ad"] 			= 10,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Forgotten|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Forgotten|set=5}}.",
			["recipe"] 		= {
				[1] = {"Shadow Spatula", "B. F. Sword"},
				[2] = {"Spatula", "Shadow Sword"},
				[3] = {"Shadow Spatula", "Shadow Sword"},
			},
		},
	},
	["Frozen Dark Heart"] = {
		["5"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["armor"] 		= 20,
				["mana"] 		= 15,
			},
			["pass"] 		= 
			{
				[1] = "Reduces the {{as|attack speed}} of enemies within 2 hexes by 35%.",
				[2] = "Reduces the {{as|attack speed}} of allies within 1 hex, except the wearer, by 35%."
			},
			["recipe"] 		= {
				[1] = {"Shadow Vest", "Tear of the Goddess"},
				[2] = {"Chain Vest", "Shadow Tear"},
				[3] = {"Shadow Vest", "Shadow Tear"},
			},
			["removed"] 	= true,
		},
	},
	["Frozen Heart"] = {
		["Current"]	= {
			["unique"] 		= true,
			["stats"] 		= {
				["armor"] 		= 20,
				["mana"] 		= 15,
			},
			["pass"] 		= "Reduces the {{as|attack speed}} of enemies within 2 hexes by 30% for {{fd|0.5}} seconds.",
			["recipe"] 		= {"Tear of the Goddess", "Chain Vest"},
		},
	},
	["Frozen Heart of Gold"] = {
		["Current"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["armor"] 		= 20,
				["mana"] 		= 45,
			},
			["pass"] 		= "Reduces the {{as|attack speed}} of enemies within 2 hexes by 50% for {{fd|0.5}} seconds.",
		},
	},
	["Frozen Mallet"] = {
		["2"] 		= {
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 200,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Glacial|set=2}}.<br />Cannot equip on a {{TFTt|Glacial|set=2}} champion.",
			["recipe"] 		= {"Giant's Belt", "Spatula"},
			["inactive"] 	= true,
		},
	},
	["Gambler's Blade"] = {
		["7"] 		= {
			["stats"] 		= {
				["ad"] 			= 20,
				["as"]          = 20,
			},
			["pass"] 		= "Gain {{as|1% '''bonus''' attack speed}} per gold in your bank, up to 80. Each  basic attack has a 4% chance to drop {{g|1}}.",
		},
	},
	["Gargoyle Stoneplate"] = {
		["Current"]	= {
			["stats"] 		= {
				["armor"] 		= 20,
				["mr"] 			= 20,
			},
			["pass"] 		= "The holder gains 18 {{as|'''bonus''' armor}} and {{as|'''bonus''' magic resistance}} for each enemy targeting them.",
			["recipe"] 		= {"Chain Vest", "Negatron Cloak"},
		},
	},
	["Gargoyle Stoneplate of Immortality"] = {
		["5"] 		= {
			["stats"] 		= {
				["armor"] 		= 20,
				["mr"] 			= 20,
			},
			["pass"] 		= "The wearer heals for 45 every 2 seconds for each unit targeting them.",
			["recipe"] 		= {
				[1] = {"Shadow Vest", "Negatron Cloak"},
				[2] = {"Chain Vest", "Shadow Cloak"},
				[3] = {"Shadow Vest", "Shadow Cloak"},
			},
			["removed"] 	= true,
		},
	},
	["Giant's Belt"] = {
		["Current"]	= {
			["stats"] 		= {
				["hp"] 			= 150,
			},
		},
	},
	["Giant Slayer"] = {
		["Current"]	= {
			["stats"] 		= {
				["ad"] 			= 10,
				["as"] 			= 10,
			},
			["pass"] 		= "Basic attacks and spells gain 20% increased damage (pre-mitigation), increased to 60% if the enemy has over {{as|1800 '''maximum''' health}}.",
			["recipe"] 		= {"B. F. Sword", "Recurve Bow"},
		},
	},
	["Glamorous Gauntlet"] = {
		["Current"]		= {
			["stats"] 		= {
				["ap"] 			= 20,
				["critchance"]	= 15,
				["critdmg"]		= 75,
			},
			["pass"] 		= "The holder's {{as|magic|magic damage}} and {{as|true|true damage}} damage from abilities can {{tip|TFT crit|critically strike}}.",
		},
	},
	["Gold Collector"] = {
		["Current"]	= {
			["artifact"] 	= true,
			["stats"] 		= {
				["ad"] 			= 20,
				["critchance"]	= 20,
			},
			["pass"] 		= "The wearer executes enemies {{as|'''below''' 10% health}} on-hit. Executions during PvP rounds have a 60% chance to generate {{as|1 gold}}.",
		},
	},
	["Goldmancer's Staff"] = {
		["7"] 		= {
			["stats"] 		= {
				["ap"] 			= 20,
				["mana"] 		= 30,
			},
			["pass"] 		= "Gain 1 ability power per gold in your bank, up to 80, and a 50% chance to drop {{g|2}} on enemy kill.",
		},
	},
	["Guardian Angel"] = {
		["6"]	= {
			["unique"] 		= true,
			["stats"] 		= {
				["ad"] 			= 10,
				["armor"] 		= 20,
			},
			["pass"] 		= "Upon death, cleanses negative effects and revives after 2 seconds with {{as|250 health}}. This effect can trigger once per combat.",
			["recipe"] 		= {"B. F. Sword", "Chain Vest"},
			["removed"] 	= true,
		},
	},
	["Guardian Archangel"] = {
		["5.5"]		= {
			["unique"] 		= true,
			["stats"] 		= {
				["ad"] 			= 10,
				["armor"] 		= 20,
				["as"] 			= 30,
			},
			["pass"] 		= "Upon death, cleanses negative effects and revives after 2 seconds with {{as|100% '''maximum''' health}}. This effect can trigger once per combat.",
			["removed"] 	= true,
		},
	},
	["Guinsoo's Rageblade"] = {
		["Current"]	= {
			["stats"] 		= {
				["ap"] 			= 10,
				["as"] 			= 10,
			},
			["pass"] 		= "Basic attacks grant {{as|6% '''bonus''' attack speed}} for the rest of combat. Stacks with no {{tt|upper limit|Attack speed is hard capped at 5 attacks per second}}.",
			["recipe"] 		= {"Recurve Bow", "Needlessly Large Rod"},
		},
	},
	["Guinsoo's Reckoning"] = {
		["Current"]		= {
			["stats"] 		= {
				["ap"] 			= 10,
				["as"] 			= 40,
			},
			["pass"] 		= "Basic attacks grant {{as|10% '''bonus''' attack speed}} for the rest of combat. Stacks with no {{tt|upper limit|Attack speed is hard capped at 5 attacks per second}}.",
		},
	},
	["Guinsoo's Sacrificial Rageblade"] = {
		["5"] 		= {
			["stats"] 		= {
				["ap"] 			= 10,
				["as"] 			= 10,
			},
			["pass"] 		= 
			{
				[1] = "Basic attacks grant {{as|9% '''bonus''' attack speed}} for the rest of combat. Stacks with no upper limit.",
				[2] = "The wearer takes {{as|{{fd|2.5}}% '''maximum''' health}} {{as|true damage}} with every basic attack."
			},
			["recipe"] 		= {
				[1] = {"Shadow Rod", "Recurve Bow"},
				[2] = {"Needlessly Large Rod", "Shadow Bow"},
				[3] = {"Shadow Rod", "Shadow Bow"},
			},
			["removed"] 	= true,
		},
	},
	["Hand of Justice"] = {
		["Current"]	= {
			["stats"] 		= {
				["critchance"]	= 15,
				["mana"] 		= 15,
			},
			["pass"] 		= "Gains both of the following:<br>* Grants {{as|10 '''bonus''' attack damage}} and {{as|10 ability power}}.<br>* Basic attacks and abilities heal for 10% of the damage dealt.<br>At the start of each round, one of these buffs is increased to 33(%).",
			["recipe"] 		= {"Sparring Gloves", "Tear of the Goddess"},
		},
	},
	["Hand of Vengeance"] = {
		["5"] 		= {
			["stats"] 		= {
				["critchance"]	= 15,
				["mana"] 		= 15,
			},
			["pass"] 		= "At the beginning of combat the wearer gains {{as|40 '''bonus''' attack damage}}, {{as|40 ability power}}, and heals for 40% of damage dealt from basic attacks and abilities. These bonuses expire on each takedown and renew on the next.",
			["recipe"] 		= {
				[1] = {"Shadow Gloves", "Tear of the Goddess"},
				[2] = {"Sparring Gloves", "Shadow Tear"},
				[3] = {"Shadow Gloves", "Shadow Tear"},
			},
			["removed"] 	= true,
		},
	},
	["Hand of Vengeance"] = {
		["5"]		= {
			["stats"]		= {
				["critchance"]	= 15,
				["mana"]		= 15,
			},
			["pass"]		= "At the beginning of combat the wearer gains {{as|40 '''bonus''' attack damage}}, 40 spell power, and heals for 40% of damage dealt from basic attacks and abilities. These bonuses expire on each takedown and renew on the next.",
			["recipe"]		= {
				[1] = {"Shadow Gloves", "Tear of the Goddess"},
				[2] = {"Sparring Gloves", "Shadow Tear"},
				[3] = {"Shadow Gloves", "Shadow Tear"},
			},
			["removed"]		= true,
		},
	},
	["Hellion Emblem"] = {
		["5.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["as"]			= 10,
			},
			["pass"]		= "Wearer is also a {{TFTt|Hellion|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Hellion|set=5.5}}.",
			["recipe"]		= {"Spatula", "Recurve Bow"},
			["inactive"]	= true,
		},
		["5"]		= {
			["icon"]		= "Hellion Emblem TFT item old.png",
			["unique"]		= true,
			["stats"]		= {
				["as"]			= 10,
			},
			["pass"]		= "Wearer is also a {{TFTt|Hellion|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Hellion|set=5}}.",
			["recipe"]		= {
				[1] = {"Shadow Spatula", "Recurve Bow"},
				[2] = {"Spatula", "Shadow Bow"},
				[3] = {"Shadow Spatula", "Shadow Bow"},
			},
			["inactive"]	= true,
		},
	},
	["Hextech Emblem"] = {
		["Current"]	= {
			["unique"] 		= true,
			["stats"] 		= {
				["mana"] 		= 15,
			},
			["pass"] 		= "Wearer is also a {{TFTt|Hextech|set=6.5}}. Cannot equip on a champion that is already a {{TFTt|Hextech|set=6.5}}.",
			["recipe"] 		= {"Spatula", "Tear of the Goddess"},
		},
	},
	["Hextech Gunblade"] = {
		["Current"]	= {
			["stats"]		= {
				["ad"]			= 10,
				["ap"]			= 10,
			},
			["pass"]		= "The wearer's {{as|magic|magic damage}} and {{as|true|true damage}} damage from abilities heal the wearer and the {{as|lowest health}} ally for 33% of the damage dealt.",
			["recipe"]		= {"B. F. Sword", "Needlessly Large Rod"},
		},
	},
	["Hextech Gunblade of Immortality"] = {
		["5"]		= {
			["stats"]		= {
				["ad"]			= 10,
				["ap"]			= 10,
			},
			["pass"]		= "The wearer's {{as|magic|magic damage}} and {{as|true|true damage}} damage from abilities heal the ally with {{as|lowest percent health}} for 60% of damage dealt. This healing cannot affect the wearer.",
			["recipe"]		= {
				[1] = {"Shadow Sword", "Needlessly Large Rod"},
				[2] = {"B. F. Sword", "Shadow Rod"},
				[3] = {"Shadow Sword", "Shadow Rod"},
			},
			["removed"]		= true,
		},
	},
	["Hextech Lifeblade"] = {
		["Current"]		= {
			["stats"]		= {
				["ad"]			= 10,
				["ap"]			= 40,
			},
			["pass"]		= "The wearer's {{as|magic|magic damage}} and {{as|true|true damage}} damage from abilities heal the wearer and the {{as|lowest health}} ally for 40% of the damage dealt. Excess healing with this item is converted into a shield up to {{as|300 health}}.",
		},
	},
	["Hush"] = {
		["2"]		= {
			["stats"]		= {
				["mana"]		= 20,
				["mr"]			= 25,
			},
			["pass"]		= "Basic attacks have a 20% chance to {{tip|TFT Mana-lock|mana-lock}} the main target for 4 seconds, preventing the target from gaining mana.",
			["recipe"]		= {"Tear of the Goddess", "Negatron Cloak"},
			["removed"]		= true,
		},
	},
	["Iceborn Gauntlet"] = {
		["2"]		= {
			["stats"]		= {
				["armor"]		= 25,
				["dodge"]		= 20,
			},
			["pass"]		= "After casting their ability, the wearer's next basic attack freezes the target, {{tip|TFT Stun|stunning}} them for {{fd|2.5}} seconds.",
			["recipe"]		= {"Sparring Gloves", "Chain Vest"},
			["removed"]		= true,
		},
	},
	["Imperial Emblem"] = {
		["6"]	= {
			["unique"]		= true,
			["stats"]		= {
				["ad"]			= 10,
			},
			["pass"]		= "Wearer is also a {{TFTt|Imperial|set=6}}. Cannot equip on a champion that is already a {{TFTt|Imperial|set=6}}.",
			["recipe"]		= {"Spatula", "B. F. Sword"},
			["inactive"] 	= true,
		},
	},
	["Inferno's Cinder"] = {
		["2"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ap"]			= 20,
			},
			["pass"]		= "Wearer is also an {{TFTt|Inferno|set=2}}.<br />Cannot equip on an {{TFTt|Inferno|set=2}} champion.",
			["recipe"]		= {"Spatula", "Needlessly Large Rod"},
			["inactive"]	= true,
		},
	},
	["Infiltrator's Talons"] = {
		["3.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["as"]			= 15,
			},
			["pass"]		= "Wearer is also a {{TFTt|Infiltrator|set=3.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Infiltrator|set=3.5}}.",
			["recipe"]		= {"Recurve Bow", "Spatula"},
			["inactive"]	= true,
		},
	},
	["Infinity Edge"] = {
		["Current"]	= {
			["unique"]		= true,
			["stats"]		= {
				["ad"]			= 10,
				["critchance"]	= 75,
				["critdmg"]		= 10,
			},
			["pass"]		= "Converts every {{as|1% excess critical strike chance}} into {{as|1% '''bonus''' critical strike damage}}.",
			["recipe"]		= {"B. F. Sword", "Sparring Gloves"},
		},
	},
	["Infinity Force"] = {
		["Current"]	= {
			["artifact"]		= true,
			["stats"]		= {
				["ad"]			= 30,
				["ap"]			= 30,
				["armor"]		= 30,
				["as"]			= 30,
				["critchance"]	= 30,
				["hp"]			= 30,
				["mr"]			= 30,
			},
		},
	},
	["Innovator Emblem"] = {
		["Current"]	= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Innovator|set=6.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Innovator|set=6.5}}.",
		},
		["6"]	= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Innovator|set=6}}.<br />Cannot equip on a champion that is already a {{TFTt|Innovator|set=6}}.",
			["inactive"]    = true,
		},
	},
	["Invoker Emblem"] = {
		["5.5"]		= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= " is also a {{TFTt|Invoker|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Invoker|set=5.5}}.",
			["inactive"]	= true,
		},
	},
	["Ionic Dark-Spark"] = {
		["5"]		= {
			["stats"]		= {
				["ap"]			= 10,
				["mr"]			= 20,
			},
			["pass"]		= "Enemies and allies (except the holder) within 2 hexes are zapped when they cast an ability. Allies take {{as|50% '''maximum''' mana}} as {{as|magic damage}} and enemies take {{as|200% '''maximum''' mana}} as {{as|magic damage}}. Whenever an ally or enemy is zapped the wearer gains {{as|10 ability power}} for the rest of combat.",
			["recipe"]		= {
				[1] = {"Shadow Rod", "Negatron Cloak"},
				[2] = {"Needlessly Large Rod", "Shadow Cloak"},
				[3] = {"Shadow Rod", "Shadow Cloak"},
			},
			["removed"]		= true,
		},
	},
	["Ionic Spark"] = {
		["Current"]	= {
			["stats"]		= {
				["ap"]			= 10,
				["mr"]			= 20,
			},
			["pass"]		= {
				[1] = "Enemies within 2 hexes have their {{as|magic resistance}} reduced by 50% (does not stack).",
				[2] = "When enemies within 2 hexes cast their ability, they are dealt {{as|200% of their '''maximum''' mana}} as {{as|magic damage}}."
			},
			["recipe"]		= {"Needlessly Large Rod", "Negatron Cloak"},
		},
	},
	["Ironclad Emblem"] = {
		["5.5"]		= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Ironclad|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Ironclad|set=5.5}}.",
			["inactive"]	= true,
		},
		["5"]		= {
			["icon"]		= "Ironclad Emblem TFT item old.png",
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 20,
			},
			["pass"]		= "Wearer is also a {{TFTt|Ironclad|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Ironclad|set=5}}.",
			["recipe"]		= {"Spatula", "Chain Vest"},
			["inactive"]	= true,
		},
	},
	["Jeweled Gauntlet"] = {
		["Current"]	= {
			["stats"]		= {
				["ap"]			= 20,
				["critchance"]	= 15,
				["critdmg"]		= 30,
			},
			["pass"]		= "The holder's {{as|magic|magic damage}} and {{as|true|true damage}} damage from abilities can {{tip|TFT crit|critically strike}}.",
			["recipe"]		= {"Sparring Gloves", "Needlessly Large Rod"},
		},
	},
	["Kayn's Liberation"] = {
		["4"]		= {
			["consume"]		= "Place on {{TFTc|Kayn|set=4}} to free him from ''Rhaast'', permanently improving his [[File:Reaping Slash A.png|20px|border|link=]] '''Reaping Slash''' spell to deal bonus damage at the start of combat.<br />This item disappears when used and destroys {{TFTi|Rhaast's Embrace|set=4}}. ''Can only be used during the planning phase.''",
			["removed"]		= true,
		},
	},
	["Knight's Vow"] = {
		["1"]		= {
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 40,
			},
			["pass"]		= "Wearer is also a {{TFTt|Knight|set=1}}.<br />Cannot equip on a {{TFTt|Knight|set=1}} champion.",
			["recipe"]		= {"Chain Vest", "Spatula"},
			["inactive"]	= true,
		},
	},
	["Knight Emblem"] = {
		["5.5"]		= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Knight|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Knight|set=5.5}}.",
			["inactive"]	= true,
		},
	},
	["Last Whisper"] = {
		["Current"]	= {
			["unique"]		= true,
			["stats"]		= {
				["as"]			= 10,
				["critchance"]	= 15,
			},
			["pass"]		= "{{tip|TFT crit|Critical strike}} hits reduce the target's {{as|armor}} by 70% for 5 seconds. This effect does not stack.",
			["recipe"]		= {"Recurve Bow", "Sparring Gloves"},
		},
	},
	["Legionnaire Emblem"] = {
		["5.5"]		= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Legionnaire|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Legionnaire|set=5.5}}.",
			["inactive"]	= true,
		},
		["5"]		= {
			["icon"]		= "Legionnaire Emblem TFT item old.png",
			["unique"]		= true,
			["stats"]		= {
				["as"]			= 10,
			},
			["pass"]		= "Wearer is also a {{TFTt|Legionnaire|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Legionnaire|set=5}}.",
			["recipe"]		= {"Spatula", "Recurve Bow"},
			["inactive"]	= true,
		},
	},
	["Lesser Rune of Allegiance"] = {
		["Current"] = {
			["consume"] = "Place on a 1, 2, or 3 cost champion to transfer that champion to your partner, along with all items the champion has equipped. Cannot be used in combat."
		},
	},
	["Loaded Dice"] = {
		["Current"]	= {
			["consume"]		= "Use on a champion to reroll a special shop that contains only champions sharing a trait with the source champion.",
		},
	},
	["Locket of Targon Prime"] = {
		["Current"]		= {
			["stats"]		= {
				["ap"]			= 10,
				["armor"]		= 20,
			},
			["pass"]		= 
			{
				[1] = "At the start of combat, the wearer and all allies within 3 hexes in the same row to the left and right gain a {{as|{{pp|400;500;600|type=Star level}} health}} shield for 60 seconds.",
				[2] = "Grants all allies {{as|200 '''bonus''' health}} at the start of combat."
			},
		},
	},
	["Locket of the Iron Solari"] = {
		["Current"]	= {
			["stats"]		= {
				["ap"]			= 10,
				["armor"]		= 20,
			},
			["pass"]		= "At the start of combat, the wearer and all allies within 2 hexes in the same row to the left and right gain a {{as|{{pp|300;350;400|type=Star level}} health}} shield for 15 seconds.",
			["recipe"]		= {"Needlessly Large Rod", "Chain Vest"},
		},
	},
	["Locket of the Silver Lunari"] = {
		["5"]		= {
			["stats"]		= {
				["ap"]			= 10,
				["armor"]		= 20,
			},
			["pass"]		= "At the start of combat, the wearer and all allies within 2 hexes in the same row to the left and right gain 60 {{as|'''bonus''' armor}} and {{as|'''bonus''' magic resistance}}, but gain 5 less {{as|mana}} per basic attack.",
			["recipe"]		= {
				[1] = {"Shadow Vest", "Needlessly Large Rod"},
				[2] = {"Chain Vest", "Shadow Rod"},
				[3] = {"Shadow Vest", "Shadow Rod"},
			},
			["removed"]		= true,
		},
	},
	["Luden's Echo"] = {
		["4.5"]		= {
			["stats"]		= {
				["ap"]			= 10,
				["mana"]		= 15,
			},
			["pass"]		= "When the wearer deals damage with their ability, the first target hit and up to 3 enemies within 2 hexes of the target are dealt an additional {{as|180 magic damage}}. Enemies who are crowd controlled are dealt an additional {{as|180 magic damage}}.",
			["recipe"]		= {"Needlessly Large Rod", "Tear of the Goddess"},
			["removed"]		= true,
		},
	},
	["Luminous Deathblade"] = {
		["Current"]		= {
			["stats"]		= {
				["ad"] 			= "{{pp|80;120;160|type=Star level}}",
			},
		},
	},
	["Mage's Cap"] = {
		["2"]		= {
			["unique"]		= true,
			["stats"]		= {
				["mana"]		= 20,
			},
			["pass"]		= "Wearer is also a {{TFTt|Mage|set=2}}.<br />Cannot equip on a {{TFTt|Mage|set=2}} champion.",
			["recipe"]		= {"Spatula", "Tear of the Goddess"},
			["inactive"]	= true,
		},
	},
	["Mage's Hat"] = {
		["4.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["mana"]		= 15,
			},
			["pass"]		= "Wearer is also a {{TFTt|Mage|set=4.5}}.<br />Cannot equip on a {{TFTt|Mage|set=4.5}} champion.",
			["recipe"]		= {"Spatula", "Tear of the Goddess"},
			["inactive"]	= true,
		},
		["4"]		= {
			["unique"]		= true,
			["stats"]		= {
				["mana"]		= 15,
			},
			["pass"]		= "Wearer is also a {{TFTt|Mage|set=4}}.<br />Cannot equip on a {{TFTt|Mage|set=4}} champion.",
			["recipe"]		= {"Spatula", "Tear of the Goddess"},
			["inactive"]	= true,
		},
	},
	["Magnetic Remover"] = {
		["Current"]	= {
			["consume"]		= "UseUse on a champion to unequip all items. Cannot be used on board champions in combat.",
		},
	},
	["Manazane"] = {
		["Current"]	= {
			["artifact"]		= true,
			["stats"]		= {
				["ad"]			= 15,
				["as"]			= 15,
				["mana"]		= 40,
			},
			["pass"]		= "After the wearer casts their spell for the first time each combat, they restore {{as|150 mana}} over 4 seconds.",
		},
	},
	["Mercenary Emblem"] = {
		["Current"]	= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Mercenary|set=6.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Mercenary|set=6.5}}.",
		},
		["6"]	= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Mercenary|set=6}}.<br />Cannot equip on a champion that is already a {{TFTt|Mercenary|set=6}}.",
			["inactive"]    = true,
		},
	},
	["Mistral"] = {
		["Current"]		= {
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
				["mr"]			= 20,
			},
			["pass"]		= 
			{
				[1] = "At the start of combat, {{tip|TFT banish|banishes}} for 8 seconds the unit that mirrors the wielder's placement on the other side of the board. Pierces through CC immunity effects.",
				[2] = "Grants {{as|10% '''bonus''' attack speed}} to all allies at the start of combat."
			},
		},
	},
	["Mittens"] = {
		["1"]		= {
			["unique"]		= true,
			["stats"]		= {
				["critchance"]	= 20,
				["dodge"]		= 20,
			},
			["pass"]		= "Wearer is also a {{TFTt|Yordle|set=1}}.<br />Cannot equip on a {{TFTt|Yordle|set=1}} champion.",
			["recipe"]		= {"Sparring Gloves", "Spatula"},
			["inactive"]	= true,
		},
	},
	["Mogul's Mail"] = {
		["7"] 		= {
			["stats"] 		= {
				["hp"] 			= 300,
			},
			["pass"] 		= "Gain {{fd|1.5}} {{as|'''bonus''' armor}}, {{fd|1.5}} {{as|'''bonus''' magic resistance}}, and 15 {{as|'''bonus''' health}} when taking damage, stacking up to 30 times. At maximum stacks, gain {{g|2}}.",
		},
	},
	["Mor-evil-lonomicon"] = {
		["5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ap"]			= 10,
				["hp"]			= 150,
			},
			["pass"]		= 
			{
				[1] = "Dealing {{as|magic damage}} with an ability applies a burn on the enemies hit for 25 seconds, dealing {{as|4% of target's '''maximum''' health}} {{as|true damage}} each second and applying {{tip|TFT Grievous Wounds|Grievous Wounds}} for the duration.",
				[2] = "The wearer's ability deals 50% less damage."
			},
			["recipe"]		= {
				[1] = {"Shadow Belt", "Needlessly Large Rod"},
				[2] = {"Giant's Belt", "Shadow Rod"},
				[3] = {"Shadow Belt", "Shadow Rod"},
			},
			["removed"]		= true,
		},
	},
	["More More-ellonomicon"] = {
		["Current"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ap"]			= 10,
				["hp"]			= 150,
				["mana"]		= 30,
			},
			["pass"]		= "Dealing {{as|magic|magic damage}} or {{as|true|true damage}} damage with an ability applies a burn on the enemies hit for 30 seconds, dealing {{as|4% of target's '''maximum''' health}} {{as|true damage}} each second and applying {{tip|TFT Grievous Wounds|Grievous Wounds}} for the duration.",
		},
	},
	["Morellonomicon"] = {
		["Current"]	= {
			["unique"]		= true,
			["stats"]		= {
				["ap"]			= 10,
				["hp"]			= 150,
			},
			["pass"]		= "Dealing {{as|magic|magic damage}} or {{as|true|true damage}} damage with an ability applies a burn on the enemies hit for 10 seconds, dealing {{as|1% of target's '''maximum''' health}} {{as|true damage}} each second and applying {{tip|TFT Grievous Wounds|Grievous Wounds}} for the duration.",
			["recipe"]		= {"Needlessly Large Rod", "Giant's Belt"},
		},
	},
	["Mutant Emblem"] = {
		["Current"]	= {
			["unique"]		= true,
			["stats"]		= {
				["mr"]			= 20,
			},
			["pass"]		= "Wearer is also a {{TFTt|Mutant|set=6.5}}. Cannot equip on a champion that is already a {{TFTt|Mutant|set=6.5}}.",
			["recipe"]		= {"Spatula", "Negatron Cloak"},
		},
		["6"]	= {
			["unique"]		= true,
			["stats"]		= {
				["mr"]			= 20,
			},
			["pass"]		= "Wearer is also a {{TFTt|Mutant|set=6}}. Cannot equip on a champion that is already a {{TFTt|Mutant|set=6}}.",
			["recipe"]		= {"Spatula", "Negatron Cloak"},
			["inactive"]    = true
		},
	},
	["Mystic Emblem"] = {
		["5.5"]		= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Mystic|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Mystic|set=5.5}}.",
			["inactive"]	= true,
		},
	},
	["Needlessly Big Gem"] = {
		["7"] 		= {
			["stats"] 		= {
				["hp"] 			= 300,
			},
			["pass"] 		= "If the holder is alive after 15 seconds of combat, your units deal 1% '''bonus''' damage per gold you have. For every 2 units alive when this happens, gain {{g|1}}.",
		},
	},
	["Needlessly Large Rod"] = {
		["Current"]	= {
			["stats"]		= {
				["ap"]			= 10,
			},
		},
	},
	["Neeko's Help"] = {
		["Current"]	= {
			["consume"]		= "Use on a champion to create an extra 1-star unit of that champion and add it to your bench.",
		},
	},
	["Negatron Cloak"] = {
		["Current"]	= {
			["stats"]		= {
				["mr"]			= 20,
			},
		},
	},
	["Nightbringer Emblem"] = {
		["5.5"]		= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Nightbringer|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Nightbringer|set=5.5}}.",
			["inactive"]	= true,
		},
		["5"]		= {
			["icon"]		= "Nightbringer Emblem TFT item old.png",
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Nightbringer|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Nightbringer|set=5}}.",
			["recipe"]		= {
				[1] = {"Shadow Spatula", "Giant's Belt"},
				[2] = {"Spatula", "Shadow Belt"},
				[3] = {"Shadow Spatula", "Shadow Belt"},
			},
			["inactive"]	= true,
		},
	},
	["Obsidian Cleaver"] = {
		["Current"]	= {
			["artifact"]		= true,
			["stats"]		= {
				["ad"]			= 30,
				["hp"]			= 200,
			},
			["pass"]		= "The wearer's basic attacks and spell damage shred enemy {{as|armor}} and {{as|magic resistance}} by 60% for 3 seconds.",
		},
	},
	["Phantom Dancer"] = {
		["2"]		= {
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 25,
				["as"]			= 15,
			},
			["pass"]		= "Negates '''bonus''' damage from {{tip|TFT critical strike|critical strikes}} on the wearer.",
			["recipe"]		= {"Recurve Bow", "Chain Vest"},
			["removed"]		= true,
		},
	},
	["Philosopher's Stone"] = {
		["7"] 		= {
			["stats"] 		= {
				["hp"] 			= 300,
			},
			["pass"] 		= "Refreshing your shop adds a stack to Philosopher's Stone. Each shop refresh has a chance to copy the holder and consume all stacks. More expensive champions are harder to copy.",
		},
	},
	["Protector's Chestguard"] = {
		["3.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 200,
			},
			["pass"]		= "Wearer is also a {{TFTt|Protector|set=3}}.<br />Cannot equip on a champion that is already a {{TFTt|Protector|set=3}}.",
			["recipe"]		= {"Spatula", "Giant's Belt"},
			["inactive"]	= true,
		},
	},
	["Protector Emblem"] = {
		["6"]	= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Protector|set=6}}.<br />Cannot equip on a champion that is already a {{TFTt|Protector|set=6}}.",
			["inactive"]	= true,
		},
	},
	["Quickestsilver"] = {
		["Current"]		= {
			["unique"]		= true,
			["stats"]		= {
				["as"]			= 55,
				["dodge"]		= 15,
				["mr"]			= 20,
			},
			["pass"]		= "The wearer is immune to {{as|attack damage}} debuffs and crowd control effects for the first 30 seconds of combat.",
		},
	},
	["Quicksilver"] = {
		["Current"]	= {
			["unique"]		= true,
			["stats"]		= {
				["as"]			= 20,
				["dodge"]		= 15,
				["mr"]			= 20,
			},
			["pass"]		= "The wearer is immune to attack damage debuffs and crowd control effects for the first 15 seconds of combat.",
			["recipe"]		= {"Sparring Gloves", "Negatron Cloak"},
		},
	},
	["Rabadon's Ascended Deathcap"] = {
		["Current"]		= {
			["stats"]		= {
				["ap"]			= 120,
			},
		},
	},
	["Rabadon's Caustic Deathcap"] = {
		["5"]		= {
			["stats"]		= {
				["ap"]			= 100,
			},
			["pass"]		= "Reduces the wearer's {{as|'''maximum''' health by 20%}}.",
			["recipe"]		= {
				[1] = {"Shadow Rod", "Needlessly Large Rod"},
				[2] = {"Shadow Rod", "Shadow Rod"},
			},
			["removed"]		= true,
		},
	},
	["Rabadon's Deathcap"] = {
		["Current"]	= {
			["stats"]		= {
				["ap"]			= 75,
			},
			["recipe"]		= {"Needlessly Large Rod", "Needlessly Large Rod"},
		},
	},
	["Radiant Redemption"] = {
		["Current"]		= {
			["stats"]		= {
				["hp"]			= 600,
				["mana"]		= 15,
			},
			["pass"]		= "Every 5 seconds, the wearer radiates an aura to allies within 2 hexes, healing them for {{as|25% '''missing''' health}}. Affected allies take 25% reduced damage from area-of-effect attacks for 5 seconds.",
		},
	},
	["Randuin's Sanctum"] = {
		["Current"]	= {
			["artifact"]		= true,
			["stats"]		= {
				["armor"]		= 25,
				["hp"]			= 200,
				["mr"]			= 25,
			},
			["pass"]		= "At the start of combat, all allies adjacent to the wearer gain 50 {{as|'''bonus''' armor}} and {{as|'''bonus''' magic resistance}} for the rest of combat.",
		},
	},
	["Ranger Emblem"] = {
		["5.5"]		= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Ranger|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Ranger|set=5.5}}.",
			["inactive"]	= true,
		},
	},
	["Rapid Deathcannon"] = {
		["5"]		= {
			["stats"]		= {
				["as"]			= 20,
			},
			["pass"]		= 
			{
				[1] = "Increases the wearer's attack range by 1 hex.",
				[2] = "Basic attacks cannot {{tip|TFT miss|miss}}.",
				[3] = "Grants {{as|40% '''bonus''' attack speed}} if there are no enemies within a 2 hex radius."
			},
			["recipe"]		= {
				[1] = {"Shadow Bow", "Recurve Bow"},
				[2] = {"Shadow Bow", "Shadow Bow"},
			},
			["removed"]		= true,
		},
	},
	["Rapid Firecannon"] = {
		["Current"]	= {
			["stats"]		= {
				["as"]			= 55,
			},
			["pass"]		= {
				[1] = "Increases the wearer's attack range by 1 hex.",
				[2] = "Basic attacks cannot {{tip|TFT miss|miss}}.",
			},
			["recipe"]		= {"Recurve Bow", "Recurve Bow"},
		},
	},
	["Rapid Lightcannon"] = {
		["Current"]		= {
			["stats"]		= {
				["as"]			= 70,
			},
			["pass"]		= 
			{
				[1] = "Increases the wearer's attack range by 2 hexes.",
				[2] = "Basic attacks cannot {{tip|TFT miss|miss}}."
			},
		},
	},
	["Rascal's Gloves"] = {
		["Current"]		= {
			["unique"]		= true,
			["exclusive"]	= true,
			["stats"]		= {
				["critchance"]	= 15,
				["dodge"]		= 15,
			},
			["pass"]		= "At the beginning of each round, the wearer equips 2 random Radiant items that are removed at the end of the round.",
		},
	},
	["Rebel Medal"] = {
		["3.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 25,
			},
			["pass"]		= "Wearer is also a {{TFTt|Rebel|set=3}}.<br />Cannot equip on a champion that is already a {{TFTt|Rebel|set=3}}.",
			["recipe"]		= {"Spatula", "Chain Vest"},
			["inactive"]	= true,
		},
	},
	["Recurve Bow"] = {
		["Current"]	= {
			["stats"]		= {
				["as"]			= 10,
			},
		},
	},
	["Red Buff"] = {
		["3.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 25,
				["hp"]			= 200,
			},
			["pass"]		= "Basic attacks apply on-hit a burn on the target 4 seconds, dealing {{as|{{fd|2.5}}% of target's '''maximum''' health}} {{as|true damage}} each second and applying {{tip|TFT Grievous Wounds|Grievous Wounds}} for the duration.",
			["recipe"]		= {"Chain Vest", "Giant's Belt"},
			["removed"]		= true,
		},
	},
	["Redeemed Emblem"] = {
		["5.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["mr"]			= 20,
			},
			["pass"]		= "Wearer is also a {{TFTt|Redeemed|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Redeemed|set=5.5}}.",
			["recipe"]		= {"Spatula", "Negatron Cloak"},
			["inactive"]	= true,
		},
		["5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["mr"]			= 20,
			},
			["pass"]		= "Wearer is also a {{TFTt|Redeemed|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Redeemed|set=5}}.",
			["recipe"]		= {"Spatula", "Negatron Cloak"},
			["inactive"]	= true,
		},
	},
	["Redemption"] = {
		["Current"]	= {
			["stats"]		= {
				["hp"]			= 150,
				["mana"]		= 15,
			},
			["pass"]		= "Every 5 seconds, the wearer radiates an aura to allies within 1 hex, healing them for {{as|18% '''missing''' health}}. Affected allies take 25% reduced damage from area-of-effect attacks for 5 seconds.",
			["recipe"]		= {"Tear of the Goddess", "Giant's Belt"},
		},
	},
	["Reforger"] = {
		["Current"]	= {
			["consume"]		= "Use on a champion to unequip all items and randomly transform them into new ones of the same category and quality. Cannot be used on board champions in combat, or on {{TFTi|Tactician's Crown}}.",
		},
	},
	["Refracted Bramble Vest"] = {
		["5"]		= {
			["stats"]		= {
				["armor"]		= 200,
			},
			["recipe"]		= {
				[1] = {"Shadow Vest", "Chain Vest"},
				[2] = {"Shadow Vest", "Shadow Vest"},
			},
			["removed"]		= true,
		},
	},
	["Refracted Dragon's Claw"] = {
		["5"]		= {
			["stats"]		= {
				["mr"]			= 40,
			},
			["pass"]		= 
			{
				[1] = "Reduces incoming {{as|magic damage}} by 15%.",
				[2] = "Negates '''bonus''' damage from {{tip|TFT critical strike|critical strikes}} on the wearer."
			},
			["recipe"]		= {
				[1] = {"Shadow Cloak", "Negatron Cloak"},
				[2] = {"Shadow Cloak", "Shadow Cloak"},
			},
			["removed"]		= true,
		},
	},
	["Renewer Emblem"] = {
		["5.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["mana"]		= 15,
			},
			["pass"]		= "Wearer is also a {{TFTt|Renewer|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Renewer|set=5.5}}.",
			["recipe"]		= {"Spatula", "Tear of the Goddess"},
			["inactive"]	= true,
		},
		["5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["mana"]		= 15,
			},
			["pass"]		= "Wearer is also a {{TFTt|Renewer|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Renewer|set=5}}.",
			["recipe"]		= {"Spatula", "Tear of the Goddess"},
			["inactive"]	= true,
		},
	},
	["Repeating Crossbow"] = {
		["2"]		= {
			["stats"]		= {
				["as"]			= 15,
				["critchance"]	= 20,
			},
			["pass"]		= "When the wearer dies, '''Repeating Crossbow''' is re-equipped to a new ally. Each time the item is re-equipped, it grants an additional {{as|30% '''bonus''' attack speed}} and {{as|30% '''bonus''' critical strike chance}} for the remainder of combat. This effect can stack any number of times.",
			["recipe"]		= {"Sparring Gloves", "Recurve Bow"},
			["removed"]		= true,
		},
	},
	["Revenant Emblem"] = {
		["5.5"]		= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Revenant|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Revenant|set=5.5}}.",
			["inactive"]	= true,
		},
		["5"]		= {
			["icon"]		= "Revenant Emblem TFT item old.png",
			["unique"]		= true,
			["stats"]		= {
				["mr"]			= 20,
			},
			["pass"]		= "Wearer is also a {{TFTt|Revenant|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Revenant|set=5}}.",
			["recipe"]		= {
				[1] = {"Shadow Spatula", "Negatron Cloak"},
				[2] = {"Spatula", "Shadow Cloak"},
				[3] = {"Shadow Spatula", "Shadow Cloak"},
			},
			["inactive"]	= true,
		},
	},
	["Rhaast's Embrace"] = {
		["4"]		= {
			["consume"]		= "Place on {{TFTc|Kayn|set=4}} to force ''Rhaast'' to overtake him, permanently improving his [[File:Reaping Slash R.png|20px|border|link=]] '''Reaping Slash''' spell to heal him.<br />This item disappears when used and destroys {{TFTi|Kayn's Liberation|set=4}}. ''Can only be used during the planning phase.''",
			["removed"]		= true,
		},
	},
	["Riskthirster"] = {
		["5"]		= {
			["stats"]		= {
				["ad"]			= 10,
				["mr"]			= 20,
			},
			["pass"]		= 
			{
				[1] = "{{as|Physical damage}} heals for 40% of the damage dealt.",
				[2] = "Each time the wearer heals to {{as|90% '''maximum''' health}}, they gain {{as|30% '''bonus''' attack speed}} for 4 seconds, this effect does not stack.",
				[3] = "The wearer takes {{as|25% '''maximum''' health}} {{as|true damage}} at the start of combat or upon being equipped."
			},
			["recipe"]		= {
				[1] = {"Shadow Sword", "Negatron Cloak"},
				[2] = {"B. F. Sword", "Shadow Cloak"},
				[3] = {"Shadow Sword", "Shadow Cloak"},
			},
			["removed"]		= true,
		},
	},
	["Rocket-Propelled Fist"] = {
		["Current"]	= {
			["artifact"]		= true,
			["stats"]		= {
				["armor"]		= 25,
				["hp"]			= 750,
				["mana"]		= 30,
			},
			["pass"]		= "At the start of combat, the wearer {{tip|TFT airborne|pulls}} the farthest enemy into melee range, {{tip|TFT stun|stunning}} them for {{fd|1.5}} seconds. Allies within range will prioritize attacking that enemy.",
		},
	},
	["Rosethorn Vest"] = {
		["Current"]		= {
			["stats"]		= {
				["armor"]		= 70,
			},
			["pass"]		= {
				[1] = "Negates '''bonus''' damage from {{tip|TFT critical strike|critical strikes}} on the wearer.",
				[2] = "When the wearer is hit by a basic attack, deals {{as|{{pp|200;250;300|type=Star level}} magic damage}} to all nearby enemies ({{fd|2.5}} second cooldown).",
				[3] = "Regenerates {{as|2% '''maximum''' health}} per second."
			},
		},
	},
	["Runaan's Hurricane"] = {
		["Current"]	= {
			["stats"]		= {
				["ad"]			= 10,
				["as"]			= 10,
				["mr"]			= 20,
			},
			["pass"]		= "Basic attacks fire an additional bolt at another nearby enemy, dealing {{as|70% AD}} {{as|physical damage}}. Bolts can {{tip|TFT critical strike|critically strike}} and have infinite range.",
			["recipe"]		= {"Negatron Cloak", "Recurve Bow"},
		},
	},
	["Runaan's Tempest"] = {
		["Current"]		= {
			["stats"]		= {
				["ad"]			= 10,
				["as"]			= 40,
				["mr"]			= 20,
			},
			["pass"]		= "Basic attacks fire an additional bolt at another nearby enemy, dealing {{as|110% AD}} {{as|physical damage}}. Bolts can {{tip|TFT critical strike|critically strike}} and have infinite range.",
		},
	},
	["Runaan's Untamed Hurricane"] = {
		["5"]		= {
			["stats"]		= {
				["as"]			= 10,
				["mr"]			= 20,
			},
			["pass"]		= "Basic attacks fire an additional bolt at 2 nearby enemies, dealing {{as|50% AD}} {{as|physical damage}}. Bolts can {{tip|TFT critical strike|critically strike}} and have infinite range, but do not apply on-hit effects.",
			["recipe"]		= {
				[1] = {"Shadow Cloak", "Recurve Bow"},
				[2] = {"Negatron Cloak", "Shadow Bow"},
				[3] = {"Shadow Cloak", "Shadow Bow"},
			},
			["removed"]		= true,
		},
	},
	["Rune of Allegiance"] = {
		["Current"] = {
			["consume"] = "Place on a champion to transfer that champion to your partner, along with all items the champion has equipped. Cannot be used in combat."
		},
	},
	["Sacrificial Gauntlet"] = {
		["5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ap"]			= 10,
				["critchance"]	= 15,
				["critdmg"]		= 40,
			},
			["pass"]		= 
			{
				[1] = "The holder's {{as|magic|magic damage}} and {{as|true|true damage}} damage from abilities can {{tip|TFT crit|critically strike}}.",
				[2] = "The first time the wearer casts an ability they gain {{as|20% '''bonus''' critical strike chance}} for the rest of combat, applies to the initial ability.",
				[3] = "Whenever the wearer casts an ability, they lose ({{as|'''maximum''' mana}}{{times}}Star-level) health."
			},
			["recipe"]		= {
				[1] = {"Shadow Rod", "Sparring Gloves"},
				[2] = {"Needlessly Large Rod", "Shadow Gloves"},
				[3] = {"Shadow Rod", "Shadow Gloves"},
			},
			["removed"]		= true,
		},
	},
	["Sacrificial Infinity Edge"] = {
		["5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ad"]			= 10,
				["critchance"]	= 75,
				["critdmg"]		= 30,
			},
			["pass"]		= 
			{
				[1] = "Converts every {{as|1% excess critical strike chance}} into {{as|1% '''bonus''' critical strike damage}}.",
				[2] = "Every time the wearer basic attacks or casts an ability they take {{as|3% '''maximum''' health}} {{as|true damage}}."
			},
			["recipe"]		= {
				[1] = {"Shadow Sword", "Sparring Gloves"},
				[2] = {"B. F. Sword", "Shadow Gloves"},
				[3] = {"Shadow Sword", "Shadow Gloves"},
			},
			["removed"]		= true,
		},
	},
	["Sacrificial Redemption"] = {
		["5"]		= {
			["stats"]		= {
				["hp"]			= 150,
				["mana"]		= 15,
			},
			["pass"]		= "The wearer radiates an aura to allies on the board, expect the wearer, that heals them for {{as|25% '''missing''' health}} every 5 seconds. Each time this happens the wearer takes {{as|5% '''current''' health}} {{as|true damage}}.",
			["recipe"]		= {
				[1] = {"Shadow Belt", "Tear of the Goddess"},
				[2] = {"Giant's Belt", "Shadow Tear"},
				[3] = {"Shadow Belt", "Shadow Tear"},
			},
			["removed"]		= true,
		},
	},
	["Scholar Emblem"] = {
		["Current"]	= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Scholar|set=6.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Scholar|set=6.5}}.",
		},
		["6"]	= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Scholar|set=6}}.<br />Cannot equip on a champion that is already a {{TFTt|Scholar|set=6}}.",
			["inactive"]    = true,
		},
	},
	["Scrap Emblem"] = {
		["Current"]	= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Scrap|set=6.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Scrap|set=6.5}}.",
		},
		["6"]	= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Scrap|set=6}}.<br />Cannot equip on a champion that is already a {{TFTt|Scrap|set=6}}.",
			["inactive"]    = true,
		},
	},
	["Sentinel Emblem"] = {
		["5.5"]		= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Sentinel|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Sentinel|set=5.5}}.",
			["inactive"]	= true,
		},
	},
	["Seraph's Embrace"] = {
		["3"]		= {
			["stats"]		= {
				["mana"]		= 30,
			},
			["pass"]		= "After each spellcast, grants {{as|20 mana}}.",
			["recipe"]		= {"Tear of the Goddess", "Tear of the Goddess"},
			["removed"]		= true,
		},
	},
	["Shadow Belt"] = {
		["5"]		= {
			["stats"]		= {
				["hp"]			= 150,
			},
			["removed"]		= true,
		},
	},
	["Shadow Bow"] = {
		["5"]		= {
			["stats"]		= {
				["as"]			= 10,
			},
			["removed"]		= true,
		},
	},
	["Shadow Cloak"] = {
		["5"]		= {
			["stats"]		= {
				["mr"]			= 20,
			},
			["removed"]		= true,
		},
	},
	["Shadow Gloves"] = {
		["5"]		= {
			["stats"]		= {
				["critchance"]	= 5,
				["dodge"]		= 10,
			},
			["removed"]		= true,
		},
	},
	["Shadow Rod"] = {
		["5"]		= {
			["stats"]		= {
				["ap"]			= 10,
			},
			["removed"]		= true,
		},
	},
	["Shadow Spatula"] = {
		["5"]		= {
			["caption"]		= "It must do ''something'' evil...",
			["removed"]		= true,
		},
	},
	["Shadow Sword"] = {
		["5"]		= {
			["stats"]		= {
				["ad"]			= 10,
			},
			["removed"]		= true,
		},
	},
	["Shadow Tear"] = {
		["5"]		= {
			["stats"]		= {
				["mana"]		= 15,
			},
			["removed"]		= true,
		},
	},
	["Shadow Vest"] = {
		["5"]		= {
			["stats"]		= {
				["armor"]		= 20,
			},
			["removed"]		= true,
		},
	},
	["Shroud of Reverence"] = {
		["Current"]		= {
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 20,
				["dodge"]		= 15,
			},
			["pass"]		= 
			{
				[1] = "When combat begins, shoots a beam straight ahead in a wider line that delays affected enemies' first spellcast, increasing their {{as|'''maximum''' mana by 50%}} until they cast.",
				[2] = "Grants {{as|15 starting mana}} to all allies at the start of combat."
			},
		},
	},
	["Shroud of Stillness"] = {
		["Current"]	= {
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 20,
				["dodge"]		= 15,
			},
			["pass"]		= "When combat begins, shoots a beam straight ahead in a {{fd|1.5}}-hex line that delays affected enemies' first spellcast, increasing their {{as|'''maximum''' mana by 35%}} until they cast.",
			["recipe"]		= {"Sparring Gloves", "Chain Vest"},
		},
	},
	["Skirmisher Emblem"] = {
		["5.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ad"]			= 10,
			},
			["pass"]		= "Wearer is also a {{TFTt|Skirmisher|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Skirmisher|set=5.5}}.",
			["recipe"]		= {"Spatula", "B. F. Sword"},
			["inactive"]	= true,
		},
		["5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ad"]			= 10,
			},
			["pass"]		= "Wearer is also a {{TFTt|Skirmisher|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Skirmisher|set=5}}.",
			["recipe"]		= {"Spatula", "B. F. Sword"},
			["inactive"]	= true,
		},
	},
	["Sniper Emblem"] = {
		["Current"]	= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Sniper|set=6.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Sniper|set=6.5}}.",
		},
		["6"]	= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Sniper|set=6}}.<br />Cannot equip on a champion that is already a {{TFTt|Sniper|set=6}}.",
			["inactive"]    = true,
		},
	},
	["Socialite Emblem"] = {
		["Current"]	= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Socialite|set=6.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Socialite|set=6.5}}.",
		},
		["6"]	= {
			["elusive"]		= true,
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
			},
			["pass"]		= "Wearer is also a {{TFTt|Socialite|set=6}}.<br />Cannot equip on a champion that is already a {{TFTt|Socialite|set=6}}.",
			["inactive"]    = true,
		},
	},
	["Sparring Gloves"] = {
		["Current"]	= {
			["stats"]		= {
				["critchance"]	= 5,
				["dodge"]		= 10,
			},
		},
	},
	["Spatula"] = {
		["Current"]	= {
			["caption"]		= "It must do ''something''...",
		},
	},
	["Spear of Hirana"] = {
		["Current"]		= {
			["stats"]		= {
				["ad"]			= 10,
				["ap"]			= 20,
				["mana"]		= 15,
			},
			["pass"]		= "Basic attacks restore an additional {{as|15 mana}} on-attack.",
		},
	},
	["Spear of Shojin"] = {
		["Current"]	= {
			["stats"]		= {
				["ad"]			= 10,
				["mana"]		= 15,
			},
			["pass"]		= "Basic attacks restore an additional {{as|8 mana}} on-attack.",
			["recipe"]		= {"B. F. Sword", "Tear of the Goddess"},
		},
	},
	["Spectral Giantslayer"] = {
		["5"]		= {
			["stats"]		= {
				["ad"]			= 10,
				["as"]			= 10,
			},
			["pass"]		= "Basic attacks and abilities do 50% increased damage (pre-mitigation) if the target has more than {{as|1100 '''maximum''' health}}.",
			["recipe"]		= {
				[1] = {"Shadow Sword", "Recurve Bow"},
				[2] = {"B. F. Sword", "Shadow Bow"},
				[3] = {"Shadow Sword", "Shadow Bow"},
			},
			["removed"]		= true,
		},
	},
	["Spectral Spear of Shojin"] = {
		["5"]		= {
			["stats"]		= {
				["ad"]			= 10,
				["mana"]		= 15,
			},
			["pass"]		= "Basic attacks restore an additional {{as|14 mana}} on-hit. The wearer deals 15% less damage.",
			["recipe"]		= {
				[1] = {"Shadow Sword", "Tear of the Goddess"},
				[2] = {"B. F. Sword", "Shadow Tear"},
				[3] = {"Shadow Sword", "Shadow Tear"},
			},
			["removed"]		= true,
		},
	},
	["Spellweaver Emblem"] = {
		["5.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ap"]			= 10,
			},
			["pass"]		= "Wearer is also a {{TFTt|Spellweaver|set=5.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Spellweaver|set=5.5}}.",
			["recipe"]		= {"Spatula", "Needlessly Large Rod"},
			["inactive"]	= true,
		},
		["5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ap"]			= 10,
			},
			["pass"]		= "Wearer is also a {{TFTt|Spellweaver|set=5}}.<br />Cannot equip on a champion that is already a {{TFTt|Spellweaver|set=5}}.",
			["recipe"]		= {"Spatula", "Needlessly Large Rod"},
			["inactive"]	= true,
		},
	},
	["Spirit of the Dragon"] = {
		["4.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ap"]			= 15,
			},
			["pass"]		= "Wearer is also a {{TFTt|Dragonsoul|set=4.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Dragonsoul|set=4.5}}.",
			["recipe"]		= {"Spatula", "Needlessly Large Rod"},
			["inactive"]	= true,
		},
	},
	["Star Guardian's Charm"] = {
		["3.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["mana"]		= 15,
			},
			["pass"]		= "Wearer is also a {{TFTt|Star Guardian|set=3}}.<br />Cannot equip on a champion that is already a {{TFTt|Star Guardian|set=3}}.",
			["recipe"]		= {"Spatula", "Tear of the Goddess"},
			["inactive"]	= true,
		},
	},
	["Statikk Favor"] = {
		["Current"]		= {
			["stats"]		= {
				["as"]			= 20,
				["mana"]		= 15,
			},
			["pass"]		= "Every third basic attack from the wearer deals {{as|115 magic damage}} to the target and 7 additional targets, while also reducing their {{as|magic resistance}} by 70% for 5 seconds.",
		},
	},
	["Statikk Shiv"] = {
		["Current"]	= {
			["stats"]		= {
				["as"]			= 20,
				["mana"]		= 15,
			},
			["pass"]		= "Every third basic attack from the wearer deals {{as|60 magic damage}} to the target and 3 additional targets, while also reducing their {{as|magic resistance}} by 50% for 5 seconds.",
			["recipe"]		= {"Recurve Bow", "Tear of the Goddess"},
		},
	},
	["Statikk Stiletto"] = {
		["5"]		= {
			["stats"]		= {
				["as"]			= 25,
				["mana"]		= 15,
			},
			["pass"]		= 
			{
				[1] = "Every other basic attack from the wearer deals {{as|70 magic damage}} to the target and 3 additional targets, while also reducing their {{as|magic resistance}} by 50% for 5 seconds.",
				[2] = "The wearer has 33% less {{as|attack damage}}."
			},
			["recipe"]		= {
				[1] = {"Shadow Bow", "Tear of the Goddess"},
				[2] = {"Recurve Bow", "Shadow Tear"},
				[3] = {"Shadow Bow", "Shadow Tear"},
			},
			["removed"]		= true,
		},
	},
	["Striker Emblem"] = {
		["Current"]	= {
			["unique"]		= true,
			["stats"]		= {
				["ad"]			= 10,
			},
			["pass"]		= "Wearer is also a {{TFTt|Striker|set=6.5}}. Cannot equip on a champion that is already a {{TFTt|Striker|set=6.5}}.",
			["recipe"]		= {"Spatula", "B. F. Sword"},
		},
	},
	["Sunfire Cape"] = {
		["Current"]	= {
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 20,
				["hp"]			= 150,
			},
			["pass"]		= "At start of combat, and every 2 seconds thereafter, applies a 8-second burn to a random enemy within 2 hexes, dealing {{as|2% of target's '''maximum''' health}} {{as|true damage}} each second and applying {{tip|TFT Grievous Wounds|Grievous Wounds}} for the duration.",
			["recipe"]		= {"Chain Vest", "Giant's Belt"},
		},
	},
	["Sunlight Cape"] = {
		["Current"]		= {
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 20,
				["hp"]			= 150,
			},
			["pass"]		= 
			{
				[1] = "At start of combat, and every {{fd|1.5}} seconds thereafter, applies a 30-second burn to a random enemy within 4 hexes, dealing {{as|3% of target's '''maximum''' health}} {{as|true damage}} each second and applying {{tip|TFT Grievous Wounds|Grievous Wounds}} for the duration.",
				[2] = "Regenerates {{as|{{fd|0.5}}% '''maximum''' health}} per second."
			},
		},
	},
	["Sword Breaker"] = {
		["3.5"]		= {
			["stats"]		= {
				["armor"]		= 25,
				["mr"]			= 25,
			},
			["pass"]		= "Basic attacks have a 33% chance to {{tip|TFT disarm|disarm}} the main target for 3 seconds, preventing that enemy from basic attacking.",
			["recipe"]		= {"Chain Vest", "Negatron Cloak"},
			["removed"]		= true,
		},
	},
	["Sword of the Divine"] = {
		["4.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ad"]			= 15,
			},
			["pass"]		= "Wearer is also a {{TFTt|Divine|set=4.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Divine|set=4.5}}.",
			["recipe"]		= {"Spatula", "B. F. Sword"},
			["inactive"]	= true,
		},
		["4"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ad"]			= 15,
			},
			["pass"]		= "Wearer is also a {{TFTt|Divine|set=4}}.<br />Cannot equip on a champion that is already a {{TFTt|Divine|set=4}}.",
			["recipe"]		= {"Spatula", "B. F. Sword"},
			["inactive"]	= true,
		},
		["1"]		= {
			["icon"]		= "Sword of the Divine item.png",
			["stats"]		= {
				["ad"]			= 15,
				["as"]			= 20,
			},
			["pass"]		= "Every second, has a 7% chance to gain {{as|100% critical strike chance}} for the rest of combat.",
			["recipe"]		= {"B. F. Sword", "Recurve Bow"},
			["removed"]		= true,
		},
	},
	["Syndicate Emblem"] = {
		["Current"]		= {
			["elusive"] 	= true,
			["unique"] 		= true,
			["stats"] 		= {
				["hp"] 			= 150,
			},
			["pass"] 		= "Wearer is also an {{TFTt|Syndicate|set=6.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Syndicate|set=6.5}}.",
		},
		["6"]	= {
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 20,
			},
			["pass"]		= "Wearer is also a {{TFTt|Syndicate|set=6}}. Cannot equip on a champion that is already a {{TFTt|Syndicate|set=6}}.",
			["recipe"]		= {"Spatula", "Chain Vest"},
			["inactive"] 	= true,
		},
	},
	["Tactician's Crown"] = {
		["Current"]	= {
			["pass"]		= "Increases the unit cap by 1.",
			["recipe"]		= {"Spatula", "Spatula"},
		},
	},
	["Talisman of Light"] = {
		["2"]		= {
			["unique"]		= true,
			["stats"]		= {
				["mr"]			= 25,
			},
			["pass"]		= "Wearer is also a {{TFTt|Light|set=2}}.<br />Cannot equip on a {{TFTt|Light|set=2}} champion.",
			["recipe"]		= {"Spatula", "Negatron Cloak"},
			["inactive"]	= true,
		},
	},
	["Target Dummy"] = {
		["Current"]	= {
			["consume"]		= "Use on a champion to spawn a movable target dummy nearby. Cannot be used in combat.",
		},
	},
	["Tear of the Goddess"] = {
		["Current"]	= {
			["stats"]		= {
				["mana"]		= 15,
			},
		},
	},
	["Thief's Gloves"] = {
		["Current"]	= {
			["exclusive"]	= true,
			["unique"]		= true,
			["stats"]		= {
				["critchance"]	= 15,
				["dodge"]		= 15,
			},
			["pass"]		= "At the beginning of each round, the wearer equips 2 random items that are removed at the end of the round. The quality of these items are based on player level.",
			["recipe"]		= {"Sparring Gloves", "Sparring Gloves"},
		},
	},
	["Thornmail"] = {
		["2"]	= {
			["stats"]		= {
				["armor"]		= 50,
			},
			["pass"]		= "When hit by a basic attack, reflects 100% of {{as|physical damage}} mitigated as {{as|magic damage}} to the attacker.",
			["recipe"]		= {"Chain Vest", "Chain Vest"},
			["removed"]		= true,
		},
	},
	["Titan's Resolve"] = {
		["Current"]	= {
			["stats"]		= {
				["armor"]		= 20,
				["as"]			= 10,
			},
			["pass"]		= "When the wearer basic attacks or takes damage from any source, grants 2 {{as|'''bonus''' attack damage}} and 2 ability power for the rest of combat, stacking up 25 times for a maximum of 50. At maximum stacks, additionally gains 25 {{as|'''bonus''' armor}} and {{as|'''bonus''' magic resistance}}, and increases in size. Resets every round.",
			["recipe"]		= {"Recurve Bow", "Chain Vest"},
		},
	},
	["Titan's Revenge"] = {
		["5"]		= {
			["stats"]		= {
				["armor"]		= 20,
				["as"]			= 10,
			},
			["pass"]		= "Every 3 seconds, the wearer's basic attack deals 20% of pre-mitigation damage taken since the last empowered auto attack as {{as|true damage}}.",
			["recipe"]		= {
				[1] = {"Shadow Vest", "Recurve Bow"},
				[2] = {"Chain Vest", "Shadow Bow"},
				[3] = {"Shadow Vest", "Shadow Bow"},
			},
			["removed"]		= true,
		},
	},
	["Titan's Vow"] = {
		["Current"]		= {
			["stats"]		= {
				["armor"]		= 20,
				["as"]			= 10,
			},
			["pass"]		= "When the wearer basic attacks or takes damage from any source, grants 4 {{as|'''bonus''' attack damage}} and 4 ability power for the rest of combat, stacking up 25 times for a maximum of 100. At maximum stacks, additionally gains 50 {{as|'''bonus''' armor}} and {{as|'''bonus''' magic resistance}}, and increases in size. Resets every round.",
		},
	},
	["Titanic Hydra"] = {
		["2"]		= {
			["stats"]		= {
				["as"]			= 15,
				["hp"]			= 200,
			},
			["pass"]		= "Basic attacks deal {{as|3% of your '''maximum''' health}} {{as|magic damage}} to the target and adjacent enemies behind them.",
			["recipe"]		= {"Recurve Bow", "Giant's Belt"},
			["removed"]		= true,
		},
	},
	["Tome of Traits"] = {
		["Current"]	= {
			["consume"]		= "Sell this unit to open up an armory with 4 craftable and uncraftable emblems.",
		},
	},
	["Trap Claw"] = {
		["5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["dodge"]		= 15,
				["hp"]			= 150,
			},
			["pass"]		= "At the beginning of each round, gains a spell shield that blocks the first enemy spell that hit. The enemy that breaks the shield is {{tip|TFT Stun|stunned}} for 4 seconds.",
			["recipe"]		= {"Sparring Gloves", "Giant's Belt"},
			["removed"]		= true,
		},
	},
	["Trickster's Gloves"] = {
		["5"]		= {
			["exclusive"]	= true,
			["unique"]		= true,
			["stats"]		= {
				["critchance"]	= 15,
				["dodge"]		= 15,
			},
			["pass"]		= "At the beginning of combat the wearer equips 2 temporary shadow items.",
			["recipe"]		= {
				[1] = {"Shadow Gloves", "Sparring Gloves"},
				[2] = {"Shadow Gloves", "Shadow Gloves"},
			},
			["removed"]		= true,
		},
	},
	["Turbulent Zephyr"] = {
		["5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
				["mr"]			= 20,
			},
			["pass"]		= "At the start of combat, summon a whirlwind on the opposite side of the map that removes the closest enemy from combat for 8 seconds. Once the champion returns to combat, they gain {{as|30 '''bonus''' attack damage}} and {{as|30 ability power}} for the rest of combat. Ignores CC immunity.",
			["recipe"]		= {
				[1] = {"Shadow Belt", "Negatron Cloak"},
				[2] = {"Giant's Belt", "Shadow Cloak"},
				[3] = {"Shadow Belt", "Shadow Cloak"},
			},
			["removed"]		= true,
		},
	},
	["Unstable Zz'Rot Portal"] = {
		["5"]		= {
			["stats"]		= {
				["as"]			= 10,
				["hp"]			= 150,
			},
			["pass"]		= 
			{
				[1] = "At the start of combat, the wearer {{tip|TFT taunt|taunts}} enemies within 2 hexes.",
				[2] = "When the wearer dies, a '''Voidspawn''' with 500 health arises and {{tip|TFT taunt|taunts}} enemies again. When it dies, it deals 500 {{as|true damage}} to enemies within 1 hex. Summoned units can spawn ''Voidspawns'' at 50% effectiveness.",
			},
			["recipe"]		= {
				[1] = {"Shadow Belt", "Recurve Bow"},
				[2] = {"Giant's Belt", "Shadow Bow"},
				[3] = {"Shadow Belt", "Shadow Bow"},
			},
			["removed"]		= true,
		},
	},
	["Urf-Angel's Staff"] = {
		["Current"]		= {
			["stats"]		= {
				["ap"]			= 10,
				["mana"]		= 30,
			},
			["pass"]		= "Grants the wearer {{as|30 ability power}} every 4 seconds.",
		},
	},
	["Vanguard's Cuirass"] = {
		["4.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 25,
			},
			["pass"]		= "Wearer is also a {{TFTt|Vanguard|set=4.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Vanguard|set=4.5}}.",
			["recipe"]		= {"Spatula", "Chain Vest"},
			["inactive"]	= true,
		},
		["4"]		= {
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 25,
			},
			["pass"]		= "Wearer is also a {{TFTt|Vanguard|set=4}}.<br />Cannot equip on a champion that is already a {{TFTt|Vanguard|set=4}}.",
			["recipe"]		= {"Spatula", "Chain Vest"},
			["inactive"]	= true,
		},
	},
	["Very Dark Blue Buff"] = {
		["5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["mana"]		= 30,
			},
			["pass"]		= "After each spellcast, the wearer's {{as|mana}} is set to 15, increased to {{as|50|mana}} if {{as|'''below''' 60% health}}.",
			["recipe"]		= {
				[1] = {"Shadow Tear", "Tear of the Goddess"},
				[2] = {"Shadow Tear", "Shadow Tear"},
			},
			["removed"]		= true,
		},
	},
	["Warden's Mail"] = {
		["2"]		= {
			["unique"]		= true,
			["stats"]		= {
				["armor"]		= 25,
			},
			["pass"]		= "Wearer is also a {{TFTt|Warden|set=2}}.<br />Cannot equip on a {{TFTt|Warden|set=2}} champion.",
			["recipe"]		= {"Spatula", "Chain Vest"},
			["inactive"]	= true,
		},
	},
	["Warlord's Banner"] = {
		["4.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 200,
			},
			["pass"]		= "Wearer is also a {{TFTt|Warlord|set=4.5}}.<br />Cannot equip on a champion that is already a {{TFTt|Warlord|set=4.5}}.",
			["recipe"]		= {"Spatula", "Giant's Belt"},
			["inactive"]	= true,
		},
		["4"]		= {
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 200,
			},
			["pass"]		= "Wearer is also a {{TFTt|Warlord|set=4}}.<br />Cannot equip on a champion that is already a {{TFTt|Warlord|set=4}}.",
			["recipe"]		= {"Spatula", "Giant's Belt"},
			["inactive"]	= true,
		},
	},
	["Warmog's Armor"] = {
		["Current"]	= {
			["stats"]		= {
				["hp"]			= 1000,
			},
			["recipe"]		= {"Giant's Belt", "Giant's Belt"},
		},
	},
	["Warmog's Pride"] = {
		["Current"]		= {
			["stats"]		= {
				["hp"]			= 1800,
			},
			["pass"]		= "Regenerates {{as|1% '''maximum''' health}} per second.",
		},
	},
	["Warmog's Sacrificial Armor"] = {
		["5"]		= {
			["stats"]		= {
				["hp"]			= 1800,
			},
			["pass"]		= "The wearer loses {{as|60 health}} per second.",
			["recipe"]		= {
				[1] = {"Shadow Belt", "Giant's Belt"},
				[2] = {"Shadow Belt", "Shadow Belt"},
			},
			["removed"]		= true,
		},
	},
	["Youmuu's Ghostblade"] = {
		["4.5"]		= {
			["unique"]		= true,
			["stats"]		= {
				["critchance"]	= 10,
				["dodge"]		= 10,
			},
			["pass"]		= "Wearer is also an {{TFTt|Assassin|set=4.5}} (including the Innate stealthed jump).<br />Cannot equip on an {{TFTt|Assassin|set=4.5}} champion.",
			["recipe"]		= {"Spatula", "Sparring Gloves"},
			["inactive"]	= true,
		},
		["4"]		= {
			["unique"]		= true,
			["stats"]		= {
				["critchance"]	= 10,
				["dodge"]		= 10,
			},
			["pass"]		= "Wearer is also an {{TFTt|Assassin|set=4}} (including the Innate stealthed jump).<br />Cannot equip on an {{TFTt|Assassin|set=4}} champion.",
			["recipe"]		= {"Spatula", "Sparring Gloves"},
			["inactive"]	= true,
		},
		["2"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ad"]			= 15,
			},
			["pass"]		= "Wearer is also an {{TFTt|Assassin|set=2}} (including the Innate stealthed jump).<br />Cannot equip on an {{TFTt|Assassin|set=2}} champion.",
			["recipe"]		= {"B. F. Sword", "Spatula"},
			["inactive"]	= true,
		},
	},
	["Yuumi"] = {
		["1"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ap"]			= 40,
			},
			["pass"]		= "Wearer is also a {{TFTt|Sorcerer|set=1}} (including the Innate: basic attacks grant twice as much mana.)<br />Cannot equip on a {{TFTt|Sorcerer|set=1}} champion.",
			["recipe"]		= {"Needlessly Large Rod", "Spatula"},
			["inactive"]	= true,
		},
	},
	["Zeke's Bleak Herald"] = {
		["5"]		= {
			["stats"]		= {
				["ad"]			= 10,
				["hp"]			= 150,
			},
			["pass"]		= "At the start of combat, the wearer reduces the  {{as|attack speed}} of all allies within 1 hex in the same row to the left and right by 20% and gains {{as|40% '''bonus''' attack speed}} for each affected ally.",
			["recipe"]		= {
				[1] = {"Shadow Sword", "Giant's Belt"},
				[2] = {"B. F. Sword", "Shadow Belt"},
				[3] = {"Shadow Sword", "Shadow Belt"},
			},
			["removed"]		= true,
		},
	},
	["Zeke's Harmony"] = {
		["Current"]		= {
			["stats"]		= {
				["ad"]			= 10,
				["hp"]			= 150,
			},
			["pass"]		= "At the start of combat, the wearer and all allies within 1 hex in the same row to the left and right gain {{as|50% '''bonus''' attack speed}} and 10% lifesteal for the rest of combat.",
		},
	},
	["Zeke's Herald"] = {
		["Current"]	= {
			["stats"]		= {
				["ad"]			= 10,
				["hp"]			= 150
			},
			["pass"]		= "At the start of combat, the wearer and all allies within 1 hex in the same row to the left and right gain {{as|30% '''bonus''' attack speed}} for the rest of combat.",
			["recipe"]		= {"B. F. Sword", "Giant's Belt"},
		},
	},
	["Zenith Edge"] = {
		["Current"]		= {
			["unique"]		= true,
			["stats"]		= {
				["ad"]			= 10,
				["critchance"]	= 75,
				["critdmg"]		= 50,
			},
			["pass"]		= "Converts every {{as|1% excess critical strike chance}} into {{as|1% '''bonus''' critical strike damage}}.",
		},
	},
	["Zephyr"] = {
		["Current"]	= {
			["unique"]		= true,
			["stats"]		= {
				["hp"]			= 150,
				["mr"]			= 20,
			},
			["pass"]		= "At the start of combat, {{tip|TFT banish|banishes}} for 5 seconds the unit that mirrors the wielder's placement on the other side of the board. Pierces through CC immunity effects.",
			["recipe"]		= {"Negatron Cloak", "Giant's Belt"},
		},
	},
	["Zhonya's Paradox"] = {
		["Current"]	= {
			["artifact"]		= true,
			["stats"]		= {
				["ap"]			= 50,
				["armor"]		= 50,
				["mr"]			= 50,
			},
			["pass"]		= "The first instance of damage that would reduce the wearer {{as|'''below''' 40% health}} is prevented, causing them to become invulnerable for 3 seconds.",
		},
	},
	["Zz'Rot's Invitation"] = {
		["Current"]		= {
			["stats"]		= {
				["as"]			= 10,
				["hp"]			= 150,
			},
			["pass"]		= "At the start of combat, a ''Radiant Voidmother'' with bonus health and attack damage aries and {{tip|TFT taunt|taunts}} enemies within 4 hexes. Summoned units can spawn ''Radiant Voidmother'' at 25% effectiveness.",
		},
	},
	["Zz'Rot Portal"] = {
		["Current"]	= {
			["stats"]		= {
				["as"]			= 10,
				["hp"]			= 150,
			},
			["pass"]		= 
			{
				[1] = "At the start of combat, the wearer {{tip|TFT taunt|taunts}} enemies within 4 hexes.",
				[2] = "When the wearer dies, a '''Voidspawn''' arises, {{tip|TFT taunt|taunting}} nearby enemies. Summoned units can spawn ''Voidspawns'' at 25% effectiveness."
			},
			["recipe"]		= {"Recurve Bow", "Giant's Belt"},
		},
	},
}
-- </pre>
Advertisement