RuneScape Wiki
No edit summary
mNo edit summary
Line 1: Line 1:
  +
--[=[
  +
Notations found in this Module:
  +
* name: Name of object
  +
* alt: Alternate image location
  +
* level: Level required to complete
  +
* xp: Experience gained
  +
* material: Materials required { #, "Item name", ...}
  +
* mcount: Material count - Number of materials required
  +
- This allows for exclusion of items not found in the GE
  +
* title: Alternative name of object
  +
- Used to clarify the difference from a similar object or offer a cleaner name
  +
* multi: Used when multiple items are needed in the product icon space
  +
* bench: Bench required for flatpacks
  +
* wood: Type of wood required
  +
--]=]
 
local skillData = {}
 
local skillData = {}
 
return function(trainMethod)
 
return function(trainMethod)

Revision as of 06:54, 13 December 2017

Documentation for this module may be created at Module:Skill calc/Construction/data/doc

--[=[
     Notations found in this Module:
        * name:     Name of object
        * alt:      Alternate image location
        * level:    Level required to complete
        * xp:       Experience gained
        * material: Materials required { #, "Item name", ...}
        * mcount:   Material count - Number of materials required
            - This allows for exclusion of items not found in the GE
        * title:    Alternative name of object
            - Used to clarify the difference from a similar object or offer a cleaner name
        * multi:    Used when multiple items are needed in the product icon space
        * bench:    Bench required for flatpacks
        * wood:     Type of wood required
--]=]
local skillData = {}
return function(trainMethod)
    -- Popular Methods
    if trainMethod == "Popular" then
        local methods = 
        {
            {   
                name     = "Crude wooden chair",
                alt      = "Crude wooden chair icon",
                level    = 1,
                xp       = 66,
                material = {2,"Plank",2,"Iron nails"},
                mcount   = 2
            }, {
                name     = "Oak larder",
                level    = 33,
                xp       = 480,
                material = {8,"Oak plank"}
            }, {
                name     = "Oak larder",
                alt      = "Oak larder",
                title    = "Oak larder (with scroll)",
                level    = 33,
                xp       = 480,
                material = {8-0.5,"Oak plank"}
            }, {
                name     = "Oak door",
                level    = 74,
                xp       = 600,
                material = {10,"Oak plank"}
            }, {
                name     = "Oak door",
                alt      = "Oak door",
                title    = "Oak door (with scroll)",
                level    = 74,
                xp       = 600,
                material = {10-0.75,"Oak plank"}
                -- X~Bin(3,0.25) => avg 0.75 saved
            }, {
                name     = "Amulet of glory (mounted)",
                alt      = "Mounted amulet of glory",
                level    = 47,
                xp       = 290,
                material = {3,"Teak plank"}
            }, {
                name     = "Amulet of glory (mounted)",
                alt      = "Mounted amulet of glory",
                title    = "Amulet of glory (mounted) (with scroll)",
                level    = 47,
                xp       = 290,
                material = {3-0.2,"Teak plank"}
            }, {
                name     = "Carved teak magic wardrobe",
                alt      = "Carved teak magic wardrobe icon",
                level    = 69,
                xp       = 540,
                material = {6,"Teak plank"}
            }, {
                name     = "Carved teak magic wardrobe",
                alt      = "Carved teak magic wardrobe icon",
                title    = "Carved teak magic wardrobe (with scroll)",
                level    = 69,
                xp       = 540,
                material = {6-0.4,"Teak plank"}
            }, {
                name     = "Mahogany table",
                alt      = "Mahogany table icon",
                level    = 52,
                xp       = 840,
                material = {6,"Mahogany plank"}
            }, {
                name     = "Mahogany table",
                alt      = "Mahogany table icon",
                title    = "Mahogany table (with scroll)",
                level    = 52,
                xp       = 840,
                material = {6-0.2,"Mahogany plank"}
            }, {
                name     = "Flotsam prawnbroker",
                level    = 73,
                xp       = 1120,
                material = {8,"Mahogany plank"}
            }, {
                name     = "Flotsam prawnbroker",
                alt      = "Flotsam prawnbroker",
                title    = "Flotsam prawnbroker (with scroll)",
                level    = 73,
                xp       = 1120,
                material = {8-0.2,"Mahogany plank"}
                -- X~Bin(2, 0.1) => avg 0.2 saved
            }, {
                name     = "Stone fireplace",
                level    = 33,
                xp       = 40,
                material = {2, "Limestone brick"}
            }, {
                name     = "Teak larder",
                level    = 43,
                xp       = 720,
                material = {8, "Teak plank", 2, "Bolt of cloth"}
            }, {
                name     = "Teak larder",
                alt      = "Teak larder",
                title    = "Teak larder (with scroll)",
                level    = 43,
                xp       = 720,
                material = {8-0.4, "Teak plank", 2, "Bolt of cloth"}
            },
        }
        return methods
    end
    
    -- Supplies
    if trainMethod == "Supplies" then
        local methods =
        {
            {   
                name     = "Plank & Nail",
                multi    = {"Plank", "Iron nails"},
                level    = 1,
                xp       = 30.5,
                material = {1, "Plank", 1, "Iron nails"},
                mcount   = 2
            }, {
                name     = "Bolt of cloth",
                level    = 2,
                xp       = 15,
                material = {1, "Bolt of cloth"}
            }, {
                name     = "Soft clay",
                level    = 3,
                xp       = 10,
                material = {1, "Soft clay"}
            }, {
                name     = "Iron bar",
                level    = 5,
                xp       = 10,
                material = {1, "Iron bar"}
            }, {
                name     = "Limestone brick",
                level    = 5,
                xp       = 20,
                material = {1, "Limestone brick"}
            }, {
                name     = "Steel bar",
                level    = 7,
                xp       = 20,
                material = {1, "Steel bar"}
            }, {
                name     = "Oak plank",
                level    = 15,
                xp       = 60,
                material = {1, "Oak plank"}
            }, {
                name     = "Teak plank",
                level    = 35,
                xp       = 90,
                material = {1, "Teak plank"}
            }, {
                name     = "Mahogany plank",
                level    = 40,
                xp       = 140,
                material = {1, "Mahogany plank"}
            }
        }
        return methods
    end

    -- Flatpacks
    if trainMethod == "Flatpacks" then
        local methods =
        {
            {   
                name     = "Crude wooden chair",
                bench    = "Wooden workbench",
                level    = 17,
                xp       = 66,
                wood     = "Plank",
                material = {2, "Plank", 2, "Iron nails"},
                mcount   = 2
            }, {
                name     = "Wooden chair",
                bench    = "Wooden workbench",
                level    = 17,
                xp       = 96,
                wood     = "Plank",
                material = {3, "Plank", 3, "Iron nails"},
                mcount   = 2
            }, {
                name     = "Rocking chair",
                bench    = "Wooden workbench",
                level    = 17,
                xp       = 96,
                wood     = "Plank",
                material = {3, "Plank", 3, "Iron nails"},
                mcount   = 2
            }, {
                name     = "Oak chair",
                bench    = "Wooden workbench",
                level    = 19,
                xp       = 120,
                wood     = "Oak plank",
                material = {2, "Oak plank"}
            }, {
                name     = "Oak armchair",
                bench    = "Oak workbench",
                level    = 32,
                xp       = 180,
                wood     = "Oak plank",
                material = {3, "Oak plank"}
            }, {
                name     = "Wooden bookcase",
                bench    = "Wooden workbench",
                level    = 17,
                xp       = 115,
                wood     = "Plank",
                material = {4, "Plank", 4, "Iron nails"},
                mcount   = 2
            }, {
                name     = "Oak bookcase",
                bench    = "Oak workbench",
                level    = 32,
                xp       = 180,
                wood     = "Oak plank",
                material = {3, "Oak plank"}
            }, {
                name     = "Beer barrel",
                bench    = "Wooden workbench",
                level    = 17,
                xp       = 87,
                wood     = "Plank",
                material = {3, "Plank", 3, "Iron nails"},
                mcount   = 2
            }, {
                name     = "Cider barrel",
                bench    = "Wooden workbench",
                level    = 17,
                xp       = 91,
                wood     = "Plank",
                material = {3, "Plank", 3, "Iron nails", 8, "Cider"},
                mcount   = 3
            }, {
                name     = "Asgarnian ale (barrel)",
                bench    = "Wooden workbench",
                level    = 18,
                xp       = 184,
                wood     = "Oak plank",
                material = {3, "Oak plank", 8, "Asgarnian ale"},
                mcount   = 2
            }, {
                name     = "Greenman's ale (barrel)",
                bench    = "Oak workbench",
                level    = 32,
                xp       = 184,
                wood     = "Oak plank",
                material = {3, "Oak plank", 8, "Greenman's ale"},
                mcount   = 2
            }, {
                name     = "Wood kitchen table",
                bench    = "Wooden workbench",
                level    = 17,
                xp       = 87,
                wood     = "Plank",
                material = {3, "Plank", 3, "Iron nails"},
                mcount   = 2
            }, {
                name     = "Oak kitchen table",
                bench    = "Oak workbench",
                level    = 32,
                xp       = 180,
                wood     = "Oak plank",
                material = {3, "Oak plank"}
            }, {
                name     = "Wood dining table",
                bench    = "Wooden workbench",
                level    = 17,
                xp       = 115,
                wood     = "Plank",
                material = {4, "Plank", 4, "Iron nails"},
                mcount   = 2
            }, {
                name     = "Oak dining table",
                bench    = "Oak workbench",
                level    = 32,
                xp       = 240,
                wood     = "Oak plank",
                material = {4, "Oak plank"}
            }, {
                name     = "Carved oak table",
                bench    = "Oak workbench",
                level    = 32,
                xp       = 360,
                wood     = "Oak plank",
                material = {6, "Oak plank"}
            }, {
                name     = "Wooden bench",
                bench    = "Wooden workbench",
                level    = 17,
                xp       = 115,
                wood     = "Plank",
                material = {4, "Plank", 4, "Iron nails"},
                mcount   = 2
            }, {
                name     = "Oak bench",
                bench    = "Oak workbench",
                level    = 32,
                xp       = 240,
                wood     = "Oak plank",
                material = {4, "Oak plank"}
            }, {
                name     = "Carved oak bench",
                bench    = "Oak workbench",
                level    = 32,
                xp       = 240,
                wood     = "Oak plank",
                material = {4, "Oak plank"}
            }, {
                name     = "Wooden bed",
                bench    = "Wooden workbench",
                level    = 20,
                xp       = 117,
                wood     = "Plank",
                material = {3, "Plank", 3, "Iron nails", 2, "Bolt of cloth"},
                mcount   = 3
            }, {
                name     = "Oak bed",
                bench    = "Oak workbench",
                level    = 32,
                xp       = 210,
                wood     = "Oak plank",
                material = {3, "Oak plank", 2, "Bolt of cloth"},
                mcount   = 2
            }, {
                name     = "Large oak bed",
                bench    = "Oak workbench",
                level    = 34,
                xp       = 330,
                wood     = "Oak plank",
                material = {5, "Oak plank", 2, "Bolt of cloth"},
                mcount   = 2
            }, {
                name     = "Shaving stand",
                bench    = "Oak workbench",
                level    = 32,
                xp       = 30,
                wood     = "Plank",
                material = {1, "Plank", 1, "Iron nails", 1, "Molten glass"},
                mcount   = 3
            }, {
                name     = "Oak shaving stand",
                bench    = "Oak workbench",
                level    = 32,
                xp       = 61,
                wood     = "Oak plank",
                material = {1, "Oak plank", 1, "Molten glass"},
                mcount   = 2
            }, {
                name     = "Shoe box",
                bench    = "Wooden workbench",
                level    = 20,
                xp       = 58,
                wood     = "Plank",
                material = {2, "Mahogany plank", 2, "Iron nails"},
                mcount   = 2
            }, {
                name     = "Oak drawers",
                bench    = "Oak workbench",
                level    = 32,
                xp       = 120,
                wood     = "Oak plank",
                material = {2, "Oak plank"}
            }, {
                name     = "Oak clock",
                bench    = "Oak workbench",
                level    = 32,
                xp       = 142,
                wood     = "Oak plank",
                material = {2, "Oak plank", 1, "Clockwork"},
                mcount   = 2
            }, {
                name     = "Mahogany bookcase",
                image = "Mahogany b'kcase (flatpack)",
                bench    = "Oak workbench",
                level    = 40,
                xp       = 420,
                wood     = "Mahogany plank",
                material = {3, "Mahogany plank"}
            }, {
                name     = "Dragon bitter (barrel)",
                bench    = "Oak workbench",
                level    = 36,
                xp       = 224,
                wood     = "Oak plank",
                material = {3, "Oak plank", 2, "Steel bar", 8, "Dragon bitter"},
                mcount   = 3
            }, {
                name     = "Chef's delight (barrel)",
                bench    = "Steel framed bench",
                level    = 48,
                xp       = 224,
                wood     = "Oak plank",
                material = {3, "Oak plank", 2, "Steel bar", 8, "Chef's delight"},
                mcount   = 3
            }, {
                name     = "Teak kitchen table",
                bench    = "Steel framed bench",
                level    = 52,
                xp       = 270,
                wood     = "Teak plank",
                material = {3, "Teak plank"}
            }, {
                name     = "Teak table",
                bench    = "Oak workbench",
                level    = 38,
                xp       = 360,
                wood     = "Teak plank",
                material = {4, "Teak plank"}
            }, {
                name     = "Carved teak table",
                bench    = "Steel framed bench",
                level    = 46,
                xp       = 600,
                wood     = "Teak plank",
                material = {6, "Teak plank", 4, "Bolt of cloth"},
                mcount   = 2
            }, {
                name     = "Mahogany table",
                bench    = "Steel framed bench",
                level    = 52,
                xp       = 840,
                wood     = "Mahogany plank",
                material = {6, "Mahogany plank"}
            }, {
                name     = "Opulent table",
                bench    = "Bench with vice",
                level    = 72,
                xp       = 3100,
                wood     = "Mahogany plank",
                material = {6, "Mahogany plank", 4, "Bolt of cloth", 4, "Gold leaf", 2, "Marble block"},
                mcount   = 4
            }, {
                name     = "Teak dining bench",
                bench    = "Oak workbench",
                level    = 38,
                xp       = 360,
                wood     = "Teak plank",
                material = {4, "Teak plank"}
            }, {
                name     = "Carved teak bench",
                bench    = "Steel framed bench",
                level    = 46,
                xp       = 360,
                wood     = "Teak plank",
                material = {4, "Teak plank"}
            }, {
                name     = "Mahogany bench",
                bench    = "Steel framed bench",
                level    = 52,
                xp       = 560,
                wood     = "Mahogany plank",
                material = {4, "Mahogany plank"}
            }, {
                name     = "Gilded bench",
                bench    = "Bench with vice",
                level    = 62,
                xp       = 1760,
                wood     = "Mahogany plank",
                material = {4, "Mahogany plank", 4, "Gold leaf"},
                mcount   = 2
            }, {
                name     = "Teak bed",
                bench    = "Oak workbench",
                level    = 40,
                xp       = 300,
                wood     = "Teak plank",
                material = {3, "Teak plank", 2, "Bolt of cloth"}
            }, {
                name     = "Large teak bed",
                bench    = "Steel framed bench",
                level    = 46,
                xp       = 480,
                wood     = "Teak plank",
                material = {5, "Teak plank", 2, "Bolt of cloth"},
            	mcount = 2
            }, {
                name     = "4-poster",
                bench    = "Steel framed bench",
                level    = 53,
                xp       = 450,
                wood     = "Mahogany plank",
                material = {3, "Mahogany plank", 2, "Bolt of cloth"},
                mcount   = 2
            }, {
                name     = "Gilded 4-poster",
                bench    = "Steel framed bench",
                level    = 60,
                xp       = 1330,
                wood     = "Mahogany plank",
                material = {5, "Mahogany plank", 2, "Gold leaf", 2, "Bolt of cloth"},
                mcount   = 3
            }, {
                name     = "Oak dresser",
                bench    = "Oak workbench",
                level    = 37,
                xp       = 121,
                wood     = "Oak plank",
                material = {2, "Oak plank", 1, "Molten glass"},
                mcount   = 2
            }, {
                name     = "Teak dresser",
                bench    = "Steel framed bench",
                level    = 46,
                xp       = 181,
                wood     = "Teak plank",
                material = {2, "Teak plank", 1, "Molten glass"},
                mcount   = 2
            }, {
                name     = "Fancy teak dresser",
                bench    = "Steel framed bench",
                level    = 56,
                xp       = 182,
                wood     = "Teak plank",
                material = {2, "Teak plank", 2, "Molten glass"},
                mcount   = 2
            }, {
                name     = "Mahogany dresser",
                bench    = "Bench with vice",
                level    = 64,
                xp       = 281,
                wood     = "Mahogany plank",
                material = {2, "Mahogany plank", 1, "Molten glass"},
                mcount   = 2
            }, {
                name     = "Gilded dresser",
                bench    = "Bench with vice",
                level    = 74,
                xp       = 582,
                wood     = "Mahogany plank",
                material = {2, "Mahogany plank", 2, "Molten glass", 1, "Gold leaf"},
                mcount   = 3
            }, {
                name     = "Oak wardrobe",
                bench    = "Oak workbench",
                level    = 39,
                xp       = 180,
                wood     = "Oak plank",
                material = {3, "Oak plank"}
            }, {
                name     = "Teak drawers",
                bench    = "Steel framed bench",
                level    = 51,
                xp       = 180,
                wood     = "Teak plank",
                material = {2, "Teak plank"}
            }, {
                name     = "Teak wardrobe",
                bench    = "Bench with vice",
                level    = 63,
                xp       = 270,
                wood     = "Teak plank",
                material = {3, "Teak plank"}
            }, {
                name     = "Mahogany 'drobe",
                bench    = "Bench with vice",
                level    = 75,
                xp       = 420,
                wood     = "Mahogany plank",
                material = {3, "Mahogany plank"}
            }, {
                name     = "Gilded wardrobe",
                bench    = "Bench with lathe",
                level    = 87,
                xp       = 720,
                wood     = "Mahogany plank",
                material = {3, "Mahogany plank", 1, "Gold leaf"},
                mcount   = 2
            }, {
                name     = "Teak clock",
                bench    = "Steel framed bench",
                level    = 55,
                xp       = 202,
                wood     = "Teak plank",
                material = {2, "Teak plank", 1, "Clockwork"},
                mcount   = 2
            }, {
                name     = "Gilded clock",
                bench    = "Bench with lathe",
                level    = 85,
                xp       = 602,
                wood     = "Mahogany plank",
                material = {2, "Mahogany plank", 1, "Clockwork", 1, "Gold leaf"},
                mcount   = 3
            }, {
                name     = "Oak cape rack",
                bench    = "Steel framed bench",
                level    = 54,
                xp       = 240,
                wood     = "Oak plank",
                material = {4, "Oak plank"}
            }, {
                name     = "Teak cape rack",
                bench    = "Bench with vice",
                level    = 63,
                xp       = 360,
                wood     = "Teak plank",
                material = {4, "Teak plank"}
            }, {
                title    = "Mahogany cape rack",
                name     = "M'gany cape rack",
                bench    = "Bench with vice",
                level    = 72,
                xp       = 560,
                wood     = "Mahogany plank",
                material = {4, "Mahogany plank"}
            }, {
                name     = "Gilded cape rack",
                bench    = "Bench with lathe",
                level    = 81,
                xp       = 860,
                wood     = "Mahogany plank",
                material = {4, "Mahogany plank", 1, "Gold leaf"},
                mcount   = 2
            }, {
                name     = "Marble cape rack",
                bench    = "Bench with lathe",
                level    = 90,
                xp       = 500,
                wood     = "Marble block",
                material = {1, "Marble block"}
            }, {
                name     = "Magical cape rack",
                bench    = "Bench with lathe",
                level    = 99,
                xp       = 1000,
                wood     = "Magic stone",
                material = {1, "Magic stone"}
            }, {
                name     = "Oak magic wardrobe",
                bench    = "Steel framed bench",
                level    = 46,
                xp       = 240,
                wood     = "Oak plank",
                material = {4, "Oak plank"}
            }, {
                name     = "Carved oak magic wardrobe",
                bench    = "Steel framed bench",
                level    = 51,
                xp       = 360,
                wood     = "Oak plank",
                material = {6, "Oak plank"}
            }, {
                name     = "Teak magic wardrobe",
                bench    = "Steel framed bench",
                level    = 60,
                xp       = 360,
                wood     = "Teak plank",
                material = {4, "Teak plank"}
            }, {
                name     = "Carved teak magic wardrobe",
                bench    = "Bench with vice",
                level    = 69,
                xp       = 540,
                wood     = "Teak plank",
                material = {6, "Teak plank"}
            }, {
                name     = "Mahogany magic wardrobe",
                bench    = "Bench with vice",
                level    = 78,
                xp       = 560,
                wood     = "Mahogany plank",
                material = {4, "Mahogany plank"}
            }, {
                name     = "Gilded magic wardrobe",
                bench    = "Bench with lathe",
                level    = 87,
                xp       = 860,
                wood     = "Mahogany plank",
                material = {4, "Mahogany plank", 1, "Gold leaf"},
                mcount   = 2
            }, {
                name     = "Marble magic wardrobe",
                bench    = "Bench with lathe",
                level    = 96,
                xp       = 500,
                wood     = "Marble block",
                material = {1, "Marble block"}
            }, {
                name     = "Oak armour case",
                bench    = "Steel framed bench",
                level    = 46,
                xp       = 180,
                wood     = "Oak plank",
                material = {3, "Oak plank"}
            }, {
                name     = "Teak armour case",
                bench    = "Bench with vice",
                level    = 64,
                xp       = 270,
                wood     = "Teak plank",
                material = {3, "Teak plank"}
            }, {
                title    = "Mahogany armor case",
                name     = "M'gany arm'r case",
                bench    = "Bench with lathe",
                level    = 82,
                xp       = 420,
                wood     = "Mahogany plank",
                material = {3, "Mahogany plank"}
            }, {
                name     = "Oak treasure chest",
                bench    = "Steel framed bench",
                level    = 48,
                xp       = 120,
                wood     = "Oak plank",
                material = {2, "Oak plank"}
            }, {
                title    = "Teak treasure chest",
                name     = "Teak treas' chest",
                bench    = "Bench with vice",
                level    = 66,
                xp       = 180,
                wood     = "Teak plank",
                material = {2, "Teak plank"}
            }, {
                title    = "Mahogany treasure chest",
                name     = "M'gany treas' chest",
                bench    = "Bench with lathe",
                level    = 84,
                xp       = 280,
                wood     = "Mahogany plank",
                material = {2, "Mahogany plank"}
            }, {
                name     = "Oak fancy dress box",
                bench    = "Steel framed bench",
                level    = 46,
                xp       = 120,
                wood     = "Oak plank",
                material = {2, "Oak plank"}
            }, {
                name     = "Teak fancy dress box",
                bench    = "Bench with vice",
                level    = 62,
                xp       = 180,
                wood     = "Teak plank",
                material = {2, "Teak plank"}
            }, {
                name     = "Mahogany fancy dress box",
                bench    = "Bench with vice",
                level    = 80,
                xp       = 280,
                wood     = "Mahogany plank",
                material = {2, "Mahogany plank"}
            }, {
                name     = "Oak toy box",
                bench    = "Steel framed bench",
                level    = 50,
                xp       = 120,
                wood     = "Oak plank",
                material = {2, "Oak plank"}
            }, {
                name     = "Teak toy box",
                bench    = "Bench with vice",
                level    = 68,
                xp       = 180,
                wood     = "Teak plank",
                material = {2, "Teak plank"}
            }, {
                name     = "Mahogany toy box",
                bench    = "Bench with lathe",
                level    = 86,
                xp       = 280,
                wood     = "Mahogany plank",
                material = {2, "Mahogany plank"}
            }
        }
        return methods
    end

        -- Other Methods
    if trainMethod == "Other" then
        local methods = 
        {
            {   
                page     = "Long Bone",
                level    = 30,
                xp       = 1500,
                icon     = "Long Bone"
            }, {
                page     = "Curved Bone",
                level    = 30,
                xp       = 2250,
                icon     = "Curved Bone"
            }, {
                page     = "Plank make",
                level    = 50,
                xp       = 54.6,
                icon     = "Plank Make icon",
                alt      = "Plank make]] - [[Livid Farm"
            }, {
                page     = "Plank make",
                level    = 50,
                xp       = 546,
                icon     = "Plank Make icon",
                alt      = "Plank Make]] - [[Livid Farm|1 Cycle"
            }
        }
        return methods
    end

    -- Milestones
    if trainMethod == "Milestones" then
        local methods = 
        {
            {
                level    = 1,
                name     = "Garden",
                icon     = "Pond",
                title    = "Garden (Room)",
                xp       = 0,
                coins    = 1000
            }, {
                level    = 1,
                name     = "Parlour",
                icon     = "Mahogany armchair icon",
                title    = "Parlour (Room)",
                xp       = 0,
                coins    = 1000
            }, {
                level    = 5,
                name     = "Kitchen",
                icon     = "Fancy range",
                title    = "Kitchen (Room)",
                xp       = 0,
                coins    = 5000
            }, {
                level    = 10,
                name     = "Dining room",
                icon     = "Opulent table icon",
                title    = "Dining room (Room)",
                xp       = 0,
                coins    = 5000
           }, {
                level    = 15,
                name     = "Workshop",
                icon     = "Bench with lathe icon",
                title    = "Workshop (Room)",
                xp       = 0,
                coins    = 10000
            }, {
                level    = 15,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum dimensions: 4x4 rooms",
                xp       = 0
            }, {
                level    = 20,
                name     = "Bedroom",
                icon     = "Gilded 4-poster icon",
                title    = "Bedroom (Room)",
                xp       = 0,
                coins    = 10000
            }, {
                level    = 30,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum dimensions: 5x5 rooms",
                xp       = 0
            }, {
                level    = 37,
                name     = "Menagerie",
                icon     = "Small obelisk (POH)",
                title    = "Menagerie (Room)",
                xp       = 0,
                coins    = 30000
            }, {
                level    = 38,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum rooms: 22",
                xp       = 0
            }, {
                level    = 40,
                name     = "Study",
                icon     = "Large orrery",
                title    = "Study (Room)",
                xp       = 0,
                coins    = 50000
            }, {
                level    = 40,
                name     = "Oak lectern",
                xp       = 60
            }, {
                level    = 44,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum rooms: 23",
                xp       = 0,
            }, {
                level    = 45,
                name     = "Chapel",
                icon     = "Gilded altar",
                title    = "Chapel (Room)",
                xp       = 0,
                coins    = 50000
            }, {
                level    = 45,
                name     = "Oak altar",
                xp       = 240
            }, {
                level    = 46,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum dimensions: 6x6 rooms",
                xp       = 0
            }, {
                level    = 47,
                name     = "Eagle lectern",
                icon     = "Eagle lectern",
                title    = "Oak eagle lectern",
                xp       = 120
            }, {
                level    = 47,
                name     = "Demon lectern",
                icon     = "Demon lectern",
                title    = "Oak demon lectern",
                xp       = 120
            }, {
                level    = 50,
                name     = "Portal chamber",
                icon     = "Scrying pool",
                title    = "Portal chamber (Room)",
                xp       = 0,
                coins    = 100000
            }, {
                level    = 50,
                name     = "Teak altar",
                xp       = 360
            }, {
                level    = 50,
                name     = "Demon butler",
                icon     = "Demon butler chathead",
                iconSize = 30,
                title    = "Demon butler (Servant)",
                xp       = 0,
                coins    = 10000,
                cost2    = 7500
            }, {
                level    = 50,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum rooms: 24",
                xp       = 0
            }, {
                level    = 56,
                name     = "Cloth altar",
                icon     = "Cloth altar",
                title    = "Cloth-covered teak altar",
                xp       = 390
            }, {
                level    = 56,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum rooms: 25",
                xp       = 0
            }, {
                level    = 57,
                name     = "Teak eagle lectern",
                xp       = 180
            }, {
                level    = 57,
                name     = "Teak demon lectern",
                xp       = 180
            }, {
                level    = 60,
                name     = "Throne Room",
                icon     = "Demonic throne icon",
                title    = "Throne room (Room)",
                xp       = 0,
                coins    = 150000
            }, {
                level    = 60,
                name     = "Mahogany altar",
                icon     = "mahogany altar",
                title    = "Cloth-covered mahogany altar",
                xp       = 590
            }, {
                level    = 60,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum dimensions: 7x7 rooms",
                xp       = 0
            }, {
                level    = 62,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum rooms: 26",
                xp       = 0
            }, {
                level    = 64,
                name     = "Limestone altar",
                xp       = 910
            }, {
                level    = 67,
                name     = "Mahogany eagle lectern",
                xp       = 580
            }, {
                level    = 67,
                name     = "Mahogany demon lectern",
                xp       = 580
            }, {
                level    = 68,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum rooms: 27",
                xp       = 0
            }, {
                level    = 70,
                name     = "Dungeon",
                icon     = "Steel door",
                title    = "Dungeon (Room)",
                xp       = 0,
                coins    = 7500
            }, {
                level    = 70,
                name     = "Marble altar",
                xp       = 1030
            }, {
                level    = 74,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum rooms: 28",
                xp       = 0
            }, {
                level    = 75,
                name     = "Gilded altar",
                icon     = "Gilded altar",
                title    = "Gilded marble altar",
                xp       = 2230
            }, {
                level    = 75,
                name     = "Daemonheim",
                icon     = "Altar",
                iconSize = 30,
                title    = "Start-room prayer altar in Daemonheim",
                xp       = 0
            }, {
                level    = 80,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum rooms: 29",
                xp       = 0
            }, {
                level    = 86,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum rooms: 30",
                xp       = 0
            }, {
                level    = 90,
                name     = "The Architect",
                icon     = "The Architect chathead",
                iconSize = 30,
                title    = "Ports Adventurer: The Architect",
                xp       = 0
            }, {
                level    = 92,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum rooms: 31",
                xp       = 0
            }, {
                level    = 95,
                name     = "Steel dragon (POH)",
                icon     = "SteelDragon",
                title    = "Steel dragon",
                xp       = 0,
                coins    = 10000000
            }, {
                level    = 96,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum rooms: 32",
                xp       = 0
            }, {
                level    = 97,
                name     = "Pit iron dragon",
                icon     = "Pit iron dragon(dungeon)",
                title    = "Pit iron dragon",
                xp       = 0,
                coins    = 7500000
            }, {
                level    = 99,
                name     = "Player-owned house#Size limitations",
                icon     = "POH portal",
                iconSize = 30,
                title    = "Maximum rooms: 33",
                xp       = 0
            }, {
                level    = 99,
                name     = "Construction cape (t)",
                icon     = "Construction cape (t)",
                title    = "Skill mastery",
                xp       = 0
            }
        }
        return methods
    end

    -- Rooms
    if trainMethod == "Rooms" then
        local methods = 
        {
            {
                level    = 1,
                name     = "Garden",
                icon     = "Pond",
                xp       = 0,
                coins    = 1000
            }, {
                level    = 1,
                name     = "Parlour",
                icon     = "Mahogany armchair icon",
                xp       = 0,
                coins    = 1000
            }, {
                level    = 5,
                name     = "Kitchen",
                icon     = "Fancy range",
                xp       = 0,
                coins    = 5000
            }, {
                level    = 10,
                name     = "Dining room",
                icon     = "Opulent table icon",
                xp       = 0,
                coins    = 5000
            }, {
                level    = 15,
                name     = "Workshop",
                icon     = "Bench with lathe icon",
                xp       = 0,
                coins    = 10000
            }, {
                level    = 20,
                name     = "Bedroom",
                icon     = "Gilded 4-poster icon",
                xp       = 0,
                coins    = 10000
            }, {
                level    = 25,
                name     = "Skill Hall",
                icon     = "Marble staircase",
                ourTitle = "Hall - skill trophies",
                xp       = 0,
                coins    = 15000
            }, {
                level    = 30,
                name     = "Games room",
                icon     = "Games room icon",
                xp       = 0,
                coins    = 25000
            }, {
                level    = 32,
                name     = "Combat room",
                icon     = "Combat room icon",
                xp       = 0,
                coins    = 25000
            }, {
                level    = 35,
                name     = "Quest Hall",
                icon     = "Marble spiral",
                alt      = "Hall - quest trophies",
                xp       = 0,
                coins    = 25000
            }, {
                level    = 37,
                name     = "Menagerie",
                icon     = "Small obelisk (POH)",
                xp       = 0,
                coins    = 30000
            }, {
                level    = 40,
                name     = "Study",
                icon     = "Large orrery",
                xp       = 0,
                coins    = 50000
            }, {
                level    = 42,
                name     = "Costume room",
                icon     = "Magical cape rack icon",
                xp       = 0,
                coins    = 50000
            }, {
                level    = 45,
                name     = "Chapel",
                icon     = "Gilded altar",
                xp       = 0,
                coins    = 50000
            }, {
                level    = 50,
                name     = "Portal chamber",
                icon     = "Scrying pool",
                xp       = 0,
                coins    = 100000
            }, {
                level    = 55,
                name     = "Formal garden",
                icon     = "Posh fountain",
                xp       = 0,
                coins    = 75000
            }, {
                level    = 60,
                name     = "Throne room",
                icon     = "Demonic throne icon",
                xp       = 0,
                coins    = 150000
            }, {
                level    = 63,
                name     = "Aquarium",
                icon     = "Aquarium icon",
                xp       = 0,
                coins    = 200000
            }, {
                level    = 65,
                name     = "Oubliette",
                icon     = "Spikes(POH)",
                xp       = 0,
                coins    = 150000
            }, {
                level    = 70,
                name     = "Pit dungeon",
                icon     = "Oak door",
                alt      = "Dungeon pit",
                xp       = 0,
                coins    = 10000
            }, {
                level    = 70,
                name     = "Dungeon",
                icon     = "Steel door",
                xp       = 0,
                coins    = 7500
            }, {
                level    = 75,
                name     = "Treasure room",
                icon     = "Mahogany chest",
                xp       = 0,
                coins    = 250000
            }
        }
        return methods
    end

    -- Skills
    if trainMethod == "Skills" then
        local methods = 
        {
            {
                level    = 6,
                name     = "Wooden shelves 1",
                xp       = 87,
                material = {3, "Plank", 3, "Iron nails"},
                mcount   = 2
            }, {
                level    = 12,
                name     = "Wooden shelves 2",
                xp       = 147,
                material = {3, "Plank", 3, "Iron nails", 6, "Soft clay"},
                mcount   = 3
            }, {
                level    = 15,
                name     = "Tool store 1",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 15,
                name     = "Repair bench",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 16,
                name     = "Crafting table 1",
                xp       = 240,
                material = {4, "Oak plank"}
            }, {
                level    = 16,
                name     = "Pluming stand",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 17,
                name     = "Wooden workbench",
                xp       = 143,
                material = {5, "Plank", 5, "Iron nails"},
                mcount   = 2
            }, {
                level    = 23,
                name     = "Wooden shelves 3",
                xp       = 147,
                material = {3, "Plank", 3, "Iron nails", 6, "Soft clay"},
                mcount   = 3
            }, {
                level    = 25,
                name     = "Tool store 2",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 25,
                name     = "Crafting table 2",
                xp       = 1,
                material = {1, "Molten glass"}
            }, {
                level    = 27,
                name     = "Pump and tub",
                xp       = 200,
                material = {10, "Steel bar"}
            }, {
                level    = 32,
                name     = "Oak workbench",
                xp       = 300,
                material = {5, "Oak plank"}
            }, {
                level    = 34,
                name     = "Oak shelves 1",
                xp       = 240,
                material = {3, "Oak plank", 6, "Soft clay"},
                mcount   = 2
            } , {
                level    = 34,
                name     = "Crafting table 3",
                xp       = 2,
                material = {2, "Molten glass"}
            }, {
                level    = 35,
                name     = "Tool store 3",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 40,
                name     = "Oak lectern",
                xp       = 60,
                material = {1, "Oak plank"}
            }, {
                level    = 41,
                name     = "Shield easel",
                xp       = 240,
                material = {4, "Oak plank"}
            }, {
                level    = 41,
                name     = "Globe",
                alt      = "Globe icon",
                xp       = 180,
                material = {3, "Oak plank"}
            }, {
                level    = 42,
                name     = "Crafting table 4",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 44,
                name     = "Tool store 4",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 45,
                name     = "Oak shelves 2",
                xp       = 240,
                material = {3, "Oak plank", 6, "Soft clay"},
                mcount   = 2
            }, {
                level    = 46,
                name     = "Steel framed bench",
                title    = "Steel-framed workbench",
                xp       = 440,
                material = {6, "Oak plank", 4, "Steel bar"},
                mcount   = 2
            }, {
                level    = 47,
                name     = "Eagle lectern",
                title    = "Oak eagle lectern",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 47,
                name     = "Demon lectern",
                title    = "Oak demon lectern",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 50,
                name     = "Ornamental globe",
                xp       = 270,
                material = {3, "Teak plank"}
            }, {
                level    = 55,
                name     = "Armour stand",
                alt      = "Armour stand icon",
                xp       = 500,
                material = {8, "Oak plank", 1, "Limestone brick"},
                mcount   = 2
            }, {
                level    = 55,
                name     = "Tool store 5",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 56,
                name     = "Teak shelves 1",
                xp       = 330,
                material = {3, "Teak plank", 6, "Soft clay"},
                mcount   = 2
            }, {
                level    = 57,
                name     = "Gilded decoration",
                title    = "Gilded mahogany wall decoration",
                xp       = 1020,
                material = {3, "Mahogany plank", 2, "Gold leaf"},
                mcount   = 2
            }, {
                level    = 57,
                name     = "Teak demon lectern",
                xp       = 180,
                material = {2, "Teak plank"}
            }, {
                level    = 59,
                name     = "Teak eagle lectern",
                xp       = 180,
                material = {2, "Teak plank"}
            }, {
                level    = 59,
                name     = "Lunar globe",
                xp       = 570,
                material = {3, "Teak plank", 1, "Gold leaf"},
                mcount   = 2
            }, {
                level    = 62,
                name     = "Bench with vice",
                title    = "Workbench with vice",
                xp       = 140,
                material = {2, "Oak plank", 1, "Steel bar"},
                mcount   = 2
            }, {
                level    = 66,
                name     = "Banner easel",
                alt      = "Banner easel icon",
                xp       = 510,
                material = {8, "Oak plank", 2, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 67,
                name     = "Mahogany eagle lectern",
                xp       = 580,
                material = {2, "Mahogany plank", 1, "Gold leaf"},
                mcount   = 2
            }, {
                level    = 67,
                name     = "Teak shelves 2",
                xp       = 930,
                material = {3, "Teak plank", 6, "Soft clay", 2, "Gold leaf"},
                mcount   = 3
            }, {
                level    = 68,
                name     = "Mahogany demon lectern",
                xp       = 580,
                material = {2, "Mahogany plank", 1, "Gold leaf"},
                mcount   = 2
            }, {
                level    = 77,
                name     = "Bench with lathe",
                alt      = "Bench with lathe icon",
                title    = "Workbench with lathe",
                xp       = 140,
                material = {2, "Oak plank", 1, "Steel bar"},
                mcount   = 2
            }
        }
        return methods
    end

    if trainMethod == "Furniture" then
        local methods = 
        {
            {
                level    = 1,
                name     = "Crude wooden chair",
                alt      = "Crude wooden chair icon",
                xp       = 66,
                material = {2, "Plank", 2, "Iron nails"},
                mcount   = 2
            }, {
                level    = 2,
                name     = "Torn curtains",
                xp       = 132,
                material = {3, "Plank", 3, "Iron nails", 3, "Bolt of cloth"},
                mcount   = 3
            }, {
                level    = 2.1,
                name     = "Brown rug",
                xp       = 30,
                material = {2, "Bolt of cloth"}
            }, {
                level    = 3,
                name     = "Clay fireplace",
                xp       = 30,
                material = {3, "Soft clay"}
            }, {
                level    = 5,
                name     = "Firepit",
                xp       = 40,
                material = {1, "Steel bar", 2, "Soft clay"},
                mcount   = 2
            }, {
                level    = 7,
                name     = "Pump and drain",
                xp       = 100,
                material = {5, "Steel bar"}
            }, {
                level    = 7.1,
                name     = "Beer barrel",
                alt      = "Beer barrel icon",
                xp       = 87,
                material = {3, "Plank", 3, "Iron nails"},
                mcount   = 2
            }, {
                level    = 8,
                name     = "Wooden chair",
                alt      = "Wooden chair icon",
                xp       = 96,
                material = {3, "Plank", 3, "Iron nails"},
                mcount   = 2
            }, {
                level    = 9,
                name     = "Wooden larder",
                xp       = 228,
                material = {8, "Plank", 8, "Iron nails"},
                mcount   = 2
            }, {
                level    = 10,
                name     = "Wood dining table",
                alt      = "Wood dining table icon",
                title    = "Wooden dining table",
                xp       = 115,
                material = {4, "Plank", 4, "Iron nails"},
                mcount   = 2
            }, {
                level    = 10.1,
                name     = "Wooden bench",
                alt      = "Wooden bench icon",
                title    = "Wooden dining bench",
                xp       = 115,
                material = {4, "Plank", 4, "Iron nails"},
                mcount   = 2
            }, {
                level    = 11,
                name     = "Firepit with hook",
                xp       = 60,
                material = {2, "Steel bar", 2, "Soft clay"},
                mcount   = 2
            }, {
                level    = 12,
                name     = "Cider barrel",
                alt      = "Cider barrel icon",
                xp       = 91,
                material = {3, "Plank", 3, "Iron nails", 8, "Cider"},
                mcount   = 3
            }, {
                level    = 12.1,
                name     = "Wood kitchen table",
                alt      = "Wood kitchen table icon",
                title    = "Wooden kitchen table",
                xp       = 87,
                material = {3, "Plank", 3, "Iron nails"},
                mcount   = 2
            }, {
                level    = 13,
                name     = "Rug",
                xp       = 60,
                material = {4, "Bolt of cloth"}
            }, {
                level    = 14,
                name     = "Rocking chair",
                alt      = "Rocking chair icon",
                xp       = 96,
                material = {3, "Plank", 3, "Iron nails"},
                mcount   = 2
            }, {
                level    = 16,
                name     = "Oak wall decoration",
                alt      = "Oak decoration",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 17,
                name     = "Firepit with pot",
                xp       = 80,
                material = {3, "Steel bar", 2, "Soft clay"},
                mcount   = 2
            }, {
                level    = 18,
                name     = "Curtains",
                xp       = 225,
                material = {3, "Oak plank", 3, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 18.1,
                name     = "Asgarnian ale (barrel)",
                alt      = "Asgarnian ale (barrel) icon",
                title    = "Asgarnian ale barrel",
                xp       = 184,
                material = {3, "Oak plank", 8, "Asgarnian ale"},
                mcount   = 2
            }, {
                level    = 19,
                name     = "Oak chair",
                alt      = "Oak chair icon",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 20,
                name     = "Wooden bed",
                alt      = "Wooden bed icon",
                xp       = 117,
                material = {3, "Plank", 3, "Iron nails", 2, "Bolt of cloth"},
                mcount   = 3
            }, {
                level    = 21,
                name     = "Shaving stand",
                alt      = "Shaving stand icon",
                title    = "Wooden shaving stand",
                xp       = 30,
                material = {1, "Plank", 1, "Iron nails", 1, "Molten glass"},
                mcount   = 3
            }, {
                level    = 22,
                name     = "Oak bench",
                alt      = "Oak bench icon",
                title    = "Oak dining bench",
                xp       = 240,
                material = {4, "Oak plank"}
            }, {
                level    = 22.1,
                name     = "Oak dining table",
                alt      = "Oak dining table icon",
                xp       = 240,
                material = {4, "Oak plank"}
            }, {
                level    = 24,
                name     = "Small oven",
                xp       = 80,
                material = {4, "Steel bar"}
            }, {
                level    = 25,
                name     = "Oak clock",
                alt      = "Oak clock icon",
                xp       = 142,
                material = {2, "Oak plank", 1, "Clockwork"},
                mcount   = 2
            }, {
                level    = 26,
                name     = "Rope bell-pull",
                alt      = "Rope bell-pull",
                title    = "Rope bell pull",
                xp       = 64,
                material = {1, "Oak plank", 1, "Rope"},
                mcount   = 2
            }, {
                level    = 26.1,
                name     = "Oak armchair",
                alt      = "Oak armchair icon",
                xp       = 180,
                material = {3, "Oak plank"}
            }, {
                level    = 26.2,
                name     = "Greenman's ale (barrel)",
                alt      = "Greenman's ale (barrel) icon",
                title    = "Greenman's ale barrel",
                xp       = 184,
                material = {3, "Oak plank", 8, "Greenman's ale"},
                mcount   = 2
            }, {
                level     = 28,
                name      = "Basic decorative armour stand",
                alt       = "Basic decorative armour stand icon",
                title     = "Basic decorative armour stand (Suit of armour)",
                xp        = 135,
                material  = {2, "Oak plank", 1, "Basic decorative platebody", 1, "Basic decorative shield", 1, "Basic decorative helm"},
            }, {
                level     = 28.01,
                name      = "Detailed decorative armour stand",
                alt       = "Detailed-decorative-armour-stand-icon",
                title     = "Detailed decorative armour stand (Suit of armour)",
                xp        = 135.01,
                material  = {2, "Oak plank", 1, "Detailed decorative platebody", 1, "Detailed decorative shield", 1, "Detailed decorative helm"},
            }, {
                level     = 28.02,
                name      = "Intricate decorative armour stand",
                alt       = "Intricate-decorative-armour-stand-icon",
                title     = "Intricate decorative armour stand (Suit of armour)",
                xp        = 135.02,
                material  = {2, "Oak plank", 1, "Intricate decorative platebody", 1, "Intricate decorative shield", 1, "Intricate decorative helm"},
            }, {
                level    = 28.03,
                name     = "Profound decorative armour stand",
                alt      = "Profound-decorative-armour-stand-icon",
                title    = "Profound decorative armour stand (Suit of armour)",
                xp       = 135.03,
                material  = {2, "Oak plank", 1, "Profound decorative platebody", 1, "Profound decorative shield", 1, "Profound decorative helm"},
            }, {
                level    = 28.04,
                name     = "Mithril armour stand",
                alt      = "Mith armour stand",
                title    = "Mithril armour stand (Suit of armour)",
                xp       = 135.04,
                material = {2, "Oak plank", 1, "Mithril platebody", 1, "Mithril plateskirt", 1, "Mithril full helm"},
                mcount   = 4
            }, {
                level    = 28.05,
                name     = "Adamant armour stand",
                alt      = "Adamant armour stand icon",
                title    = "Adamant armour stand (Suit of armour)",
                xp       = 135.05,
                material = {2, "Oak plank", 1, "Adamant platebody", 1, "Adamant plateskirt", 1, "Adamant full helm"},
                mcount   = 4
            }, {
                level    = 28.06,
                name     = "Rune armour stand",
                alt      = "Rune armour stand",
                title    = "Rune armour stand (Suit of armour)",
                xp       = 135.06,
                material = {2, "Oak plank", 1, "Rune platebody", 1, "Rune plateskirt", 1, "Rune full helm"},
                mcount   = 4
            }, {
                level    = 29,
                name     = "Large oven",
                xp       = 100,
                material = {5, "Steel bar"}
            }, {
                level    = 29.1,
                name     = "Oak shaving stand",
                alt      = "Oak shaving stand icon",
                xp       = 61,
                material = {1, "Oak plank", 1, "Molten glass"},
                mcount   = 2
            }, {
                level    = 30,
                name     = "Oak bed",
                alt      = "Oak bed icon",
                xp       = 210,
                material = {3, "Oak plank", 2, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 31,
                name     = "Carved oak table",
                alt      = "Carved oak table icon",
                title    = "Carved oak dining table",
                xp       = 360,
                material = {6, "Oak plank"}
            }, {
                level    = 31.1,
                name     = "Carved oak bench",
                alt      = "Carved oak bench icon",
                title    = "Carved oak dining bench",
                xp       = 240,
                material = {4, "Oak plank"}
            }, {
                level    = 32,
                name     = "Oak kitchen table",
                alt      = "Oak kitchen table icon",
                xp       = 180,
                material = {3, "Oak plank"}
            }, {
                level    = 33,
                name     = "Stone fireplace",
                xp       = 40,
                material = {2, "Limestone brick"}
            }, {
                level    = 33.1,
                name     = "Oak larder",
                xp       = 480,
                material = {8, "Oak plank"}
            }, {
                level    = 34,
                name     = "Large oak bed",
                alt      = "Large oak bed icon",
                xp       = 330,
                material = {5, "Oak plank", 2, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 34.1,
                name     = "Steel range",
                xp       = 120,
                material = {6, "Steel bar"}
            }, {
                level    = 35,
                name     = "Teak armchair",
                alt      = "Teak armchair icon",
                xp       = 180,
                material = {2, "Teak plank"}
            }, {
                level    = 36,
                name     = "Teak wall decoration",
                alt      = "Teak decoration",
                xp       = 180,
                material = {2, "Teak plank"}
            }, {
                level    = 36.1,
                name     = "Dragon bitter (barrel)",
                alt      = "Dragon bitter (barrel) icon",
                title    = "Dragon bitter barrel",
                xp       = 224,
                material = {3, "Oak plank", 2, "Steel bar", 8, "Dragon bitter"},
                mcount   = 3
            }, {
                level    = 37,
                name     = "Oak pet feeder",
                xp       = 240,
                material = {4, "Oak plank"}
            }, {
                level    = 37.1,
                name     = "Bell-pull",
                alt      = "Bell-pull icon",
                title    = "Teak bell pull",
                xp       = 120,
                material = {1, "Teak plank"}
            }, {
                level    = 38,
                name     = "Teak table",
                alt      = "Teak table icon",
                title    = "Teak dining table",
                xp       = 360,
                material = {4, "Teak plank"}
            }, {
                level    = 38.1,
                name     = "Teak dining bench",
                alt      = "teak dining bench icon",
                xp       = 360,
                material = {4, "Teak plank"}
            }, {
                level    = 40,
                name     = "Teak bed",
                alt      = "Teak bed icon",
                xp       = 300,
                material = {3, "Teak plank", 2, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 40.1,
                name     = "Opulent curtains",
                xp       = 315,
                material = {3, "Teak plank", 3, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 42,
                name     = "Fancy range",
                xp       = 160,
                material = {8, "Steel bar"}
            }, {
                level    = 43,
                name     = "Teak larder",
                xp       = 720,
                material = {8, "Teak plank", 2, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 43.1,
                name     = "Alchemical chart",
                alt      = "Alchemical chart icon",
                xp       = 720,
                material = {2, "Bolt of cloth"}
            }, {
                level    = 44,
                name     = "Carved teak bench",
                alt      = "Carved teak bench icon",
                title    = "Carved teak dining bench",
                xp       = 360,
                material = {4, "Teak plank"}
            }, {
                level    = 44.1,
                name     = "Wooden telescope",
                xp       = 121,
                material = {2, "Oak plank", 1, "Molten glass"},
                mcount   = 2
            }, {
                level    = 45,
                name     = "Large teak bed",
                alt      = "Large teak bed icon",
                xp       = 480,
                material = {5, "Teak plank", 2, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 45.1,
                name     = "Oak altar",
                xp       = 240,
                material = {4, "Oak plank"}
            }, {
                level    = 45.2,
                name     = "Carved teak table",
                alt      = "Carved teak table icon",
                title    = "Carved teak dining table",
                xp       = 600,
                material = {6, "Teak plank", 4, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 45.3,
                name     = "Steel torches",
                xp       = 80,
                material = {2, "Steel bar"}
            }, {
                level    = 47,
                name     = "Sink",
                xp       = 300,
                material = {15, "Steel bar"}
            }, {
                level    = 48,
                name     = "Chef's delight (barrel)",
                alt      = "Chef's delight (barrel) icon",
                title    = "Chef's Delight barrel",
                xp       = 224,
                material = {3, "Oak plank", 2, "Steel bar", 8, "Chef's delight"},
                mcount   = 3
            }, {
                level    = 48.1,
                name     = "Saradomin symbol",
                alt      = "Saradomin symbol (construction)",
                title    = "Symbol of Saradomin",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 48.2,
                name     = "Guthix symbol",
                alt      = "Guthix symbol (construction)",
                title    = "Symbol of Guthix",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 48.3,
                name     = "Zamorak symbol",
                alt      = "Zamorak symbol (construction)",
                title    = "Symbol of Zamorak",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 49,
                name     = "Wooden torches",
                xp       = 58,
                material = {2, "Plank", 2, "Iron nails"},
                mcount   = 2
            }, {
                level    = 49.1,
                name     = "Windchimes",
                alt      = "Windchimes",
                title    = "Chapel windchimes",
                xp       = 323,
                material = {4, "Oak plank", 4, "Steel bar", 4, "Iron nails"},
                mcount   = 3
            }, {
                level    = 49.2,
                name     = "Small statue",
                alt      = "Small statue",
                title    = "Small chapel statue",
                xp       = 40,
                material = {2, "Limestone brick"}
            }, {
                level    = 50,
                name     = "Mahogany armchair",
                alt      = "Mahogany armchair icon",
                xp       = 280,
                material = {2, "Mahogany plank"}
            }, {
                level    = 50.1,
                name     = "Teak altar",
                xp       = 360,
                material = {4, "Teak plank"}
            }, {
                level    = 50.2,
                name     = "Teak portal",
                alt      = "Teak portal",
                title    = "Teak portal frame",
                xp       = 270,
                material = {3, "Teak plank"}
            }, {
                level    = 52,
                name     = "Mahogany table",
                alt      = "Mahogany table icon",
                title    = "Mahogany dining table",
                xp       = 840,
                material = {6, "Mahogany plank"}
            }, {
                level    = 52.1,
                name     = "Mahogany bench",
                alt      = "Mahogany bench icon",
                title    = "Mahogany dining bench",
                xp       = 560,
                material = {4, "Mahogany plank"}
            }, {
                level    = 52.2,
                name     = "Teak pet feeder",
                xp       = 380,
                material = {4, "Teak plank"}
            }, {
                level    = 52.3,
                name     = "Teak kitchen table",
                alt      = "Teak kitchen table icon",
                xp       = 270,
                material = {3, "Teak plank"}
            }, {
                level    = 53,
                name     = "Steel candlesticks",
                xp       = 124,
                material = {6, "Steel bar", 6, "Candle"},
                mcount   = 2
            }, {
                level    = 53.1,
                name     = "4-poster",
                alt      = "4-poster icon",
                title    = "Mahogany four-poster bed",
                xp       = 450,
                material = {3, "Mahogany plank", 2, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 55,
                name     = "Teak clock",
                alt      = "Teak clock icon",
                xp       = 202,
                material = {2, "Teak plank", 1, "Clockwork"},
                mcount   = 2
            } , {
                level    = 56,
                name     = "Cloth altar",
                alt      = "Cloth altar",
                title    = "Cloth-covered teak altar",
                xp       = 390,
                material = {4, "Teak plank", 2, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 57,
                name     = "Gold candlesticks",
                xp       = 46,
                material = {6, "Gold bar", 6, "Candle"},
                mcount   = 2
            }, {
                level    = 58,
                name     = "Chapel bells",
                alt      = "Bells icon",
                xp       = 480,
                material = {4, "Teak plank", 6, "Steel bar"},
                mcount   = 2
            }, {
                level    = 59,
                name     = "Zamorak icon",
                alt      = "Zamorak icon",
                title    = "Icon of Zamorak",
                xp       = 960,
                material = {4, "Teak plank", 2, "Gold leaf"},
                mcount   = 2
            }, {
                level    = 59.1,
                name     = "Saradomin icon",
                alt      = "Saradomin icon",
                title    = "Icon of Saradomin",
                xp       = 960,
                material = {4, "Teak plank", 2, "Gold leaf"},
                mcount   = 2
            }, {
                level    = 59.2,
                name     = "Guthix icon",
                alt      = "Guthix icon",
                title    = "Icon of Guthix",
                xp       = 960,
                material = {4, "Teak plank", 2, "Gold leaf"},
                mcount   = 2
            }, {
                level    = 60,
                name     = "Oak throne",
                alt      = "Oak Throne",
                xp       = 800,
                material = {5, "Oak plank", 1, "Marble block"},
                mcount   = 2
            }, {
                level    = 60.1,
                name     = "Posh bell-pull",
                alt      = "Posh bell-pull",
                title    = "Gilded teak bell pull",
                xp       = 420,
                material = {1, "Teak plank", 1, "Gold leaf", 2, "Bolt of cloth"},
                mcount   = 3
            }, {
                level    = 60.2,
                name     = "Gilded 4-poster",
                alt      = "Gilded 4-poster icon",
                title    = "Gilded mahogan four-poster bed",
                xp       = 1330,
                material = {5, "Mahogany plank", 2, "Gold leaf", 2, "Bolt of cloth"},
                mcount   = 3
            }, {
                level    = 60.3,
                name     = "Mahogany altar",
                alt      = "Mahogany altar",
                title    = "Cloth-covered mahogany altar",
                xp       = 590,
                material = {4, "Mahogany plank", 2, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 61,
                name     = "Oak incense burners",
                alt      = "Incense burners",
                xp       = 280,
                material = {4, "Oak plank", 2, "Steel bar"},
                mcount   = 2
            }, {
                level    = 61.1,
                name     = "Gilded bench",
                alt      = "Gilded bench icon",
                title    = "Gilded mahogany dining bench",
                xp       = 1760,
                material = {4, "Mahogany plank", 4, "Gold leaf"},
                mcount   = 2
            }, {
                level    = 63,
                name     = "Astronomical chart",
                alt      = "Astronomical chart icon",
                xp       = 45,
                material = {3, "Bolt of cloth"}
            }, {
                level    = 63.1,
                name     = "Marble fireplace",
                xp       = 500,
                material = {1, "Marble block"}
            }, {
                level    = 64,
                name     = "Limestone altar",
                xp       = 910,
                material = {6, "Mahogany plank", 2, "Bolt of cloth", 2, "Limestone brick"},
                mcount   = 3
            }, {
                level    = 64.1,
                name     = "Teak telescope",
                xp       = 181,
                material = {2, "Teak plank", 1, "Molten glass"},
                mcount   = 2
            }, {
                level    = 65,
                name     = "Mahogany incense burners",
                alt      = "Mahogany burners",
                xp       = 600,
                material = {4, "Mahogany plank", 2, "Steel bar"},
                mcount   = 2
            }, {
                level    = 65.1,
                name     = "Mahogany portal",
                alt      = "Mahogany portal",
                title    = "Mahogany portal frame",
                xp       = 420,
                material = {3, "Mahogany plank"}
            }, {
                level    = 65.2,
                name     = "Opulent rug",
                xp       = 360,
                material = {1, "Gold leaf", 4, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 66,
                name     = "Round shield",
                alt      = "Round shield",
                title    = "Round wall-mounted shield",
                xp       = 120,
                material = {2, "Oak plank"}
            }, {
                level    = 67,
                name     = "Mahogany pet feeder",
                xp       = 880,
                material = {4, "Mahogany plank", 1, "Gold leaf"},
                mcount   = 2
            }, {
                level    = 67.1,
                name     = "Teak throne",
                xp       = 1450,
                material = {5, "Teak plank", 2, "Marble block"},
                mcount   = 2
            }, {
                level    = 68,
                name     = "Oak lever",
                xp       = 300,
                material = {5, "Oak plank"}
            }, {
                level    = 68.1,
                name     = "Oak trapdoor",
                xp       = 300,
                material = {5, "Oak plank"}
            }, {
                level    = 69,
                name     = "Organ",
                alt      = "Organ",
                title    = "Chapel organ",
                xp       = 680,
                material = {4, "Mahogany plank", 6, "Steel bar"},
                mcount   = 2
            }, {
                level    = 69.1,
                name     = "Marble incense burners",
                alt      = "Marble burners",
                title    = "Marble incense burner",
                xp       = 1040,
                material = {2, "Marble block", 2, "Steel bar"},
                mcount   = 2
            }, {
                level    = 69.2,
                name     = "Medium statue",
                alt      = "Medium statue",
                title    = "Medium chapel statue",
                xp       = 500,
                material = {1, "Marble block"}
            }, {
                level    = 70,
                name     = "Marble altar",
                xp       = 1030,
                material = {2, "Marble block", 2, "Bolt of cloth"},
                mcount   = 2
            }, {
                level    = 71,
                name     = "Icon of Bob",
                alt      = "Bob icon",
                title    = "Icon of Bob the Cat",
                xp       = 1160,
                material = {4, "Mahogany plank", 2, "Gold leaf"},
                mcount   = 2
            }, {
                level    = 72,
                name     = "Opulent table",
                alt      = "Opulent table icon",
                title    = "Gilded mahogany and marble table",
                xp       = 3100,
                material = {6, "Mahogany plank", 4, "Bolt of cloth", 4, "Gold leaf", 2, "Marble block"},
                mcount   = 4
            }, {
                level    = 74,
                name     = "Mahogany throne",
                xp       = 2200,
                material = {5, "Mahogany plank", 3, "Marble block"},
                mcount   = 2
            }, {
                level    = 75,
                name     = "Gilded altar",
                alt      = "Gilded altar",
                title    = "Gilded marble altar",
                xp       = 2230,
                material = {2, "Marble block", 2, "Bolt of cloth", 4, "Gold leaf"},
                mcount   = 3
            }, {
                level    = 76,
                name     = "Square shield (Construction)",
                alt      = "Square shield",
                title    = "Square wall-mounted shield",
                xp       = 360,
                material = {4, "Teak plank"}
            }, {
                level    = 77,
                name     = "Armillary sphere",
                alt      = "Armillary sphere icon",
                xp       = 960,
                material = {2, "Mahogany plank", 2, "Gold leaf", 4, "Steel bar"},
                mcount   = 3
            }, {
                level    = 78,
                name     = "Teak lever",
                xp       = 450,
                material = {5, "Teak plank"}
            }, {
                level    = 78.1,
                name     = "Teak trapdoor",
                xp       = 450,
                material = {5, "Teak plank"}
            }, {
                level    = 80,
                name     = "Marble portal",
                alt      = "Marble portal",
                title    = "Marble portal frame",
                xp       = 1500,
                material = {3, "Marble block"}
            }, {
                level    = 81,
                name     = "Gilded throne",
                alt      = "Gilded throne",
                title    = "Gilded mahogany throne",
                xp       = 1700,
                material = {5, "Mahogany plank", 2, "Marble block", 3, "Gold leaf"},
                mcount   = 3
            }, {
                level    = 83,
                name     = "Infernal chart",
                xp       = 60,
                material = {4, "Bolt of cloth"}
            }, {
                level    = 84,
                name     = "Mahogany telescope",
                alt      = "Mahogany telescope",
                title    = "Mahogany 'scope",
                xp       = 281,
                material = {2, "Mahogany plank", 1, "Molten glass"},
                mcount   = 2
            }, {
                level    = 85,
                name     = "Gilded clock",
                alt      = "Gilded clock icon",
                name     = "Gilded mahogany clock",
                xp       = 602,
                material = {1, "Clockwork", 1, "Gold leaf"},
                mcount   = 2
            }, {
                level    = 86,
                name     = "Small orrery",
                xp       = 1320,
                material = {3, "Mahogany plank", 3, "Gold leaf"},
                mcount   = 2
            }, {
                level     = 88,
                name      = "Skeleton throne",
                xp        = 7003,
                material  = {5, "Magic stone", 4, "Marble block", 5, "Bones"},
                material2 = {2, "Skull"},
                mcount    = 3
            }, {
                level    = 88.1,
                name     = "Mahogany lever",
                xp       = 700,
                material = {5, "Mahogany plank"}
            }, {
                level    = 88.2,
                name     = "Mahogany trapdoor",
                xp       = 700,
                material = {5, "Mahogany plank"}
            }, {
                level    = 89,
                name     = "Large statue",
                alt      = "Large statue",
                title    = "Large chapel statue",
                xp       = 1500,
                material = {3, "Marble block"}
            }, {
                level    = 95,
                name     = "Large orrery",
                xp       = 1420,
                material = {3, "Mahogany plank", 5, "Gold leaf"},
                mcount   = 2
            }, {
                level    = 95.1,
                name     = "Crystal throne",
                xp       = 15000,
                material = {15, "Magic stone"}
            }, {
                level    = 99,
                name     = "Demonic throne",
                alt      = "Demonic throne icon",
                xp       = 25000,
                material = {25, "Magic stone"}
            }
        }
        return methods
    end

    if trainMethod == "Storage" then
        local methods = 
        {
            {
                level    = 4,
                name     = "Wooden bookcase",
                alt      = "Wooden bookcase icon",
                xp       = 126,
                material = {4, "Plank", 4, "Iron nails"},
                room     = "Parlour"
            }, {
                level    = 20,
                name     = "Shoe box",
                alt      = "Shoe box icon",
                xp       = 58,
                material = {2, "Plank", 2, "Iron nails"},
                room     = "Bedroom"
            }, {
                level    = 27,
                name     = "Oak drawers",
                alt      = "Oak drawers icon",
                title    = "Oak chest of drawers",
                xp       = 120,
                material = {2, "Oak plank"},
                room     = "Bedroom"
            }, {
                level    = 29,
                name     = "Oak bookcase",
                alt      = "Oak bookcase icon",
                xp       = 180,
                material = {3, "Oak plank"},
                room     = "Parlour"
            }, {
                level    = 34,
                name     = "Oak prize chest",
                xp       = 240,
                material = {4, "Oak plank"},
                room     = "Games Room"
            }, {
                level    = 37,
                name     = "Oak dresser",
                alt      = "Oak dresser icon",
                xp       = 121,
                material = {2, "Oak plank",  1, "Molten glass"},
                room     = "Bedroom"
            }, {
                level    = 37.1,
                name     = "Oak pet house",
                xp       = 240,
                material = {4, "Oak plank"},
                room     = "Menagerie"
            }, {
                level    = 39,
                name     = "Oak wardrobe",
                alt      = "Oak wardrobe icon",
                title    = "Oak wardrobe (bedroom)",
                xp       = 180,
                material = {3, "Oak plank"},
                room     = "Bedroom"
            }, {
                level    = 40,
                name     = "Mahogany bookcase",
                xp       = 420,
                material = {3, "Mahogany plank"},
                room     = "Parlour"
            }, {
                level    = 42,
                name     = "Oak magic wardrobe",
                alt      = "Oak magic wardrobe icon",
                title    = "Oak wardrobe",
                xp       = 240,
                material = {4, "Oak plank"},
                room     = "Costume Room"
            }, {
                level    = 44,
                name     = "Oak fancy dress box",
                alt      = "Oak fancy dress box icon",
                title    = "Oak costume box",
                xp       = 120,
                material = {2, "Oak plank"},
                room     = "Costume Room"
            }, {
                level    = 44.1,
                name     = "Teak prize chest",
                xp       = 660,
                material = {4, "Teak plank", 1, "Gold leaf"},
                room     = "Games Room"
            }, {
                level    = 46,
                name     = "Teak dresser",
                alt      = "Teak dresser icon",
                xp       = 181,
                material = {2, "Teak plank", 1, "Molten glass"},
                room     = "Bedroom"
            }, {
                level    = 46.1,
                name     = "Oak armour case",
                alt      = "Oak armour case icon",
                xp       = 180,
                material = {3, "Oak plank"},
                room     = "Costume Room"
            }, {
                level    = 48,
                name     = "Oak treasure chest",
                alt      = "Oak treasure chest icon",
                xp       = 120,
                material = {2, "Oak plank"},
                room     = "Costume Room"
            }, {
                level    = 50,
                name     = "Oak toy box",
                alt      = "Oak toy box icon",
                xp       = 120,
                material = {2, "Oak plank"},
                room     = "Costume Room"
            }, {
                level    = 51,
                name     = "Teak drawers",
                alt      = "Teak drawers icon",
                title    = "Teak chest of drawers",
                xp       = 180,
                material = {2, "Teak plank"},
                room     = "Bedroom"
            }, {
                level    = 51.1,
                name     = "Carved oak magic wardrobe",
                alt      = "Carved oak magic wardrobe icon",
                title    = "Carved oak wardrobe",
                xp       = 360,
                material = {6, "Oak plank"},
                room     = "Costume Room"
            }, {
                level    = 52,
                name     = "Teak pet house",
                xp       = 380,
                material = {4, "Teak plank"},
                room     = "Menagerie"
            }, {
                level    = 54,
                name     = "Oak cape rack",
                alt      = "Oak cape rack icon",
                xp       = 240,
                material = {4, "Oak plank"},
                room     = "Costume Room"
            }, {
                level    = 54.1,
                name     = "Mahogany prize chest",
                alt      = "Mahogany chest",
                xp       = 860,
                material = {4, "Mahogany plank", 1, "Gold leaf"},
                room     = "Games Room"
            }, {
                level    = 56,
                name     = "Fancy teak dresser",
                alt      = "Fancy teak dresser icon",
                xp       = 182,
                material = {2, "Teak plank", 2, "Molten glass"},
                room     = "Bedroom"
            }, {
                level    = 60,
                name     = "Teak magic wardrobe",
                alt      = "Teak magic wardrobe icon",
                title    = "Teak wardrobe",
                xp       = 360,
                material = {4, "Teak plank"},
                room     = "Costume Room"
            }, {
                level    = 62,
                name     = "Teak fancy dress box",
                alt      = "Teak fancy dress box icon",
                xp       = 180,
                material = {2, "Teak plank"},
                room     = "Costume Room"
            }, {
                level    = 63,
                name     = "Teak cape rack",
                alt      = "Teak cape rack icon",
                xp       = 360,
                material = {4, "Teak plank"},
                room     = "Costume Room"
            }, {
                level    = 63.1,
                name     = "Teak wardrobe",
                alt      = "Teak wardrobe icon",
                title    = "Teak wardrobe (bedroom)",
                xp       = 270,
                material = {3, "Teak plank"},
                room     = "Bedroom"
            }, {
                level    = 64,
                name     = "Mahogany dresser",
                alt      = "Mahogany dresser icon",
                xp       = 281,
                material = {2, "Mahogany plank",  1, "Molten glass"},
                room     = "Bedroom"
            }, {
                level    = 64.1,
                name     = "Teak armour case",
                alt      = "Teak armour case icon",
                xp       = 270,
                material = {3, "Teak plank"},
                room     = "Costume Room"
            }, {
                level    = 66,
                name     = "Teak treasure chest",
                xp       = 180,
                material = {2, "Teak plank"},
                room     = "Costume Room"
            }, {
                level    = 67,
                name     = "Mahogany pet house",
                xp       = 580,
                material = {4, "Mahogany plank"},
                room     = "Menagerie"
            }, {
                level    = 68,
                name     = "Teak toy box",
                alt      = "Teak toy box icon",
                xp       = 180,
                material = {2, "Teak plank"},
                room     = "Costume Room"
            }, {
                level    = 69,
                name     = "Carved teak magic wardrobe",
                alt      = "Carved teak magic wardrobe icon",
                title    = "Carved teak wardrobe",
                xp       = 540,
                material = {6, "Teak plank"},
                room     = "Costume Room"
            }, {
                level    = 72,
                name     = "Mahogany cape rack",
                alt      = "Mahogany cape rack icon",
                xp       = 560,
                material = {4, "Mahogany plank"},
                room     = "Costume Room"
            }, {
                level    = 74,
                name     = "Gilded dresser",
                alt      = "Gilded dresser icon",
                title    = "Gilded mahogany dresser",
                xp       = 582,
                material = {2, "Mahogany plank", 2, "Molten glass", 1, "Gold leaf"},
                room     = "Bedroom"
            }, {
                level    = 75,
                name     = "Mahogany wardrobe",
                alt      = "Mahogany wardrobe icon",
                title    = "Mahogany wardrobe (bedroom)",
                xp       = 420,
                material = {3, "Mahogany plank"},
                room     = "Bedroom"
            }, {
                level    = 78,
                name     = "Mahogany magic wardrobe",
                alt      = "Mahogany magic wardrobe icon",
                title    = "Mahogany wardrobe",
                xp       = 560,
                material = {4, "Mahogany plank"},
                room     = "Costume Room"
            }, {
                level    = 79,
                name     = "Oak chest",
                alt      = "Oak prize chest",
                title    = "Oak dungeon treasure chest",
                xp       = 340,
                material = {5, "Oak plank", 2, "Steel bar"},
                room     = "Treasure Room"
            }, {
                level    = 80,
                name     = "Mahogany fancy dress box",
                alt      = "Mahogany fancy dress box icon",
                xp       = 280,
                material = {2, "Mahogany plank"},
                room     = "Costume Room"
            }, {
                level    = 81,
                name     = "Gilded cape rack",
                alt      = "Gilded cape rack icon",
                title    = "Gilded mahogany cape rack",
                xp       = 860,
                material = {4, "Mahogany plank", 1, "Gold leaf"},
                room     = "Costume Room"
            }, {
                level    = 82,
                name     = "Mahogany armour case",
                xp       = 420,
                material = {3, "Mahogany plank"},
                room     = "Costume Room"
            }, {
                level    = 83,
                name     = "Teak chest",
                alt      = "Teak prize chest",
                title    = "Teak dungeon treasure chest",
                xp       = 530,
                material = {5, "Teak plank", 4, "Steel bar"},
                room     = "Treasure Room"
            }, {
                level    = 84,
                name     = "Mahogany treasure chest",
                xp       = 280,
                material = {2, "Mahogany plank"},
                room     = "Costume Room"
            }, {
                level    = 86,
                name     = "Mahogany toy box",
                alt      = "Mahogany toy box icon",
                xp       = 280,
                material = {2, "Mahogany plank"},
                room     = "Costume Room"
            }, {
                level    = 87,
                name     = "Gilded wardrobe",
                alt      = "Gilded wardrobe icon",
                title    = "Gilded mahogany wardrobe (bedroom)",
                xp       = 720,
                material = {3, "Mahogany plank", 1, "Gold leaf"},
                room     = "Bedroom"
            }, {
                level    = 87.1,
                name     = "Gilded magic wardrobe",
                alt      = "Gilded magic wardrobe icon",
                title    = "Gilded mahogany wardrobe",
                xp       = 860,
                material = {4, "Mahogany plank", 1, "Gold leaf"},
                room     = "Costume Room"
            }, {
                level    = 87.2,
                name     = "Mahogany chest",
                alt      = "Mahogany chest",
                title    = "Mahogany dungeon treasure chest",
                xp       = 1000,
                material = {5, "Mahogany plank", 1, "Gold leaf"},
                room     = "Treasure Room"
            }, {
                level    = 90,
                name     = "Marble cape rack",
                alt      = "Marble cape rack icon",
                xp       = 500,
                material = {1, "Marble block"},
                room     = "Costume Room"
            }, {
                level    = 91,
                name     = "Magic chest",
                alt      = "Magic Chest",
                title    = "Magic dungeon treasure chest",
                xp       = 1000,
                material = {1, "Magic stone"},
                room     = "Treasure Room"
            }, {
                level    = 92,
                name     = "Consecrated pet house",
                xp       = 1580,
                material = {4, "Mahogany plank", 1, "Magic stone"},
                room     = "Menagerie"
            }, {
                level    = 92.1,
                name     = "Desecrated pet house",
                xp       = 1580,
                material = {4, "Mahogany plank", 1, "Magic stone"},
                room     = "Menagerie"
            }, {
                level    = 92.2,
                name     = "Natural pet house",
                xp       = 1580,
                material = {4, "Mahogany plank", 1, "Magic stone"},
                room     = "Menagerie"
            }, {
                level    = 96,
                name     = "Marble magic wardrobe",
                alt      = "Marble magic wardrobe icon",
                title    = "Marble wardrobe",
                xp       = 500,
                material = {1, "Marble block"},
                room     = "Costume Room"
            }, {
                level    = 99,
                name     = "Magical cape rack",
                alt      = "Magical cape rack icon",
                title    = "Magic stone cape rack",
                xp       = 1000,
                material = {1, "Magic stone"},
                room     = "Costume Room"
            }
        }
        return methods
    end
end