Module:Icon/data

From Predecessor Wiki
Jump to navigation Jump to search
Template-info.svg Documentation
--[[
	code_name - A lowercase and short code name for the icon (ex: carry)
		file - The image file to be used for the icon. (ex: "Icon_Carry.png")
        name - Actual name of the icon (ex: "Carry")
        link - The page for the icon to link to (optional)
]]--

		code_name = {
			["file"] = "",
			["name"] = "",
			["link"] = "",
		},

-- This module stores icon data for [[Module:Icon]].
return {
	Icons = {
--------------------------------------------------------------------------------
-- Miscellaneous icons
--------------------------------------------------------------------------------
		default = {
			["file"] = "Icon_Question.png",
			["name"] = "Default",
			["link"] = "",
		},
		calendar = {
			["file"] = "Icon_Calendar.png",
			["name"] = "Calendar",
			["link"] = "",
		},
		clock = {
			["file"] = "Icon_Clock.png",
			["name"] = "Clock",
			["link"] = "",
		},
		exclusive = {
			["file"] = "Icon_Timed_Exclusive.png",
			["name"] = "Exclusive",
			["link"] = "",
		},
--------------------------------------------------------------------------------
-- Currency icons
--------------------------------------------------------------------------------
		platinum = {
			["file"] = "Icon_Platinum.png",
			["name"] = "Platinum",
			["link"] = "",
		},
		amber = {
			["file"] = "Icon_Amber.png",
			["name"] = "Amber",
			["link"] = "",
		},
		gold = {
			["file"] = "Icon_Gold.png",
			["name"] = "Gold",
			["link"] = "Gold",
		},
--------------------------------------------------------------------------------
-- Role icons
--------------------------------------------------------------------------------
		midlane = {
			["file"] = "Icon_Midlane.png",
			["name"] = "Midlane",
			["link"] = "",
		},
		offlane = {
			["file"] = "Icon_Offlane.png",
			["name"] = "Offlane",
			["link"] = "",
		},
	    support = {
			["file"] = "Icon_Support.png",
			["name"] = "Support",
			["link"] = "",
		},
		carry = {
			["file"] = "Icon_Carry.png",
			["name"] = "Carry",
			["link"] = "",
		},
		jungle = {
			["file"] = "Icon_Jungle.png",
			["name"] = "Jungle",
			["link"] = "",
		},
--------------------------------------------------------------------------------
-- Difficulty icons
--------------------------------------------------------------------------------
		beginner = {
			["file"] = "Difficulty_Beginner.png",
			["name"] = "Beginner",
			["link"] = "",
		},
		advanced = {
			["file"] = "Difficulty_Advanced.png",
			["name"] = "Advanced",
			["link"] = "",
		},
		expert = {
			["file"] = "Difficulty_Expert.png",
			["name"] = "Expert",
			["link"] = "",
		},
--------------------------------------------------------------------------------
-- Statistic icons
--------------------------------------------------------------------------------
		attackrange = {
			["file"] = "Stat_AttackRange.png",
			["name"] = "Attack Range",
			["link"] = "",
		},
		movementspeed = {
			["file"] = "Stat_MovementSpeed.png",
			["name"] = "Movement Speed",
			["link"] = "",
		},
		maxhealth = {
			["file"] = "Stat_MaxHealth.png",
			["name"] = "Max Health",
			["link"] = "",
		},
		maxhealth2 = { -- Coloured variant
			["file"] = "Stat_MaxHealth2.png",
			["name"] = "Max Health",
			["link"] = "",
		},
		manaregen = {
			["file"] = "Stat_ManaRegeneration.png",
			["name"] = "Mana Regeneration",
			["link"] = "",
		},
		magicalpower = {
			["file"] = "Stat_MagicalPower.png",
			["name"] = "Magical Power",
			["link"] = "",
		},
		magicalpower2 = { -- Coloured variant
			["file"] = "Stat_MagicalPower2.png",
			["name"] = "Magical Power",
			["link"] = "",
		},
		attackspeed = {
			["file"] = "Stat_AttackSpeed.png",
			["name"] = "Attack Speed",
			["link"] = "",
		},
		healthregen = {
			["file"] = "Stat_HealthRegeneration.png",
			["name"] = "Health Regeneration",
			["link"] = "",
		},
		maxmana = {
			["file"] = "Stat_MaxMana.png",
			["name"] = "Max Mana",
			["link"] = "",
		},
		maxmana2 = { -- Coloured variant
			["file"] = "Stat_MaxMana2.png",
			["name"] = "Max Mana",
			["link"] = "",
		},
		physicalarmor = {
			["file"] = "Stat_PhysicalArmor.png",
			["name"] = "Physical Armor",
			["link"] = "",
		},
		magicalarmor = {
			["file"] = "Stat_MagicalArmor.png",
			["name"] = "Magical Armor",
			["link"] = "",
		},
		physicalpower = {
			["file"] = "Stat_PhysicalPower.png",
			["name"] = "Physical Power",
			["link"] = "",
		},
		physicalpower2 = { -- Coloured variant
			["file"] = "Stat_PhysicalPower2.png",
			["name"] = "Physical Power",
			["link"] = "",
		},
		physicalpenetration = {
			["file"] = "Stat_PhysicalPenetration.png",
			["name"] = "Physical Penetration",
			["link"] = "",
		},
		physicalpenetration2 = { -- Coloured variant
			["file"] = "Stat_PhysicalPenetration2.png",
			["name"] = "Physical Penetration",
			["link"] = "",
		},
		cleave = {
			["file"] = "Stat_Cleave.png",
			["name"] = "Cleave",
			["link"] = "",
		},
		abilityhaste = {
			["file"] = "Stat_AbilityHaste.png",
			["name"] = "Ability Haste",
			["link"] = "",
		},
		healandshieldpower = {
			["file"] = "Stat_HealandShieldPower.png",
			["name"] = "Heal and Shield Power",
			["link"] = "",
		},
		lifesteal = {
			["file"] = "Stat_Lifesteal.png",
			["name"] = "Lifesteal",
			["link"] = "",
		},
		magicallifesteal = {
			["file"] = "Stat_MagicalLifesteal.png",
			["name"] = "Magical Lifesteal",
			["link"] = "",
		},
		magicalpenetration = {
			["file"] = "Stat_MagicalPenetration.png",
			["name"] = "Magical Penetration",
			["link"] = "",
		},
		tenacity = {
			["file"] = "Stat_Tenacity.png",
			["name"] = "Tenacity",
			["link"] = "",
		},
		criticalchance = {
			["file"] = "Stat_CriticalChance.png",
			["name"] = "Critical Chance",
			["link"] = "",
		},
	}
}