Module:Icon/data

From LYSSA Wiki
Jump to navigation Jump to search

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

-- This module stores icon data for [[Module:Icon]].

--------------------------------------------------------------------------------
-- Icon data
--------------------------------------------------------------------------------

local data = {
--------------------------------------------------------------------------------
-- Faction Icons
--------------------------------------------------------------------------------
	peace = {
		image = "Peacekeepers.svg",
		tooltip = "Peacekeepers",
		category = "faction",
		description = "This is a Peacekeepers faction character.",
	},
	peacekeeper = {
		image = "Peacekeepers.svg",
		tooltip = "Peacekeepers",
		parent = "peace",
		category = "faction",
		description = "This is a Peacekeepers faction character.",
	},
	peacekeepers = {
		image = "Peacekeepers.svg",
		tooltip = "Peacekeepers",
		parent = "peace",
		category = "faction",
		description = "This is a Peacekeepers faction character.",
	},
	freeman = {
		image = "Freemen.svg",
		tooltip = "Freemen",
		category = "faction",
		description = "This is a Freemen faction character.",
	},
	freemen = {
		image = "Freemen.svg",
		tooltip = "Freemen",
		parent = "freeman",
		category = "faction",
		description = "This is a Freemen faction character.",
	},
	syn = {
		image = "Syndicate.svg",
		tooltip = "Syndicate",
		category = "faction",
		description = "This is a Syndicate faction character.",
	},
	syndicate = {
		image = "Syndicate.svg",
		tooltip = "Syndicate",
		parent = "syn",
		category = "faction",
		description = "This is a Syndicate faction character.",
	},
--------------------------------------------------------------------------------
-- Attack Type Icons
--------------------------------------------------------------------------------\
	melee = {
		image = "Melee.svg",
		tooltip = "Melee",
		category = "type",
		description = "This character can only engage in the front two rows and they cant's attack with allies in front of them.",
	},
	ranged = {
		image = "Ranged.svg",
		tooltip = "Ranged",
		category = "type",
		description = "This character can only engage in the back two rows and can attack while behind allies.",
	},
	module = {
		image = "Module.svg",
		tooltip = "Module",
		category = "type",
		description = "This character can't attack.",
	},
--------------------------------------------------------------------------------
-- Rarity Icons
--------------------------------------------------------------------------------
	common = {
		image = "Common.svg",
		tooltip = "Common",
		category = "rarity",
		description = "Common Mercenary.",
	},
	rare = {
		image = "Rare.svg",
		tooltip = "Rare",
		category = "rarity",
		description = "Rare Mercenary.",
	},
	epic = {
		image = "Epic.svg",
		tooltip = "Epic",
		category = "rarity",
		description = "Epic Mercenary.",
	},
	legendary = {
		image = "Legendary.svg",
		tooltip = "Legendary",
		category = "rarity",
		description = "Legendary Mercenary.",
	},
	leg = {
		image = "Legendary.svg",
		tooltip = "Legendary",
		parent = "legendary",
		category = "rarity",
		description = "Legendary Mercenary.",
	},
--------------------------------------------------------------------------------
-- Default Icons
--------------------------------------------------------------------------------
	["?"] = {
		image = "Default_icon.svg",
		tooltip = "Icon not found",
		category = "",
		description = "Icon not found",
	},
	_DEFAULT = {
		image = "Default_icon.svg",
		tooltip = "Icon not found",
		category = "",
		description = "Icon not found",
	},
}

--------------------------------------------------------------------------------
-- End icon data
--------------------------------------------------------------------------------

return data