Module:Skill calc/Agility/data
Documentation for this module may be created at Module:Skill calc/Agility/data/doc
--[=[
Notations found in this Module:
* name: Name of product
* title: Alternative name of object
- Used to clarify the difference from a similar object or offer a cleaner name
* icon: Alternate image location
* iconSize: Used to modify large images into an icon
* level: Level required to complete
* xp: Experience gained
* members: Indicates whether an item is members-only content
--]=]
return function(trainMethod)
-- Agility Courses
if trainMethod == "Courses" then
local methods =
{
{
name = "Gnome Stronghold Agility Course",
title = "Gnome Agility Course",
icon = "Swamp Toad",
level = 1,
xp = 90,
members = 0
}, {
name = "Gnome Ball",
icon = "Gnome Ball",
eLink = "(5 goals)",
level = 1,
xp = 55,
members = 0
}, {
name = "Barbarian Outpost Agility Course",
icon = "Steel battle Axe",
level = 35,
xp = 150,
members = 0
}, {
name = "Wilderness Agility Course",
icon = "Skull",
level = 52,
xp = 472.5,
members = 0
}
}
return methods
end
end