Zelda Wiki

Want to contribute to this wiki?
Sign up for an account, and get started!

Come join the Zelda Wiki community Discord server!

READ MORE

Zelda Wiki
Advertisement

For information on editing module data in general, see Guidelines:Modules/Data.

DataSchema

The data on this page is used to generate the item nav templates listed below. While editing the data, use the Preview page with this form to view the navs individually.

To view all item navs at once, see Module:Items/All. Note that loading this many navs will take several seconds. (This is why a global nav with all the games no longer exists — it adds too much loading time.)
[Data]
A map of game codes to one or more image-based navs for that game. If there is more than one nav in a game, these are displayed as tabs. An additional colums key can be used to indicate how many tabs to render per row.
<string>
tab
Tab label. Displayed only when game has more than one tab.
[tabCaption]
Tooltip to be displayed for the tab.
Image MapsRowsSubtabs
Generates image maps of items that mimic in-game inventory.
map
image
Base file name for the image map.
[maxWidth]
Maximum width in pixels for the responsive image.
areas
The clickable areas of the image map.
area
The shape and coordinates of the area. For example: rect 314 84 372 123
page
The name of the page to link to.
[display="page"]
The alt text for the link.
[upgrades]
Represents upgraded inventory states, where each state is rendered as its own imagemap that is clicked to with "upgrade" and "downgrade" arrows.

This is used in cases such as Template:OoA Items, when different inventory items occupy the same inventory slot at different points in the game. In these cases, the goal should be to represent all the items in as few "upgrade" states as possible, even if this means some items appearing together that never would in-game. It's not feasible to represent every possible inventory state as this A) detracts from the actual purpose of navigation, and B) generates too many image maps affecting page size and loading time.

image
File name for the upgrade state image map.
[changes]
Used to model state transitions for items that occupy the same inventory slot. By default, the "upgrade state" image map has all the same areas as the previous state. Use this property to modify which page an area links to, without having to repeat coordinates for it. This property can also be used to 'unset' areas which are no longer applicable.
<string>
stringrecord
The new page that an area must link to. If set to empty string (""), the area will be unset.
Override other properties of an area, namely its coordinates.
[area]
[page]
[display]
[areas]
A list of new areas that are applicable to the upgrade state and its successors.
[leftColumn]
Designed specifically for Template:LADX Items.
Icons or sprites of items displayed in one or more rows. Used for items that do not appear in inventory screens.
rows
fileType
[scale=1]
[fileSize]
[spacing="8px"]
Horizontal space between each image in the row.
[rowSpacing="8px"]
Space between rows, if there are more than one.
[maxWidth]
Maximum width in pixels for the rows. If unset, the rows will use up all available page width.
items
An array of strings representing an image row. Or, an array of rows if there are multiple rows. The thumbnail for each file in the row is generated as follows (not taking into account the size, which is computed automatically): [[File:<game> <item> <fileType>.png|link=<item>]]
{ string|record }{ { string|record } }
image
Custom filename
page
Wiki article to link to.
image
Custom filename
page
Wiki article to link to.
A nav can have one or more "subnavs". These usually map to in-game submenus. For example, see Template:TWW Items, "Bag Items" tab.
subtabs
[maxFrameWidth=750]
If the nav is 'framed' in a wikitable, this determines the max width of the wikitable.
[tabColumns]
Corresponds to the paramter on Module:UtilsLayout#tabs. Determines the number of tabs per row.

Guidelines[]

The goals for item navs are:

  • Providing navigation to as many game items as possible,
  • using in-game representations whenever possible,
  • but keeping the navigation as simple as possible.

It's also important for the navs to not add too much loading time to pages, as they are non-essential content.

maps and rows[]

Each game can have several tabs, each containing one of two types of navigation:

  • The map type uses image maps to emulate in-game inventory menus.
  • The rows type displays simple rows of item images.

A map-type navigation may have several "upgrade" states to represent different items that occupy the same slot in the inventory. Users can navigate between these states using the up and down arrows next to the image map. Each upgrade state is actually its own image map.

The rows is used for items which are not represented in inventory, or are too numerous to a slot.

Slotting[]

For maps, every item should be positioned as it is in-game. If two items occupy the same slot, add an "upgrade" image for all the items that are the second to appear in their given slot. Add a third for items to appear third in their slot, etc. Do so regardless of whether these items actually appear alongside each other in-game. Note for example that the Template:MM Items "Quest Status" tab shows the Hero's Shield alongside Twinmold's Remains, which is technically impossible. This is intentional — to do otherwise would overcomplicate the navigation. The goal of the templates is to provide navigation, not to represent every possible in-game menu state.

If a single slot holds many more items than the others, then use rows for those items instead. See for example Template:OoS Items — rather than add 13 upgrade states to the Quest Status Screen tab, the trading sequence items were linked in their own tab.

Numbering[]

When it comes to numbering on the menus (Arrow counts, Bomb counts, etc.) there are three options:

  • Show zeroes
  • Show the maximum quantity (which may increase with upgrades)
  • Show no numbers at all

The guidelines for this are not yet well defined. For now contributors are asked to use their best judgement, keeping in mind the goals listed above.

Item Groups[]

Generally, the navs should link to specific items rather than the grouping hypernym. For example, Template:PH Items links to Crimsonine, Aquanine, and Azurine — not Pure Metal.

Sprite Sizing[]

Default sprite sizes are generally much too small for navigation. For this reason, the rows type provides two ways to size the images. For example,

  • scale = 3 scales images to three times their original size
  • fileSize = "48px" sizes all images at 48px

Use fileSize when all the row sprites are the same size. In some cases the sprites themselves can be padded to make it so. See the "Magic Rings" tab on Template:OoS Items, for example.

Use scale sparingly — it adds a lot of loading time when overused.

Reports[]

On each item nav template, a report (example) is generated that displays the state of the nav and gives an overview of its completeness.

Pay special attention to the "Omitted Items" column – these are items that exist in the wiki's category system but not in the nav. These items likely need to be added to the nav. Some items have no particular image to represent them – these are OK to omit.

The "Omitted Items" column may also contain subsections for item groups or common items (appearing in 5+ games). Items in these sections can be ignored. As described above, item groups are less important here than the items themselves. Common items that are not particularly unique to one or a few games are also less important — currently the item navs will not generated on these pages anyway for performance reasons.

"Extra Items" indicates items in the nav that are not in the game's item category. This can be a useful hint for finding item pages that are missing categories. Songs may also appear here.


return {
    TotK = {
        {
            tab = "Inventory",
            rows = {
                fileType = "Icon",
                items = {
                    "Armor",
                    "Weapons",
                    "Shields",
                    "Bow",
                    "Materials",
                    "Food",
                    "Zonai Devices",
                    "Key Item",
                },
            },
        },
        {
            tab = "Abilities",
            rows = {
                fileType = "Icon",
                items = {
                    "Ultrahand",
                    "Fuse",
                    "Ascend",
                    "Recall",
                    "Autobuild",
                    "amiibo",
                    "Map",
                    "Camera",
                },
            },
        },
        {
            tab = "Currency",
            rows = {
                fileType = "Icon",
                items = {
                    "Rupee",
                    "Mon",
                    "Bubbul Gem",
                    "Korok Seed",
                },
            },
        },
        {
            tab = "Special",
            rows = {
                fileType = "Icon",
                items = {
                    "Tulin's Vow",
                    "Yunobo's Vow",
                    "Sidon's Vow",
                    "Riju's Vow",
                    "Mineru's Vow",
                },
            },
        },
        {
            tab = "Other Items",
            rows = {
                fileType = "Icon",
                items = {
                    "Heart Container",
                    "Stamina Vessel",
                    "Zonaite",
                    "Zonai Charge",
                },
            },
        },
    },
    BotW = {
        {
            tab = "Inventory",
            rows = {
                fileType = "Icon",
                items = {
                    "Weapon",
                    "Bow",   
	 			    "Shield",
					"Armor",
					"Material",
					"Food",
					"Key Item",
                },
			},
		},
		{
			tab = "Runes",
			rows = {
				fileType = "Icon",
				items = {
					"Remote Bomb",
					"Magnesis",
					"Stasis",
					"Cryonis",
					"Camera",
					"Master Cycle Zero",
					"amiibo",
				},
			},
		},
		{
			tab = "Other",
			rows = {
				fileType = "Icon",
				items = {
					"Rupee",
					"Heart Container",
					"Stamina Vessel",
                                        "Mon",
                                        "Korok Seed",
				},
			},
		},
                {
                        tab = "Champion Abilities",
                        rows = {
                                fileType = "Icon",
                                items = {
                                        "Revali's Gale",
                                        "Daruk's Protection",
                                        "Mipha's Grace",
                                        "Urbosa's Fury",
                                        "Revali's Gale +",
                                        "Daruk's Protection +",
                                        "Mipha's Grace +",
                                        "Urbosa's Fury +",
                                },
                        },
                },
	},
	TFH = {
		{
			tab = "Items",
			rows = {
				fileType = "Icon",
				fileSize = "64x64px",
				rowSpacing = "16px",
				items = {
					{
						"Bomb",
						"Boomerang",
						"Bow",
						"Fire Gloves",
						"Gripshot",
						"Gust Jar",
						"Magic Hammer",
						"Water Rod"	
					},
					{
						"Camera",
						"Key",
						"Hourglass",
					},
				},
			},
		},
	},
	ALBW = {
		{
			tab = "Items",
			map = {
				image = "File:ALBW Items Nav.png",
				maxWidth = 480,
				areas = {
					{
						area = "rect 10 8 56 52",
						page = "Rented Bomb",
					},
					{
						area = "rect 56 8 102 52",
						page = "Rented Hookshot",
					},
					{
						area = "rect 102 8 148 52",
						page = "Rented Boomerang",
					},
					{
						area = "rect 148 8 194 52",
						page = "Rented Bow",
					},
					{
						area = "rect 194 8 240 52",
						page = "Bow of Light",
					},
					{
						area = "rect 10 52 56 96",
						page = "Rented Fire Rod",
					},
					{
						area = "rect 56 52 102 96",
						page = "Rented Ice Rod",
					},
					{
						area = "rect 102 52 148 96",
						page = "Rented Sand Rod",
					},
					{
						area = "rect 148 52 194 96",
						page = "Rented Tornado Rod",
					},
					{
						area = "rect 194 52 240 96",
						page = "Rented Hammer",
					},
					{
						area = "rect 10 96 56 140",
						page = "Hint Glasses",
					},
					{
						area = "rect 56 96 102 140",
						page = "Net",
					},
					{
						area = "rect 102 96 148 140",
						page = "Lamp",
					},
					{
						area = "rect 148 96 194 140",
						page = "Foul Fruit",
					},
					{
						area = "rect 194 96 240 140",
						page = "Scoot Fruit",
					},
					{
						area = "rect 10 140 240 184",
						page = "Empty Bottle",
					},
				},
				upgrades = {
					{
						image = "File:ALBW Items Nav 2.png",
						changes = {
							["Rented Bomb"] = "Bomb",
							["Rented Hookshot"] = "Hookshot",
							["Rented Boomerang"] = "Boomerang",
							["Rented Bow"] = "Bow",
							["Rented Fire Rod"] = "Fire Rod",
							["Rented Ice Rod"] = "Ice Rod",
							["Rented Sand Rod"] = "Sand Rod",
							["Rented Tornado Rod"] = "Tornado Rod",
							["Rented Hammer"] = "Hammer"
						},
					},
					{
						image = "File:ALBW Items Nav 3.png",
						changes = {
							["Bomb"] = "Nice Bomb",
							["Hookshot"] = "Nice Hookshot",
							["Boomerang"] = "Nice Boomerang",
							["Bow"] = "Nice Bow",
							["Fire Rod"] = "Nice Fire Rod",
							["Ice Rod"] = "Nice Ice Rod",
							["Sand Rod"] = "Nice Sand Rod",
							["Tornado Rod"] = "Nice Tornado Rod",
							["Hammer"] = "Nice Hammer",
							["Net"] = "Super Net",
							["Lamp"] = "Super Lamp",
						},
					},
				},
			},
		},
		{
			tab = "Gear",
			map = {
				image = "File:ALBW Gear Nav.png",
				maxWidth = 480,
				areas = {
					{
						area = "rect 11 13 59 63",
						page = "Forgotten Sword",
					},
					{
						area = "rect 59 13 104 63",
						page = "Green Tunic",
					},
					{
						area = "rect 104 13 149 63",
						page = "Shield",
					},
					{
						area = "rect 18 75 54 113",
						page = "Ravio's Bracelet",
					},
					{
						area = "rect 60 75 96 113",
						page = "Power Glove",
					},
					{
						area = "rect 102 75 138 113",
						page = "Pegasus Boots",
					},
					{
						area = "rect 18 115 54 153",
						page = "Smooth Gem",
					},
					{
						area = "rect 60 115 96 153",
						page = "Bee Badge",
					},
					{
						area = "rect 102 115 138 153",
						page = "Stamina Scroll",
					},
					{
						area = "rect 12 160 54 198",
						page = "Piece of Heart",
					},
					{
						area = "rect 66 164 103 196",
						page = "Rupee",
					},
					{
						area = "rect 106 164 143 196",
						page = "Lost Maiamai",
					},
					{
						area = "rect 146 164 183 196",
						page = "Monster Tail",
					},
					{
						area = "rect 186 164 223 196",
						page = "Monster Horn",
					},
					{
						area = "rect 226 164 263 196",
						page = "Monster Guts",
					},
					{
						area = "rect 266 164 303 196",
						page = "Master Ore",
					},
					{
						area = "circle 233 65 18",
						page = "Pendant of Power",
					},
					{
						area = "circle 255 102 18",
						page = "Pendant of Courage",
					},
					{
						area = "circle 210 102 18",
						page = "Pendant of Wisdom",
					},
					{
						area = "rect 215 3 255 50",
						page = "Sage Gulley",
					},
					{
						area = "rect 264 21 304 68",
						page = "Sage Oren",
					},
					{
						area = "rect 277 72 315 119",
						page = "Sage Rosso",
					},
					{
						area = "rect 240 119 280 166",
						page = "Sage Impa",
					},
					{
						area = "rect 184 119 224 166",
						page = "Sage Irene",
					},
					{
						area = "rect 150 72 190 119",
						page = "Sage Osfala",
					},
					{
						area = "rect 167 21 207 68",
						page = "Sage Seres",
					},
				},
				upgrades = {
					{
						image = "File:ALBW Gear Nav 2.png",
						changes = {
							["Forgotten Sword"] = "Master Sword",
							["Green Tunic"] = "Blue Mail",
							["Shield"] = "Hylian Shield",
							["Power Glove"] = "Titan's Mitt",
							["Smooth Gem"] = "Zora's Flippers",
						},
					},
					{
						image = "File:ALBW Gear Nav 3.png",
						changes = {
							["Master Sword"] = "Master Sword Lv2",
							["Blue Mail"] = "Red Mail",
						},
					},
					{
						image = "File:ALBW Gear Nav 4.png",
						changes = {
							["Master Sword Lv2"] = "Master Sword Lv3",
							["Piece of Heart"] = "Heart Container",
						},
					},
				},
			},
		},
		{
			tab = "Bottle Items",
			rows = {
				fileType = "Icon",
				fileSize = "64px",
				items = {
					"Red Potion",
					"Blue Potion",
					"Yellow Potion",
					"Purple Potion",
					"Milk",
					"Premium Milk",
					"Fairy",
					"Bee",
					"Golden Bee",
					"Apple",
					"Green Apple",
					"Heart",
					"Letter in a Bottle",
				},
			},
		},
		{
			tab = "Dungeon Items",
			rows = {
				fileType = "Model",
				fileSize = "60x60px",
				items = {
					"Compass",
					"Big Key",
				},
			},
		},
		{
			tab = "Other",
			rows = {
				fileType = "Model",
				fileSize = "80x80px",
				items = {
					"Pouch",
					"Bell",
				},
			},
		},
	},
	SS = {
		{
			tab = "Gear",
			map = {
				image = "File:SS Item Nav 0.png",
				maxWidth = 700,
				areas = {
					{
					    area = "poly 779 183 806 168 806 136 779 120 752 136 752 168", 
					    page = "Stone of Trials",
					},
					{
					    area = "poly 670 186 715 186 715 140 711 141 705 140 694 143 687 147 668 148 665 162 665 167 668 175 669 183",
					    page = "Emerald Tablet",
					},
					{
					    area = "poly 621 186 670 186 669 182 668 175 665 167 665 163 668 148 662 144 653 139 648 128 647 113 621 113",
					    page = "Amber Tablet",
					},
					{
					    area = "poly 716 113 715 140 711 141 705 140 694 143 687 147 668 148 662 144 653 139 648 128 647 113",
					    page = "Ruby Tablet",
					},
					{
					    area = "poly 739 190 746 190 750 193 753 197 753 205 751 208 751 209 753 210 754 211 754 214 752 216 751 216 756 219 758 221 760 226 760 233 758 238 754 242 749 244 741 244 735 241 731 237 728 233 727 231 727 227 727 225 727 224 724 225 719 225 713 223 712 222 712 218 714 214 718 211 725 211 728 213 730 215 731 216 733 214 731 212 729 210 724 209 723 208 723 206 725 204 733 203 735 204 734 202 734 196 735 193",
					    page = "Life Tree Seedling",
					},
					{
					    area = "rect 766 223 788 254",
					    page = "Fire Dragon's Song",
					},
					{
					    area = "rect 688 221 709 256",
					    page = "Water Dragon's Song",
					},
					{
					    area = "rect 659 249 699 290",
					    page = "Ballad of the Goddess",
					},
					{
					    area = "rect 776 249 816 290",
					    page = "Farore's Courage",
					},
					{
					    area = "rect 681 304 722 345",
					    page = "Nayru's Wisdom",
					},
					{
					    area = "rect 753 304 793 345",
					    page = "Din's Power",
					},
					{
					    area = "poly 733 264 753 273 753 268 762 270 768 275 768 283 764 286 761 286 761 291 757 299 750 305 744 308 735 309 728 308 721 303 716 298 712 289 712 279 715 271 718 267 716 265 716 260 721 256 728 256 735 261",
					    page = "Goddess's Harp",
				    },
					{
					    area = "circle 645 346 34",
					    page = "Sailcloth",
					},
					{
					    area = "circle 695 416 34",
					    page = "Water Dragon's Scale",
					},
					{
					    area = "circle 780 416 34",
					    page = "Fireshield Earring",
					    display = "Fireshield Earrings",
					},
					{
					    area = "circle 829 346 34",
					    page = "Digging Mitts",
					},
					{
					    area = "circle 519 210 39",
					    page = "Bomb",
					},
					{
					    area = "circle 551 287 39",
					    page = "Beetle",
				    },
					{
					    area = "circle 519 363 39",
					    page = "Bug Net",
				    },
					{
					    area = "circle 443 394 39",
					    page = "Slingshot",
					},
					{
					    area = "circle 366 363 39",
					    page = "Clawshot",
					    display = "Clawshots",
					},
					{
					    area = "circle 335 287 39",
					    page = "Whip",
					},
					{
					    area = "circle 366 210 39",
					    page = "Gust Bellows",
					},
					{
					    area = "circle 443 181 39",
					    page = "Bow",
					},
					{
					    area = "circle 227 336 36",
					    page = "Small Wallet",
					},
					{
					    area = "poly 117 371 139 354 149 343 154 331 154 320 152 314 147 308 140 305 134 305 126 308 120 315 118 322 117 322 113 314 107 308 100 306 93 306 86 310 81 318 81 331 85 341 93 351",
					    page = "Heart Container",
					},
					{
					    area = "rect 154 175 192 300",
					    page = "Practice Sword",
					},
					{
					    area = "circle 106 235 29",
					    page = "Nayru's Flame",
					},
					{
					    area = "circle 241 234 29",
					    page = "Farore's Flame",
					},
					{
					    area = "circle 172 119 29",
					    page = "Din's Flame",
					},
				},
				upgrades = {
					{
						image = "File:SS Item Nav 1.png",
						areas = {
							{
								area = "rect 154 166 192 306",
								page = "Goddess Sword",
							},
							{
								area = "rect 223 357 278 376",
								page = "Extra Wallet",
							},
							{
								area = "poly 668 109 667 109 622 187 713 187",
								page = "Triforce",
							},
							{
								area = "poly 733 205 733 196 739 190 748 190 753 196 753 204 748 208 756 212 758 218 758 220 756 222 754 222 754 231 750 239 742 244 733 244 727 242 722 239 718 231 718 215 719 209 725 205",
								page = "Life Tree Fruit",
							},
						},
						changes = {
							["Digging Mitts"] = "Mogma Mitts",
							["Beetle"] = "Hook Beetle",
							["Bug Net"] = "Big Bug Net",
							["Slingshot"] = "Scattershot",
							["Bow"] = "Iron Bow",
							["Small Wallet"] = "Medium Wallet",
							["Amber Tablet"] = "",
							["Emerald Tablet"] = "",
							["Ruby Tablet"] = "",
							["Life Tree Seedling"] = "",
							["Practice Sword"] = "",
						},
					},
					{
						image = "File:SS Item Nav 2.png",
						areas = {
							{
								area = "rect 724 202 749 234",
								page = "Thunder Dragon's Song",
							},
							{
								area = "rect 154 153 192 313",
								page = "Goddess Longsword",
							},
						},
						changes = {
							["Goddess Sword"] = "",
							["Life Tree Fruit"] = "",
							["Hook Beetle"] = "Quick Beetle",
							["Iron Bow"] = "Sacred Bow",
							["Medium Wallet"] = "Big Wallet",
						},
					},
					{
						image = "File:SS Item Nav 3.png",
						areas = {
							{
								area = "rect 717 208 758 249",
								page = "Song of the Hero",
							},
							{
								area = "rect 152 153 195 313",
								page = "Goddess White Sword"
							},
						},
						changes = {
							["Goddess Sword"] = "",
							["Fire Dragon's Song"] = "",
							["Water Dragon's Song"] = "",
							["Thunder Dragon's Song"] = "",
							["Quick Beetle"] = "Tough Beetle",
							["Big Wallet"] = "Giant Wallet",
						},
					},
					{
						image = "File:SS Item Nav 4.png",
						areas = {
							{
								area = "rect 152 148 195 319",
								page = "Master Sword",
							},
						},
						changes = {
							["Goddess White Sword"] = "",
							["Giant Wallet"] = "Tycoon Wallet",
						},
					},
					{
						image = "File:SS Item Nav 5.png",
						areas = {
							{
								area = "rect 144 148 203 319",
								page = "True Master Sword",
							},
						},
						changes = {
							["Master Sword"] = "",
						}
					}
				},
			},
		},
		{
			tab = "Collection",
			map = {
				image = "File:SS Collection Completed.png",
				maxWidth = 700,
				areas = {
					{
					    area = "rect 80 107 154 181",
					    page = "Deku Hornet",
					},
					{
					    area = "rect 168 107 242 181",
					    page = "Blessed Butterfly",
					},
					{
					    area = "rect 253 107 327 181",
					    page = "Gerudo Dragonfly",
					},
					{
					    area = "rect 341 107 415 181",
					    page = "Starry Firefly",
					},
					{
					    area = "rect 80 192 154 266",
					    page = "Woodland Rhino Beetle",
					},
					{
					    area = "rect 168 192 242 266",
					    page = "Volcanic Ladybug",
					},
					{
					    area = "rect 253 192 327 266",
					    page = "Sand Cicada",
					},
					{
					    area = "rect 341 192 415 266",
					    page = "Sky Stag Beetle",
					},
					{
					    area = "rect 80 278 154 352",
					    page = "Faron Grasshopper",
					},
					{
					    area = "rect 168 278 242 352",
					    page = "Skyloft Mantis",
					},
					{
					    area = "rect 253 278 327 352",
					    page = "Lanayru Ant",
					},
					{
					    area = "rect 341 278 415 352",
					    page = "Eldin Roller",
					},
					{
					    area = "rect 79 380 153 454",
					    page = "Cawlin's Letter",
					},
					{
					    area = "rect 167 380 241 454",
					    page = "Horned Colossus Beetle",
					},
					{
					    area = "rect 254 380 328 454",
					    page = "Rattle",
					},
					{
					    area = "rect 342 380 416 454",
					    page = "Gratitude Crystal",
					},
					{
					    area = "rect 500 113 574 187",
					    page = "Hornet Larvae",
					},
					{
					    area = "rect 588 113 662 187",
					    page = "Bird Feather",
					},
					{
					    area = "rect 673 113 747 187",
					    page = "Tumbleweed",
					},
					{
					    area = "rect 761 113 835 187",
					    page = "Lizard Tail",
					},
					{
					    area = "rect 500 200 574 274",
					    page = "Eldin Ore",
					},
					{
					    area = "rect 588 200 662 274",
					    page = "Ancient Flower",
					},
					{
					    area = "rect 673 200 747 274",
					    page = "Amber Relic",
					},
					{
					    area = "rect 761 200 835 274",
					    page = "Dusk Relic",
					},
					{
					    area = "rect 500 283 574 357",
					    page = "Jelly Blob",
					},
					{
					    area = "rect 588 283 662 357",
					    page = "Monster Claw",
					},
					{
					    area = "rect 673 283 747 357",
					    page = "Monster Horn",
					},
					{
					    area = "rect 761 283 835 357",
					    page = "Ornamental Skull",
					},
					{
					    area = "rect 500 370 574 444",
					    page = "Evil Crystal",
					},
					{
					    area = "rect 588 370 662 444",
					    page = "Blue Bird Feather",
					},
					{
					    area = "rect 673 370 747 444",
					    page = "Golden Skull",
					},
					{
					    area = "rect 761 370 835 444",
					    page = "Goddess Plume",
					},
				},
			},
		},
		{
			tab = "Adventure Pouch",
			subtabs = {
				{
					tab = "Bags",
					rows = {
						fileType = "Icon",
						items = {
							{
								"Small Seed Satchel",
								"Medium Seed Satchel",
								"Large Seed Satchel",
							},
							{
								"Small Quiver",
								"Medium Quiver",
								"Large Quiver",
							},
							{
								"Small Bomb Bag",
								"Medium Bomb Bag",
								"Large Bomb Bag",
							},
						},
					}
				},
				{
					tab = "Medals",
					rows = {
						fileType = "Icon",
						items = {
							"Bug Medal",
							"Cursed Medal",
							"Heart Medal",
							"Life Medal",
							"Rupee Medal",
							"Treasure Medal",
							"Potion Medal",	
						},
					},
				},
				{
					tab = "Bottle Items",
					rows = {
						fileType = "Icon",
						items = {
							"Empty Bottle",
							"Fairy",
							"Heart Potion",
							"Heart Potion+",
							"Heart Potion++",
							"Stamina Potion",
							"Stamina Potion+",
							"Air Potion",
							"Air Potion+",
							"Revitalizing Potion",
							"Revitalizing Potion+",
							"Revitalizing Potion++",
							"Guardian Potion",
							"Guardian Potion+",
							"Water",
							"Sacred Water",
							"Mushroom Spores",
							"Glittering Spores",
							"Cold Pumpkin Soup",
							"Hot Pumpkin Soup",
						},
					},
				},
			},
		},
		{
			tab = "Dungeon Items",
			rows = {
				fileType = "Icon",
				rowSpacing = "28px",
				items = {
					{
						"Small Key",
						"Dungeon Map",
						"Golden Carving",
						"Dragon Sculpture",
						"Ancient Circuit",
						"Blessed Idol",
						"Squid Carving",
						"Mysterious Crystals",
					}
				},
			},
		},
		{
			tab = "Other",
			rows = {
				fileSize= "x100px",
				fileType = "Model",
				items = {
					"Bird Statuette",
					"Adventure Pouch",
					"Adventure Pouch Upgrade",
					"Piece of Heart",
				},
			},
		},
	},
	ST = {
		{
			tab = "Inventory",
			map = {
				image = "File:ST Items.png",
				maxWidth = 508,
				areas = {
					{ 
					   page="Red Potion", 
					   area="rect 14 2 97 49",
					}, 
					{ 
					   page="Whirlwind", 
					   area="rect 97 2 156 49",
					},
					{ 
					   page="Boomerang", 
					   area="rect 156 2 211 49",
					},
					{ 
					   page="Whip", 
					   area="rect 211 2 266 49",
					},
					{ 
					   page="Bow",
					   area="rect 266 2 323 49",
					},
					{ 
					   page="Bomb",
					   area="rect 323 2 378 49",
					},
					{ 
					   page="Sand Wand",
					   area="rect 378 2 432 39",
					},
					{ 
					   page="Spirit Flute",
					   area="rect 432 2 500 53",
					},
				},
				upgrades = {
					{
						image = "File:ST Items 2.png",
						changes = {
							["Bow"] = "Bow of Light",
							["Red Potion"] = "Purple Potion",
						},
					},
					{
						image = "File:ST Items 3.png",
						changes = { 
							["Purple Potion"] = "Yellow Potion",
						},
					},
				},
			},
		},
		{
			tab = "Collection",
			subtabs = {
				{
					tab = "Bottom Screen",
					map = {
						image = "File:ST Collection.png",
						maxWidth = 400,
						areas = {
							{
								area = "rect 0 7 59 55",
								page = "Train Car",
							},
							{
								area = "rect 0 58 59 102",
								page = "Treasure"
							},
							{
								area = "rect 198 12 256 57",
								page = "Stamp Book",
							},
							{
								area = "rect 200 63 256 103",
								page = "Letter",
							},
							{
								area = "poly 120 78 138 78 145 60 136 40 120 40 110 60",
								page = "Sand Seal (Item)",
							},
							{
								area = "rect 76 56 129 94",
								page = "Forest Seal",
							},
							{
								area = "rect 76 20 129 56",
								page = "Snow Seal"
							},
							{
								area = "rect 129 56 180 94",
								page = "Ocean Seal",
							},
							{
								area = "rect 129 20 180 56",
								page = "Fire Seal",
							},
							{
								area = "rect 7 109 77 157",
								page = "Spirit Flute",
							},
							{
								area = "rect 81 115 106 143",
								page = "Song of Awakening",
							},
							{
								area = "rect 109 115 133 143",
								page = "Song of Healing",
							},
							{
								area = "rect 136 115 161 143",
								page = "Song of Birds",
							},
							{
								area = "rect 165 115 190 143",
								page = "Song of Light",
							},
							{
								area = "rect 193 115 218 143",
								page = "Song of Discovery",
							},
						},
					},
				},
				{
					tab = "Top Screen",
					map = {
						image = "File:ST Collection Nav.png",
						maxWidth = 400,
						areas = {
							{
								area = "rect 12 2 36 35",
								page = "Swordsman's Scroll 1"
							},
							{
								area = "rect 30 2 54 35",
								page = "Swordsman's Scroll 2",
							},
							{
								area = "poly 57 13 77 12 77 32 47 58 55 65 45 72 16 75 16 37 34 45",
								page = "Recruit's Sword",
							},
							{
								area = "rect 87 64 138 116",
								page = "Bow of Light",
							},
							{
								area = "rect 71 15 130 73",
								page = "Shield",
							},
							{
							    area = "rect 31 62 90 115", 
							    page = "Engineer's Clothes",
							},
							{
								area = "rect 160 12 199 62",
								page = "Quiver",
							},
							{
								area = "rect 204 21 236 65",
								page = "Bomb Bag",
							},
							{
								area = "rect 160 67 199 111",
								page = "Rabbit Net"
							},
							{
							    area = "rect 197 73 241 111", 
							    page = "Rabbit",
							},
							{
							    area = "rect 17 121 57 160", 
							    page = "Royal Engineer's Certificate",
							},
							{
							    area = "rect 57 118 103 159", 
							    page = "Compass of Light",
							},
							{
								area = "rect 129 123 183 156",
								page = "Prize Postcard",
							},
							{
							    area = "poly 215 124 243 112 250 122 250 128 220 140", 
							    page = "Freebie Card",
							},
							{
							    area = "poly 215 146 244 134 250 150 221 161", 
							    page = "Quintuple Points Card",
							},
							{
							    area = "rect 184 125 223 158", 
							    page = "Club Card",
							},
						},
						upgrades = {
							{
								image = "File:ST Collection Nav 2.png",
								changes = {
									["Engineer's Clothes"] = "Recruit Uniform",
									["Recruit's Sword"] = "Lokomo Sword",
									["Shield"] = "Shield of Antiquity",
									["Bomb Bag"] = "Medium Bomb Bag",
									["Club Card"] = "Silver Card"
								},
							},
							{
								image = "File:ST Collection Nav 3.png",
								changes = {
									["Recruit Uniform"] = "Engineer's Clothes",
									["Medium Bomb Bag"] = "Big Bomb Bag",
									["Silver Card"] = "Gold Card",
								},
							},
							{
								image = "File:ST Collection Nav 4.png",
								changes = {
									["Gold Card"] = "Platinum Card",
								},
							},
							{
								image = "File:ST Collection Nav 5.png",
								changes = {
									["Platinum Card"] = "Diamond Card",
								},
							},
						},
					},
				}
			},
		},
		{
			tab = "Treasure",
			map = {
				image = "File:ST Treasure Nav.png",
				maxWidth = 400,
				areas = {
					{
						area = "rect 41 16 72 46",
						page = "Demon Fossil"
					},
					{
						area = "rect 88 16 119 46",
						page = "Stalfos Skull"
					},
					{
						area = "rect 136 18 165 46",
						page = "Star Fragment"
					},
					{
						area = "rect 181 18 212 46",
						page = "Bee Larvae",
					},
					{
						area = "rect 43 50 72 78",
						page = "Wood Heart",
					},
					{
						area = "rect 88 50 120 79",
						page = "Dark Pearl Loop",
					},
					{
						area = "rect 134 50 166 79",
						page = "Pearl Necklace",
					},
					{
						area = "rect 182 50 212 78",
						page = "Ruto Crown",
					},
					{
						area = "rect 43 82 72 112",
						page = "Dragon Scale",
					},
					{
						area = "rect 88 82 120 112",
						page = "Pirate Necklace",
					},
					{
						area = "rect 134 82 166 111",
						page = "Palace Dish",
					},
					{
						area = "rect 182 82 211 112",
						page = "Goron Amber",
					},
					{
						area = "rect 42 112 72 144",
						page = "Mystic Jade",
					},
					{
						area = "rect 89 114 118 143",
						page = "Ancient Gold Piece",
					},
					{
						area = "rect 136 112 165 144",
						page = "Alchemy Stone",
					},
					{
						area = "rect 182 113 211 143",
						page = "Regal Ring",
					},
				},
			},
		},
		{
			tab = "Letters",
			rows = {
				fileType = "Opened Icon",
				maxWidth = 204,
				items = {
					"Battle Rank Notice",
					"From Ferrus (3)",
					"From Kagoron",
					"From Ferrus (2)",
					"From Niko",
					"From Ferrus",
					"Carben's Letter",
					"From Linebeck",
					"Diamond Membership",
					"Platinum Membership",
					"Gold Membership",
					"Silver Membership",
					"Beedle Club Mailing",
					"From Beedle",
					"From Russell",
					"From Alfonzo",
					"From Princess Zelda",
					"From the Postmaster",
				},
			},
		},
		{
			tab = "Train Cars",
			subtabs = {
				{
					tab = "[[File:ST Engine Icon.png|link=]]",
					tabCaption = "Engines",
					rows = {
						fileType = "Icon",
						maxWidth = 200,
						items = {
							"Spirit Engine",
							"Wooden Engine",
							"Steel Engine",
							"Skull Engine",
							"Stagecoach Engine",
							"Dragonhead Engine",
							"Sweet Engine",
							"Golden Engine",
						},
					},
				},
				{
					tab = "[[File:ST Cannon Icon.png|link=]]",
					tabCaption = "Cannons",
					rows = {
						fileType = "Icon",
						maxWidth = 200,
						items = {
							"Practical Cannon",
							"Wooden Cannon",
							"Heavy Cannon",
							"Skull Cannon",
							"Tower Cannon",
							"Dragon Cannon",
							"Honey Cannon",
							"Brawny Cannon",
						},
					},
				},
				{
					tab = "[[File:ST Passenger Car Icon.png|link=]]",
					tabCaption = "Passenger Cars",
					rows = {
						fileType = "Icon",
						maxWidth = 200,
						items = {
							"Solid Passenger Car",
							"Wood Passenger Car",
							"Sturdy Passenger Car",
							"Skull Passenger Car",
							"Quaint Passenger Car",
							"Dragon Passenger Car",
							"Cake Passenger Car",
							"Royal Passenger Car",
						},
					},
				},
				{
					tab = "[[File:ST Freight Car Icon.png|link=]]",
					tabCaption = "Freight Cars",
					rows = {
						fileType = "Icon",
						maxWidth = 200,
						items = {
							"Trusty Freight Car",
							"Wooden Freight Car",
							"Efficient Freight Car",
							"Skull Freight Car",
							"Garden Freight Car",
							"Dragon Freight Car",
							"Pie Freight Car",
							"Golden Freight Car"
						},
					},
				},
			},
		},
		{
			tab = "Cargo",
			rows = {
				spacing = "16px",
				fileType = "Icon",
				items = {
					"Cucco",
					"Lumber",
					"Mega Ice",
					"Goron Iron",
					"Fish",
					"Vessel",
					"Dark Ore",
				},
			},
		},
		{
			tab = "Other",
			rows = {
				fileType = "Model",
				fileSize = "x100px",
				rowSpacing = "16px",
				items = {
					{
						"Tear of Light",
					},
					{
						"Forest Rail Map",
						"Snow Rail Map",
						"Ocean Rail Map",
						"Fire Rail Map",
					},
				},
			},
		},
	},
	PH = { 
		{
			tab = "Inventory",
			map = {
				image = "File:PH Inventory 1.png",
				maxWidth = 480,
				areas = {
					{
					    area = "rect 0 2 111 59",
					    page = "Red Potion",
					},
					{
					    area = "rect 126 12 165 51",
					    page = "Boomerang",
					},
					{
					    area = "rect 176 12 215 51",
					    page = "Bomb",
					},
					{
					    area = "rect 226 12 265 51",
					    page = "Bow",
					},
					{
					    area = "rect 276 12 315 51",
					    page = "Bombchu",
					},
					{
					    area = "rect 326 12 365 51",
					    page = "Grappling Hook",
					},
					{
					    area = "rect 376 12 415 51",
					    page = "Hammer",
					},
					{
					    area = "rect 426 12 465 51",
					    page = "Shovel",
					},
				},
				upgrades = {
					{
						image = "File:PH Inventory 2.png",
						changes = {
							["Red Potion"] = "Purple Potion",
						},
					},
					{
						image = "File:PH Inventory 3.png",
						changes = {
							["Purple Potion"] = "Yellow Potion",
						},
					},
				},
			},				
		},
		{
			tab = "Collection",
			subtabs = {
				{
					tab = "Top Screen",
					map = {
						image = "File:PH Collection Top Nav.png",
						maxWidth = 400,
						areas = {
							{
								area = "rect 19 20 77 123",
								page = "Phantom Hourglass (Item)"
							},
							{
								area = "rect 20 120 75 144",
								page = "Sand of Hours"
							},
							{
								area = "rect 81 17 135 65",
								page = "Oshus's Sword",
							},
							{
								area = "rect 139 20 171 60",
								page = "Crimsonine",
							},
							{
								area = "rect 171 20 203 60",
								page = "Aquanine",
							},
							{
								area = "rect 203 20 235 60",
								page = "Azurine",
							},
							{
								area = "rect 82 92 126 134",
								page = "Wooden Shield"
							},
							{
								area = "rect 128 91 170 134",
								page = "Arrow",
							},
							{
								area = "rect 177 77 235 110",
								page = "Bomb",
							},
							{
								area = "rect 177 113 235 145",
								page = "Bombchu"
							},
						},
						upgrades = {
							{
								image = "File:PH Collection Top Nav 2.png",
								areas = {
									{
										area = "rect 138 21 233 61",
										page = "Sword Blade",
									},
								},
								changes = {
									["Crimsonine"] = "",
									["Aquanine"] = "",
									["Azurine"] = "",
									["Arrow"] = "Quiver",
									["Bomb"] = "Bomb Bag",
									["Bombchu"] = "Bombchu Bag",
								},
							},
							{
								image = "File:PH Collection Top Nav 3.png",
								changes = {
									["Sword Blade"] = "",
									["Oshus's Sword"] = "Phantom Sword",
								},
							},
						},
					},
				},
				{
					tab = "Bottom Screen",
					map = {
						image = "File:PH Collection Bottom Nav.png",
						maxWidth = 400,
						areas = {
							{
								area = "rect 60 26 86 45",
								page = "Spirit of Courage",
							},
							{
								area = "rect 75 48 101 67",
								page = "Spirit of Wisdom",
							},
							{
								area = "rect 45 48 70 67",
								page = "Spirit of Power",
							},
							{
								area = "rect 137 21 152 42",
								page = "Courage Gem",
							},
							{
								area = "rect 154 46 169 67",
								page = "Wisdom Gem",
							},
							{
								area = "rect 121 46 136 67",
								page = "Power Gem",
							},
							{
								area = "rect 25 96 57 128",
								page = "Sun Key",
							},
							{
								area = "rect 69 96 100 128",
								page = "Ghost Key",
							},
							{
								area = "rect 110 96 142 128",
								page = "King's Key",
							},
							{
								area = "rect 152 96 184 128",
								page = "Regal Necklace",
							},
							{
								area = "rect 29 133 95 165",
								page = "Hero's New Clothes",
							},
							{
								area = "rect 115 135 177 166",
								page = "Treasure Map",
							},
							{
								area = "rect 198 16 230 40",
								page = "Freebie Card",
							},
							{
								area = "rect 198 42 230 66",
								page = "Compliment Card",
							},
							{
								area = "rect 198 68 230 92",
								page = "Complimentary Card",
							},
							{
								area = "rect 197 96 230 128",
								page = "Prize Postcard",
							},
							{
								area = "rect 197 131 230 162",
								page = "Jolene's Letter",
							},
						},
						upgrades = {
							{
								image = "File:PH Collection Bottom Nav 2.png",
								changes = {
									["Hero's New Clothes"] = "Kaleidoscope",
								},
							},
							{
								image = "File:PH Collection Bottom Nav 3.png",
								changes = {
									["Kaleidoscope"] = "Guard Notebook",
								},
							},
							{
								image = "File:PH Collection Bottom Nav 4.png",
								changes = {
									["Guard Notebook"] = "Wood Heart",
								},
							},
							{
								image = "File:PH Collection Bottom Nav 5.png",
								changes = {
									["Wooden Heart"] = "Swordsman's Scroll",
								},
							},
						},
					},
				},
			},
		
		},
		{
			tab = "Treasure",
			map = {
				image = "File:PH Treasure Nav.png",
				maxWidth = 400,
				areas = {
					{
						area = "rect 44 64 78 97",
						page = "Pink Coral",
					},
					{
						area = "rect 92 64 126 97",
						page = "Pearl Necklace",
					},
					{
						area = "rect 140 64 174 97",
						page = "Dark Pearl Loop",
					},
					{
						area = "rect 188 64 222 97",
						page = "Zora Scale",
					},
					{
						area = "rect 44 109 78 142",
						page = "Goron Amber",
					},
					{
						area = "rect 92 109 126 142",
						page = "Ruto Crown",
					},
					{
						area = "rect 140 109 174 142",
						page = "Helmaroc Plume",
					},
					{
						area = "rect 188 109 222 142",
						page = "Regal Ring",
					},
				},
			},
		},
	},
	TP = {
		{
			tab = "Items",
			map = {
				image = "File:TPItemNav.png",
				maxWidth = 312,
				areas = {
					{
					    area = "rect 133 1 179 61", 
					    page = "Clawshot",
					},
					{
					    area = "rect 217 35 285 84", 
					    page = "Ball and Chain",
					},
					{
					    area = "rect 184 3 225 68", 
					    page = "Dominion Rod",
					},
					{
					    area = "rect 245 88 308 128", 
					    page = "Spinner",
					},
					{
					    area = "rect 261 133 309 180", 
					    page = "Hero's Bow",
					},
					{
					    area = "rect 253 184 303 231", 
					    page = "Iron Boots",
					},
					{
					    area = "rect 221 226 254 292", 
					    page = "Gale Boomerang",
					},
					{
					    area = "rect 183 246 220 315", 
					    page = "Lantern",
					},
					{
					    area = "rect 137 247 179 318", 
					    page = "Slingshot",
					},
					{
					    area = "rect 94 235 133 315", 
					    page = "Fishing Rod",
					},
					{
					    area = "rect 45 233 93 286", 
					    page = "Hawkeye",
					},
					{
					    area = "rect 10 185 65 234", 
					    page = "Water Bomb",
					},
					{
					    area = "rect 0 132 56 183", 
					    page = "Bombling",
					},
					{
					    area = "rect 16 79 61 130", 
					    page = "Bomb",
					},
					{
					    area = "rect 57 32 89 87", 
					    page = "Empty Bottle",
					},
					{
					    area = "rect 94 5 129 68", 
					    page = "Horse Call",
					},
				},
			},
		},
		{
			tab = "Bottle Items",
			rows = {
				fileType = "Icon",
				items = {
					"Red Potion",
					"Blue Potion",
					"Ordon Goat Milk",
					"Hot Springwater",
					"Water",
					"Lantern Oil",
					"Fairy",
					"Great Fairy's Tears",
					"Nasty Soup",
					"Simple Soup",
					"Good Soup",
					"Superb Soup",
					"Bee Larva",
					"Worm"
				},
			},
		},
	},
	TMC = {
		tabColumns = 3,
		{
			tab = "Items",
			map = {
				image = "File:TMC Items Nav.png",
				maxWidth = 416,
				areas = {
					{
					    area= "rect 36 18 64 39",
					    page = "Smith's Sword",
					},
					{
					    area= "rect 72 18 100 39",
					    page = "Gust Jar",
					},
					{
					    area= "rect 108 18 136 39",
					    page = "Cane of Pacci",
					},
					{
					    area= "rect 144 18 172 39",
					    page = "Boomerang",
					},
					{
					    area= "rect 36 42 64 63",
					    page = "Small Shield",
					},
					{
					    area= "rect 72 42 100 63",
					    page = "Mole Mitts",
					},
					{
					    area= "rect 108 42 136 63",
					    page = "Flame Lantern",
					},
					{
					    area= "rect 144 42 172 63",
					    page = "Bomb",
					},
					{
					    area= "rect 36 66 64 87",
					    page = "Pegasus Boots",
					},
					{
					    area= "rect 72 66 100 87",
					    page = "Roc's Cape",
					},
					{
					    area= "rect 108 66 136 87",
					    page = "Ocarina of Wind",
					},
					{
					    area= "rect 144 66 172 87",
					    page = "Bow",
					},
					{
					    area= "rect 36 90 136 121",
					    page = "Empty Bottle",
					},
				},
				upgrades = {
					{
						image = "File:TMC Items Nav 2.png",
						changes = {
							["Smith's Sword"] = "White Sword",
							["Boomerang"] = "Magical Boomerang",
							["Small Shield"] = "Mirror Shield",
							["Bomb"] = "Remote Bomb",
							["Bow"] = "Bow of Light",
						}
					},
					{
						image = "File:TMC Items Nav 3.png",
						changes = {
							["White Sword"] = "White Sword (Two Elements)",
						},
					},
					{
						image = "File:TMC Items Nav 4.png",
						changes = {
							["White Sword (Two Elements)"] = "White Sword (Three Elements)"
						},
					},
					{
						image = "File:TMC Items Nav 5.png",
						changes = {
							["White Sword (Three Elements)"] = "Four Sword",
						},
					},
				},
			},
		},
		{
			tab = "Quest Status",
			map = {
				image = "File:TMC Items Nav 6.png",
				maxWidth = 414,
				areas = {
					{
						area = "rect 19 23 54 56",
						page = "Kinstone Bag",
					},
					{
						area = "rect 62 23 97 56",
						page = "Piece of Heart",
					},
					{
						area = "rect 19 62 55 87",
						page = "Tiger Scroll",
					},
					{
						area = "rect 62 62 97 87",
						page = "Mysterious Shell",
					},
					{
						area = "rect 135 14 156 35",
						page = "Earth Element",
					},
					{
						area = "rect 111 27 132 48",
						page = "Fire Element",
					},
					{
						area = "rect 159 28 180 48",
						page = "Water Element",
					},
					{
						area = "rect 135 40 156 61",
						page = "Wind Element",
					},
					{
						area = "rect 109 66 130 87",
						page = "Grip Ring",
					},
					{
						area = "rect 135 66 156 87",
						page = "Power Bracelet",
					},
					{
						area = "rect 161 66 182 87",
						page = "Flippers",
					},
					{
						area = "rect 24 94 45 114",
						page = "Smith's Sword",
					},
					{
						area = "rect 48 94 71 114",
						page = "Broken Picori Blade",
					},
					{
						area = "rect 72 94 94 114",
						page = "Spare Key",
					},
				},
				upgrades = {
					{
						image = "File:TMC Items Nav 7.png",
						changes = {
							["Smith's Sword"] = "Dog Food",
							["Broken Picori Blade"] = "Wake-Up Mushroom",
							["Spare Key"] = "A Hyrulean Bestiary",
						}
					},
					{
						image = "File:TMC Items Nav 8.png",
						changes = {
							["Dog Food"] = "Legend of the Picori",
							["Wake-Up Mushroom"] = "A History of Masks",
							["A Hyrulean Bestiary"] = "Graveyard Key",
							["Kinstone Bag"] = "Tingle Trophy",
							["Mysterious Shell"] = "Carlov Medal",
						},
					},
				},
			},
		},
		{
			tab = "Bottle Items",
			rows = {
				fileType = "Sprite",
				fileSize = "36px",
				items = {
					"Lon Lon Milk",
					"Blue Potion",
					"Red Potion",
					"Water",
					"Mt. Crenel Mineral Water",
					{
						image = "File:TMC Fairy Sprite 2.png",
						page = "Fairy",
					},
					"Blue Picolyte",
					"Green Picolyte",
					"Orange Picolyte",
					"Red Picolyte",
					"White Picolyte",
					"Yellow Picolyte",
					"Din's Charm",
					"Farore's Charm",
					"Nayru's Charm",
				},
			},
		},
		{
			tab = "Kinstones",
			rows = {
				fileType = "Sprite",
				fileSize = "48px",
				items = {
					"Green Kinstone",
					"Blue Kinstone",
					"Red Kinstone",
					"Gold Kinstone",
				},
			},
		},
		{
			tab = "Dungeon Items",
			rows = {
				fileType = "Sprite",
				scale = 3,
				items = {
					"Small Key",
					"Big Key",
					"Dungeon Map",
					"Compass",
				},
			},
		},
		{
			tab = "Other Items",
			rows = {
				fileType = "Sprite",
				scale = 3,
				items = {
					{
						"Jabber Nut",
						"Joy Butterfly",
					},
					{
						"Wallet",
						"Bomb Bag",
						"Quiver",
					},
					{
						"Brioche",
						"Croissant",
						"Slice of Cake",
						"Slice of Pie",
					},
					{
						"Heart",
						"Rupee",
						"Kinstone Piece",
						"Piece of Heart",
						"Heart Container",
					},
				},
			},
		},
	},
	FSA = {
		{
			tab = "Key Items",
			rows = {
				fileType = "Pedestal Sprite",
				items = {
					"Bomb",
					"Boomerang",
					"Bow",
					"Roc's Feather",
					"Fire Rod",
					"Hammer",
					"Lamp",
					"Pegasus Boots",
					"Shovel",
					"Slingshot",
				},
			},
		},
		{
			tab = "Other Items",
			rows = {
				fileType = "Sprite",
				items = {
					"Blue Bracelet",
					"Power Bracelet",
					"Bombos Medallion",
					"Quake Medallion",
					"Moon Pearl",
					"Magic Book",
					"Carrot",
				},
			},
		},
	},
	TWW = {
		{
			tab = "Inventory",
			map = {
				image = "File:TWWItemNav.png",
				maxWidth = 600,
				areas = {
					{
					    area = "rect 0 0 65 55",
					    page = "Telescope",
					},
					{
					    area = "rect 66 0 133 55",
					    page = "Sail",
					},
					{
					    area = "rect 134 0 201 55",
					    page = "Wind Waker (Item)",
					},
					{
					    area = "rect 202 0 263 55",
					    page = "Grappling Hook",
					},
					{
					    area = "rect 0 62 65 116",
					    page = "Tingle Tuner",
					},
					{
					    area = "rect 66 62 133 116",
					    page = "Picto Box",
					},
					{
					    area = "rect 134 62 201 116",
					    page = "Iron Boots",
					},
					{
					    area = "rect 202 62 263 116",
					    page = "Magic Armor",
					},
					{
					    area = "rect 0 123 263 178",
					    page = "Bottle",
					},
					{
					    area = "rect 275 0 333 58",
					    page = "Spoils Bag",
					},
					{
					    area = "rect 275 59 333 120",
					    page = "Bait Bag",
					},
					{
					    area = "rect 275 121 333 178",
					    page = "Delivery Bag",
					},
					{
					    area = "rect 343 0 401 58",
					    page = "Boomerang",
					},
					{
					    area = "rect 343 59 401 120",
					    page = "Hero's Bow",
					},
					{
					    area = "rect 343 121 401 178",
					    page = "Hookshot",
					},
					{
					    area = "rect 412 0 470 58",
					    page = "Deku Leaf",
					},
					{
					    area = "rect 412 59 470 120",
					    page = "Bomb",
					},
					{
					    area = "rect 412 121 470 178",
					    page = "Skull Hammer",
					},
				}
			}
		},
		{
			tab = "Bag Items",
			subtabs = {
				{
					tab = "[[File:TWW Spoils Bag Icon.png|link=]]",
					tabCaption = "Spoils Bag",
					rows = {
						fileType = "Icon",
						items = {
							"Joy Pendant",
							"Boko Baba Seed",
							"Skull Necklace",
							"Golden Feather",
							"Knight's Crest",
							"Red Chu Jelly",
							"Green Chu Jelly",
							"Blue Chu Jelly",
						},
					},
				},
				{
					tab = "[[File:TWW Bait Bag Icon.png|link=]]",
					tabCaption = "Bait Bag",
					rows = {
						fileType = "Icon",
						items = {
							"All-Purpose Bait",
							"Hyoi Pear",
						},
					},
				},
				{
					tab = "[[File:TWW Delivery Bag Icon.png|link=]]",
					tabCaption = "Delivery Bag",
					rows = {
						fileType = "Icon",
						rowSpacing = "16px",
						items = {
							{
								"Note to Mom",
								"Moblin's Letter",
								"Maggie's Letter",
								"Father's Letter",
								"Complimentary ID",
								"Fill-Up Coupon",
								"Cabana Deed",
							},
							{
								"Town Flower",
								"Sea Flower",
								"Exotic Flower",
								"Pinwheel",
								"Sickle Moon Flag",
								"Big Catch Flag",
								"Big Sale Flag",
								"Hero's Flag",
								"Fountain Idol",
								"Skull Tower Idol",
								"Postman Statue",
								"Shop Guru Statue",
							},
						},
					},
				},
			},
		},
		{
			tab = "Quest Status",
			map = {
				image = "File:TWW Quest Status2.png",
				maxWidth = 600,
				areas = {
					{
					    area = "rect 10 24 55 81",
					    page = "Wind's Requiem",
					},
					{
					    area = "rect 56 24 102 81",
					    page = "Ballad of Gales",
					},
					{
					    area = "rect 103 24 149 81",
					    page = "Command Melody",
					},
					{
					    area = "rect 150 23 195 81",
					    page = "Earth God's Lyric",
					},
					{
					    area = "rect 196 24 242 81",
					    page = "Wind God's Aria",
					},
					{
					    area = "rect 243 24 288 81",
					    page = "Song of Passing",
					},
					{
					    area = "rect 302 43 421 135",
					    page = "Triforce of Courage",
					},
					{
					    area = "rect 128 161 212 240",
					    page = "Piece of Heart",
					},
					{
					    area = "rect 229 165 276 207",
					    page = "Treasure Chart",
					},
					{
					    area = "rect 303 193 349 237",
					    page = "Din's Pearl",
					},
					{
					    area = "rect 379 193 425 236",
					    page = "Farore's Pearl",
					},
					{
					    area = "rect 341 137 385 181",
					    page = "Nayru's Pearl",
					},
					{
					    area = "rect 500 6 553 57",
					    page = "Hero's Sword",
					},
					{
					    area = "rect 500 60 553 111",
					    page = "Hero's Shield",
					},
					{
					    area = "rect 500 114 553 165",
					    page = "Power Bracelet",
					},
					{
					    area = "rect 500 168 553 219",
					    page = "Pirate's Charm",
					},
					{
					    area = "rect 500 228 553 278",
					    page = "Hero's Charm",
					},
				},
				upgrades = {
					{
						image = "File:TWW Quest Status.png",
						changes = {
							["Hero's Sword"] = "Master Sword",
							["Hero's Shield"] = "Mirror Shield",
						},
					},
				},
			},
		},
	},
	FS = {
		tabColumns = 3,
		{
			tab = "Items",
			rows = {
				fileType = "Pedestal Sprite",
				items = {
					"Bomb",
					"Boomerang",
					"Bow",
					"Chain Chomp",
					"Gnat Hat",
					"Magnetic Glove",
					"Pegasus Shoes",
					"Roc's Cape",
					"Shield",
				},
			},
		},
		{
			tab = "Seeds",
			rows = {
				fileType = "Sprite",
				fileSize = "24px", -- x3
				items = {
					"Armor Seed",
					"Pegasus Seed",
					"Razor Seed",
				},
			},
		},
		{
			tab = "Keys",
			rows = {
				fileType = "Sprite",
				fileSize = "84px", -- x3
				items = {
					{
						{
							image = "File:Silver Keys.png",
							page = "Silver Key",
						},
					},
					{
						{
							image = "File:Golden Keys.png",
							page = "Golden Key",
						}
					},
					{
						{
							image = "File:Hero's Keys.png",
							page = "Hero's Key"
						},
					},
				},
			},
		},
	},
	OoS = {
		tabColumns = 4,
		{
			tab = "Item Screen",
			map = {
				image = "File:OoS Items Nav.png",
				maxWidth = 480,
				areas = {
					{
					    area = "rect 37 10 101 57",
					    page = "Wooden Sword",
					},
					{
					    area = "rect 102 10 165 57",
					    page = "Wooden Shield",
					},
					{
					    area = "rect 166 10 229 57",
					    page = "Boomerang",
					},
					{
					    area = "rect 230 10 293 57",
					    page = "Roc's Feather",
					},
					{
					    area = "rect 64 63 80 80",
					    page = "Mystical Seed",
					},
					{
					    area = "rect 37 58 101 104",
					    page = "Seed Satchel",
					},
					{
					    area = "rect 128 63 144 80",
					    page = "Mystical Seed",
					},
					{
					    area = "rect 102 58 165 104",
					    page = "Slingshot",
					},
					{
					    area = "rect 166 58 229 104",
					    page = "Rod of Seasons",
					},
					{
					    area = "rect 230 58 293 104",
					    page = "Bomb",
					},
					{
					    area = "rect 37 105 101 151",
					    page = "Shovel",
					},
					{
					    area = "rect 102 105 165 151",
					    page = "Power Bracelet",
					},
					{
					    area = "rect 166 105 229 151",
					    page = "Magnetic Glove",
					},
					{
					    area = "rect 37 152 101 198",
					    page = "Bombchu",
					},
					{
					    area = "rect 102 152 165 198",
					    page = "Biggoron's Sword",
					},
					{
					    area = "rect 230 152 293 198",
					    page = "Strange Flute",
					},
				},
				upgrades = {
					{
						image = "File:OoS Items Nav 2.png",
						changes = {
							["Wooden Sword"] = "Noble Sword",
							["Wooden Shield"] = "Iron Shield",
							["Boomerang"] = "Magic Boomerang",
							["Roc's Feather"] = "Fool's Ore",
							["Slingshot"] = "Hyper Slingshot",
						},
					},
					{
						image = "File:OoS Items Nav 3.png",
						changes = {
							["Noble Sword"] = "Master Sword",
							["Iron Shield"] = "Mirror Shield",
							["Fool's Ore"] = "Roc's Cape",
						},
					},
				},
			},
		},
		{
			tab = "Quest Status Screen",
			map = {
				image = "File:OoS Quest Status.png",
				maxWidth = 480,
				areas = {
					{
						area = "rect 19 5 43 28",
						page = "Master's Plaque",
					},
					{
						area = "rect 43 5 67 28",
						page = "Magic Potion",
					},
					{
						area=  "rect 67 5 92 23",
						page = "Trading Sequence",
					},
					{
						area = "rect 92 5 116 28",
						page = "Huge Maku Seed",
						display = "Maku Seed",
					},
					{
						area = "rect 116 5 141 23",
						page = "Gasha Seed",
					},
					{
					    area = "rect 19 28 43 51",
					    page = "Gnarled Key",
					},
					{
					    area = "rect 43 28 67 51",
					    page = "Ricky's Gloves",
					},
					{
					    area = "rect 67 28 92 51",
					    page = "Bomb Flower",
					},
					{
					    area = "rect 92 28 116 51",
					    page = "Treasure Map",
					},
					{
					    area = "rect 112 28 141 51",
					    page = "Jewel",
					},
					{
					    area = "rect 19 51 43 74",
					    page = "Star-Shaped Ore",
					},
					{
					    area = "rect 43 51 67 74",
					    page = "Red Ore",
					},
					{
					    area = "rect 67 51 92 74",
					    page = "Blue Ore",
					},
					{
					    area = "rect 92 51 116 74",
					    page = "Member's Card",
					},
					{
					    area = "rect 116 51 141 74",
					    page = "Magic Ring",
					},
					{
					    area = "rect 8 80 29 148",
					    page = "L-1 Ring Box",
					},
					{
					    area = "rect 29 80 57 148",
					    page = "Magic Ring",
					},
				},
				upgrades = {
					{
						image =  "File:OoS Quest Status 2.png",
						areas = {
							{
								area = "rect 29 80 104 148",
								page = "Magic Ring",
							},
						},
						changes = {
							["Master's Plaque"] = "Zora's Flippers",
							["Ricky's Gloves"] = "Floodgate Key",
							["Bomb Flower"] = "Rusty Bell",
							["Star-Shaped Ore"] = "Ribbon",
							["Red Ore"] = "Hard Ore",
							["Blue Ore"] = "",
							["L-1 Ring Box"] = "L-2 Ring Box",
						},
					},
					{
						image = "File:OoS Quest Status 3.png",
						areas = {
							{
								area = "rect 29 80 152 148",
								page = "Magic Ring",
							},
						},
						changes = {
							["Rusty Bell"] = "Pirate's Bell",
							["Ribbon"] = "Spring Banana",
							["L-2 Ring Box"] = "L-3 Ring Box",
						},
					},
					{
						image = "File:OoS Quest Status 4.png",
						changes = {
							["Spring Bananas"] = "Dragon Key",
						},
					},
				},
			},
		},
		{
			tab = "Mystical Seeds",
			rows = {
				fileType = "Sprite",
				fileSize = "24px",
				items = {
					"Ember Seed",
					"Scent Seed",
					"Pegasus Seed",
					"Gale Seed",
					"Mystery Seed",
				},
			},
		},
		{
			tab = "Flutes",
			rows = {
				fileType = "Sprite",
				fileSize = "48px",
				items = {
					"Ricky's Flute",
					"Dimitri's Flute",
					"Moosh's Flute",
				},
			},
		},
		{
			tab = "Jewels",
			rows = {
				fileType = "Sprite",
				fileSize = "42px",
				items = {
					"Round Jewel",
					"Pyramid Jewel",
					"Square Jewel",
					"X-Shaped Jewel",
				},
			},
		},
		{
			tab = "Trading Sequence",
			rows = {
				fileType = "Sprite",
				scale = 3,
				items = {
					"Cuccodex",
					"Lon Lon Egg",
					"Ghastly Doll",
					"Iron Pot",
					"Lava Soup",
					"Goron Vase",
					"Fish",
					"Megaphone",
					"Mushroom",
					"Wooden Bird",
					"Engine Grease",
					"Phonograph",
					"Noble Sword",
				},
			},
		},
		{
			tab = "Essences of Nature",
			rows = {
				spacing = "16px",
				fileType = "Sprite",
				fileSize = "48x48px",
				items = {
					"Fertile Soil",
					"Gift of Time",
					"Bright Sun",
					"Soothing Rain",
					"Nurturing Warmth",
					"Blowing Wind",
					"Seed of Life",
					"Changing Seasons",
				},
			},
		},
		{
			tab = "Magic Rings",
			rows = {
				fileType = "Sprite",
				fileSize = "48px",
				maxWidth = 450, -- to render 8x8 rows
				items = {
					"Friendship Ring",
					"Power Ring L-1",
					"Power Ring L-2",
					"Power Ring L-3",
					"Armor Ring L-1",
					"Armor Ring L-2",
					"Armor Ring L-3",
					"Red Ring",
					"Blue Ring",
					"Green Ring",
					"Cursed Ring",
					"Expert's Ring",
					"Blast Ring",
					"Rang Ring L-1",
					"GBA Time Ring",
					"Maple's Ring",
					"Steadfast Ring",
					"Pegasus Ring",
					"Toss Ring",
					"Heart Ring L-1",
					"Heart Ring L-2",
					"Swimmer's Ring",
					"Charge Ring",
					"Light Ring L-1",
					"Light Ring L-2",
					"Bomber's Ring",
					"Green Luck Ring",
					"Blue Luck Ring",
					"Gold Luck Ring",
					"Red Luck Ring",
					"Green Holy Ring",
					"Blue Holy Ring",
					"Red Holy Ring",
					"Snowshoe Ring",
					"Roc's Ring",
					"Quicksand Ring",
					"Red Joy Ring",
					"Blue Joy Ring",
					"Gold Joy Ring",
					"Green Joy Ring",
					"Discovery Ring",
					"Rang Ring L-2",
					"Octo Ring",
					"Moblin Ring",
					"Like Like Ring",
					"Subrosian Ring",
					"First Gen Ring",
					"Spin Ring",
					"Bombproof Ring",
					"Energy Ring",
					"Dbl. Edged Ring",
					"GBA Nature Ring",
					"Slayer's Ring",
					"Rupee Ring",
					"Victory Ring",
					"Sign Ring",
					"100th Ring",
					"Whisp Ring",
					"Gasha Ring",
					"Peace Ring",
					"Zora Ring",
					"Fist Ring",
					"Whimsical Ring",
					"Protection Ring",
				},
			},
		},
		{
			tab = "Dungeon Items",
			rows = {
				fileType = "Sprite",
				scale = 3,
				items = {
					"Dungeon Map",
					"Compass",
					"Small Key",
					"Boss Key",
				},
			},
		},
		{
			tab = "Other Items",
			rows = {
				fileType = "Sprite",
				scale = 3,
				items = {
					"Heart",
					"Heart Container",
					"Piece of Heart",
					"Ore Chunk",
					"Red Bomb",
					"Rupee",
				},
			},
		},
	},
	OoA = {
		tabColumns = 4,
		{
			tab = "Item Screen",
			map = {
				image = "File:OoA Items Nav.png",
				maxWidth = 480,
				areas = {
					{
					    area = "rect 37 10 101 57",
					    page = "Wooden Sword",
					},
					{
					    area = "rect 102 10 165 57",
					    page = "Wooden Shield",
					},
					{
					    area = "rect 166 10 229 57",
					    page = "Power Bracelet",
					},
					{
					    area = "rect 230 10 293 57",
					    page = "Switch Hook",
					},
					{
					    area = "rect 64 63 80 80",
					    page = "Mystical Seed",
					},
					{
					    area = "rect 37 58 101 104",
					    page = "Seed Satchel",
					},
					{
					    area = "rect 128 63 144 80",
					    page = "Mystical Seed",
					},
					{
					    area = "rect 102 58 165 104",
					    page = "Seed Shooter",
					},
					{
						area = "rect 199 67 224 94",
						page = "Tune of Echoes",
					},
					{
					    area = "rect 166 58 229 104",
					    page = "Harp of Ages",
					},
					{
					    area = "rect 230 58 293 104",
					    page = "Bomb",
					},
					{
					    area = "rect 37 105 101 151",
					    page = "Shovel",
					},
					{
					    area = "rect 102 105 165 151",
					    page = "Roc's Feather",
					},
					{
					    area = "rect 166 105 229 151",
					    page = "Cane of Somaria",
					},
					{
						area = "rect 230 105 293 151",
						page = "Boomerang",
					},
					{
					    area = "rect 37 152 101 198",
					    page = "Bombchu",
					},
					{
					    area = "rect 102 152 165 198",
					    page = "Biggoron's Sword",
					},
					{
					    area = "rect 230 152 293 198",
					    page = "Strange Flute",
					},
				},
				upgrades = {
					{
						image = "File:OoA Items Nav 2.png",
						changes = {
							["Wooden Sword"] = "Noble Sword",
							["Wooden Shield"] = "Iron Shield",
							["Power Bracelet"] = "Power Glove",
							["Switch Hook"] = "Long Hook",
							["Tune of Echoes"] = "Tune of Currents",
						},
					},
					{
						image = "File:OoA Items Nav 3.png",
						changes = {
							["Noble Sword"] = "Master Sword",
							["Iron Shield"] = "Mirror Shield",
							["Tune of Currents"] = "Tune of Ages",
						},
					},
				},
			},
		},
		{
			tab = "Quest Status Screen",
			map = {
				image = "File:OoA Quest Status.png",
				maxWidth = 480,
				areas = {
					{
						area = "rect 19 5 43 28",
						page = "Zora's Flippers",
					},
					{
						area = "rect 43 5 67 28",
						page = "Magic Potion",
					},
					{
						area=  "rect 67 5 92 23",
						page = "Trading Sequence",
					},
					{
						area = "rect 92 5 116 28",
						page = "Fairy Dust",
					},
					{
						area = "rect 116 5 141 23",
						page = "Gasha Seed",
					},
					{
					    area = "rect 19 28 43 51",
					    page = "Graveyard Key",
					},
					{
					    area = "rect 43 28 67 51",
					    page = "Cheval Rope",
					},
					{
					    area = "rect 67 28 92 51",
					    page = "Cracked Tuni Nut",
					},
					{
					    area = "rect 92 28 116 51",
					    page = "Brother Emblem",
					},
					{
					    area = "rect 112 28 141 51",
					    page = "Slate",
					},
					{
					    area = "rect 19 51 43 74",
					    page = "Lava Juice",
					},
					{
					    area = "rect 43 51 67 74",
					    page = "Rock Brisket",
					},
					{
					    area = "rect 67 51 92 74",
					    page = "Library Key",
					},
					{
					    area = "rect 92 51 116 74",
					    page = "Book of Seals",
					},
					{
					    area = "rect 116 51 141 74",
					    page = "Magic Ring",
					},
					{
					    area = "rect 8 80 29 148",
					    page = "L-1 Ring Box",
					},
					{
					    area = "rect 29 80 57 148",
					    page = "Magic Ring",
					},
				},
				upgrades = {
					{
						image = "File:OoA Quest Status 2.png",
						areas = {
							{
								area = "rect 29 80 104 148",
								page = "Magic Ring",
							},
						},
						changes = {
							["Fairy Dust"] = "Zora Scale",
							["Cheval Rope"] = "Ricky's Gloves",
							["Cracked Tuni Nut"] = "Tuni Nut",
							["Lava Juice"] = "Letter of Introduction",
							["Rock Brisket"] = "Goron Vase",
							["L-1 Ring Box"] = "L-2 Ring Box",
						},
					},
					{
						image = "File:OoA Quest Status 3.png",
						areas = {
							{
								area = "rect 29 80 152 148",
								page = "Magic Ring",
							},
						},
						changes = {
							["Zora Scale"] = "Tokay Eyeball",
							["Ricky's Gloves"] = "Island Chart",
							["Tuni Nut"] = "Scent Seedling",
							["Letter of Introduction"] = "Mermaid Key",
							["Goron Vase"] = "Goronade",
							["L-2 Ring Box"] = "L-3 Ring Box",
						},
					},
					{
						image = "File:OoA Quest Status 4.png",
						changes = {
							["Scent Seedling"] = "Bomb Flower",
							["Zora's Flippers"] = "Mermaid Suit",
							["Tokay Eyeball"] = {
								page = "Huge Maku Seed",
								display = "Maku Seed",
							},
							["Goronade"] = "Old Mermaid Key",
						},
					},
					{
						image = "File:OoA Quest Status 5.png",
						changes = {
							["Bomb Flower"] = "Crown Key",
						}
					}
				},
			},
		},
		{
			tab = "Mystical Seeds",
			rows = {
				fileType = "Sprite",
				fileSize = "24px",
				items = {
					"Ember Seed",
					"Scent Seed",
					"Pegasus Seed",
					"Gale Seed",
					"Mystery Seed",
				},
			},
		},
		{
			tab = "Flutes",
			rows = {
				fileType = "Sprite",
				fileSize = "48px",
				items = {
					-- Flutes ordered by ascending memory values
					"Ricky's Flute",
					"Dimitri's Flute",
					"Moosh's Flute",
				},
			},
		},
		{
			tab = "Trading Sequence",
			rows = {
				fileType = "Sprite",
				scale = 3,
				items = {
					"Poe Clock",
					"Stationery",
					"Stink Bag",
					"Tasty Meat",
					"Doggie Mask", 
					"Dumbbell",
					"Cheesy Mustache",
					"Funny Joke",
					"Touching Book",
					"Magic Oar",
					"Sea Ukulele",
					"Broken Sword",
					"Noble Sword",
				},
			},
		},
		{
			tab = "Essences of Time",
			rows = {
				fileType = "Sprite",
				fileSize = "48x48px",
				spacing = "16px",
				items = {
					"Eternal Spirit",
					"Ancient Wood",
					"Echoing Howl",
					"Burning Flame",
					"Sacred Soil",
					"Lonely Peak",
					"Rolling Sea",
					"Falling Star",
				},
			},
		},
		{
			tab = "Magic Rings",
			rows = {
				fileType = "Sprite",
				fileSize = "48px",
				maxWidth = 450, -- to render 8x8 rows
				items = {
					"Friendship Ring",
					"Power Ring L-1",
					"Power Ring L-2",
					"Power Ring L-3",
					"Armor Ring L-1",
					"Armor Ring L-2",
					"Armor Ring L-3",
					"Red Ring",
					"Blue Ring",
					"Green Ring",
					"Cursed Ring",
					"Expert's Ring",
					"Blast Ring",
					"Rang Ring L-1",
					"GBA Time Ring",
					"Maple's Ring",
					"Steadfast Ring",
					"Pegasus Ring",
					"Toss Ring",
					"Heart Ring L-1",
					"Heart Ring L-2",
					"Swimmer's Ring",
					"Charge Ring",
					"Light Ring L-1",
					"Light Ring L-2",
					"Bomber's Ring",
					"Green Luck Ring",
					"Blue Luck Ring",
					"Gold Luck Ring",
					"Red Luck Ring",
					"Green Holy Ring",
					"Blue Holy Ring",
					"Red Holy Ring",
					"Snowshoe Ring",
					"Roc's Ring",
					"Quicksand Ring",
					"Red Joy Ring",
					"Blue Joy Ring",
					"Gold Joy Ring",
					"Green Joy Ring",
					"Discovery Ring",
					"Rang Ring L-2",
					"Octo Ring",
					"Moblin Ring",
					"Like Like Ring",
					"Subrosian Ring",
					"First Gen Ring",
					"Spin Ring",
					"Bombproof Ring",
					"Energy Ring",
					"Dbl. Edged Ring",
					"GBA Nature Ring",
					"Slayer's Ring",
					"Rupee Ring",
					"Victory Ring",
					"Sign Ring",
					"100th Ring",
					"Whisp Ring",
					"Gasha Ring",
					"Peace Ring",
					"Zora Ring",
					"Fist Ring",
					"Whimsical Ring",
					"Protection Ring",
				},
			},
		},
		{
			tab = "Dungeon Items",
			rows = {
				fileType = "Sprite",
				scale = 3,
				items = {
					"Dungeon Map",
					"Compass",
					"Small Key",
					"Boss Key",
				},
			},
		},
		{
			tab = "Other Items",
			rows = {
				fileType = "Sprite",
				scale = 3,
				items = {
					"Heart",
					"Heart Container",
					"Piece of Heart",
					"Rupee",
				},
			},
		},
	},
	MM3D = {
		{
			tab = "Gear",
			map = {
				image = "File:MM3D Gear Nav.png",
				maxWidth = 471,
				areas = {
					{
						area = "rect 11 11 46 46",
						page = "Pictograph Box",
					},
					{
						area = "rect 158 11 194 46",
						page = "Kokiri Sword",
					},
					{
						area = "rect 208 11 244 46",
						page = "Hero's Shield",
					},
					{
						area = "rect 268 11 304 46",
						page = "Moon's Tear",
					},
					{
						area = "rect 268 58 304 94",
						page = "Letter to Kafei",
					},
					{
						area = "rect 268 106 304 142",
						page = "Special Delivery to Mama",
					},
					{
						area = "rect 268 154 304 190",
						page = "Room Key",
					},
					{
						area = "circle 95 117 24",
						page = "Odolwa's Remains",
					},
					{
						area = "circle 95 37 24",
						page = "Goht's Remains",
					},
					{
						area = "circle 49 78 24",
						page = "Gyorg's Remains",
					},
					{
						area = "circle 141 78 24",
						page = "Twinmold's Remains",
					},
					{
						area = "rect 176 54 226 100",
						page = "Piece of Heart"
					},
					{
						area = "rect 11 155 43 181",
						page = "Ocarina of Time (Item)",
					},
					{
						area = "rect 43 155 75 181",
						page = "Deku Pipes",
					},
					{
						area = "rect 75 155 107 181",
						page = "Goron Drums",
					},
					{
						area = "rect 107 155 130 181",
						page = "Zora Guitar",
					},
					{
						area = "rect 168 115 194 141",
						page = "Quiver",
					},
					{
						area = "rect 208 115 234 141",
						page = "Bomb Bag",
					},
					{
						area = "rect 155 155 181 181",
						page = "Fishing Hole Pass",
					},
					{
						area = "rect 188 155 214 181",
						page = "Adult Wallet",
					},
					{
						area = "rect 221 155 247 181",
						page = "Bombers' Notebook"
					},
				},
				upgrades = {
					{
						image = "File:MM3D Gear Nav 2.png",
						changes = {
							["Kokiri Sword"] = "Razor Sword",
							["Hero's Shield"] = "Mirror Shield",
							["Quiver"] = "Large Quiver",
							["Bomb Bag"] = "Big Bomb Bag",
							["Adult Wallet"] = "Giant Wallet",
							["Moon's Tear"] = "Town Title Deed",
							["Letter to Kafei"] = "Pendant of Memories",
						}
					},
					{
						image = "File:MM3D Gear Nav 3.png",
						changes = {
							["Razor Sword"] = "Gilded Sword",
							["Large Quiver"] = "Largest Quiver",
							["Big Bomb Bag"] = "Biggest Bomb Bag",
							["Town Title Deed"] = "Swamp Title Deed",
 						},
					},
					{
						image = "File:MM3D Gear Nav 4.png",
						changes = {
							["Piece of Heart"] = "Heart Container",
							["Swamp Title Deed"] = "Mountain Title Deed",
						},
					},
					{
						image = "File:MM3D Gear Nav 5.png",
						changes = {
							["Mountain Title Deed"] = "Ocean Title Deed",
						},
					},
				},
			},
		},
		{
			tab = "Items",
			map = {
				image = "File:MM3D Items Nav.png",
				maxWidth = 372,
				areas = {
					{
						area = "rect 10 10 46 46",
						page = "Hero's Bow",
					},
					{
						area = "rect 58 10 94 46",
						page = "Fire Arrow",
					},
					{
						area = "rect 106 10 142 46",
						page = "Ice Arrow",
					},
					{
						area = "rect 154 10 190 46",
						page = "Light Arrow",
					},
					{
						area = "rect 202 10 238 46",
						page = "Magic Bean",
					},
					{
						area = "rect 10 58 46 94",
						page = "Bomb",
					},
					{
						area = "rect 58 58 94 94",
						page = "Bombchu",
					},
					{
						area = "rect 106 58 142 94",
						page = "Deku Stick",
					},
					{
						area = "rect 154 58 190 94",
						page = "Deku Nut",
					},
					{
						area = "rect 202 58 238 94",
						page = "Bottle",
					},
					{
						area = "rect 10 106 46 142",
						page = "Powder Keg",
					},
					{
						area = "rect 58 106 94 142",
						page = "Lens of Truth",
					},
					{
						area = "rect 106 106 142 142",
						page = "Hookshot",
					},
					{
						area = "rect 154 106 190 142",
						page = "Great Fairy's Sword",
					},
					{
						area = "rect 202 106 238 142",
						page = "Bottle",
					},
					{
						area = "rect 10 154 46 190",
						page = "Bottle",
					},
					{
						area = "rect 58 154 94 190",
						page = "Bottle",
					},
					{
						area = "rect 106 154 142 190",
						page = "Bottle",
					},
					{
						area = "rect 154 154 190 190",
						page = "Bottle",
					},
					{
						area = "rect 202 154 238 190",
						page = "Bottle",
					},
				},
			},
		},
		{
			tab = "Masks",
			map = {
				image = "File:MM3D Masks Nav.png",
				maxWidth = 384,
				areas = {
					{
						area = "rect 5 10 41 46",
						page = "Postman's Hat",
					},
					{
						area = "rect 47 10 83 46",
						page = "All-Night Mask",
					},
					{
						area = "rect 89 10 125 46",
						page = "Blast Mask",
					},
					{
						area = "rect 131 10 167 46",
						page = "Stone Mask",
					},
					{
						area = "rect 173 10 209 46",
						page = "Great Fairy Mask",
					},
					{
						area = "rect 215 10 251 46",
						page = "Deku Mask",
					},
					{
						area = "rect 5 58 41 94",
						page = "Keaton Mask",
					},
					{
						area = "rect 47 58 83 94",
						page = "Bremen Mask",
					},
					{
						area = "rect 89 58 125 94",
						page = "Bunny Hood",
					},
					{
						area = "rect 131 58 167 94",
						page = "Don Gero's Mask",
					},
					{
						area = "rect 173 58 209 94",
						page = "Mask of Scents",
					},
					{
						area = "rect 215 58 251 94",
						page = "Goron Mask",
					},
					{
						area = "rect 5 106 41 142",
						page = "Romani's Mask",
					},
					{
						area = "rect 47 106 83 142",
						page = "Troupe Leader's Mask",
					},
					{
						area = "rect 89 106 125 142",
						page = "Kafei's Mask",
					},
					{
						area = "rect 131 106 167 142",
						page = "Couple's Mask",
					},
					{
						area = "rect 173 106 209 142",
						page = "Mask of Truth",
					},
					{
						area = "rect 215 106 251 142",
						page = "Zora Mask",
					},
					{
						area = "rect 5 154 41 190",
						page = "Kamaro's Mask",
					},
					{
						area = "rect 47 154 83 190",
						page = "Gibdo Mask",
					},
					{
						area = "rect 89 154 125 190",
						page = "Garo's Mask",
					},
					{
						area = "rect 131 154 167 190",
						page = "Captain's Hat",
					},
					{
						area = "rect 173 154 209 190",
						page = "Giant's Mask",
					},
					{
						area = "rect 215 154 251 190",
						page = "Fierce Deity Mask",
					},
				},
			},
		},
		{
			tab = "Songs",
			map = {
				image = "File:MM3D Songs Nav.png",
				maxWidth = 459,
				areas = {
					{
						area = "rect 0 0 58 44",
						page = "Song of Time",
					},
					{
						area = "rect 62 0 120 44",
						page = "Song of Healing",
					},
					{
						area = "rect 124 0 182 44",
						page = "Epona's Song",
					},
					{
						area = "rect 186 0 244 44",
						page = "Song of Soaring",
					},
					{
						area = "rect 252 0 306 44",
						page = "Song of Storms",
					},
					{
						area = "rect 0 46 58 90",
						page = "Sonata of Awakening",
					},
					{
						area = "rect 62 46 120 90",
						page = "Goron Lullaby",
					},
					{
						area = "rect 124 46 182 90",
						page = "New Wave Bossa Nova",
					},
					{
						area = "rect 186 46 244 90",
						page = "Elegy of Emptiness",
					},
					{
						area = "rect 252 46 306 90",
						page = "Oath to Order",
					},
					{
						area = "rect 62 92 120 136",
						page = "Inverted Song of Time",
					},
					{
						area = "rect 124 92 182 136",
						page = "Song of Double Time",
					},
					{
						area = "rect 186 82 244 136",
						page = "Scarecrow's Song",
					},
				},
			},
		},
	},
	MM = {
		tabColumns = 3,
		{
			tab = "Quest Status",
			map = {
				image = "File:MM Quest Status.png",
				maxWidth = 480,
				areas = {
					{
						area = "rect 17 26 49 58",
						page = "Bombers' Notebook",
					},
					{
						area = "rect 66 24 112 68",
						page = "Piece of Heart",
					},
					{
						area = "rect 165 18 197 50",
						page = "Odolwa's Remains",
					},
					{
						area = "rect 198 38 230 70",
						page = "Goht's Remains",
					},
					{
						area = "rect 165 60 197 92",
						page = "Twinmold's Remains",
					},
					{
						area = "rect 130 38 162 60",
						page = "Gyorg's Remains",
					},
					{
						area = "rect 12 77 28 101",
						page = "Song of Time",
					},
					{
						area = "rect 35 77 50 101",
						page = "Song of Healing",
					},
					{
						area = "rect 58 77 74 101",
						page = "Epona's Song",
					},
					{
						area = "rect 81 77 97 101",
						page = "Song of Soaring",
					},
					{
						area = "rect 104 77 120 101",
						page = "Song of Storms",
					},
					{
						area = "rect 12 100 28 124",
						page = "Sonata of Awakening",
					},
					{
						area = "rect 35 100 51 124",
						page = "Goron Lullaby",
					},
					{
						area = "rect 58 100 74 124",
						page = "New Wave Bossa Nova",
					},
					{
						area = "rect 81 100 97 124",
						page = "Elegy of Emptiness",
					},
					{
						area = "rect 104 100 120 124",
						page = "Oath to Order",
					},
					{
						area = "rect 131 89 163 121",
						page = "Kokiri Sword",
					},
					{
						area = "rect 200 89 232 121",
						page = "Hero's Shield",
					},
					{
						area = "rect 128 124 160 156",
						page = "Quiver"
					},
					{
						area = "rect 203 125 235 157",
						page = "Bomb Bag",
					},
				},
				upgrades = {
					{
						image = "File:MM Quest Status 2.png",
						changes = {
							["Kokiri Sword"] = "Razor Sword",
							["Hero's Shield"] = "Mirror Shield",
							["Quiver"] = "Large Quiver",
							["Bomb Bag"] = "Big Bomb Bag",
						},
					},
					{
						image = "File:MM Quest Status 3.png",
						changes = {
							["Razor Sword"] = "Gilded Sword",
							["Large Quiver"] = "Largest Quiver",
							["Big Bomb Bag"] = "Biggest Bomb Bag",
						},
					},
				},
			},
		},
		{
			tab = "Masks",
			map = {
				image = "File:MM Masks.png",
				maxWidth = 480,
				areas = {
					{
					    area = "rect 25 26 64 60",
					    page = "Postman's Hat",
					},
					{
					    area = "rect 65 26 100 60",
					    page = "All-Night Mask",
					},
					{
					    area = "rect 101 26 135 60",
					    page = "Blast Mask",
					},
					{
					    area = "rect 136 26 172 60",
					    page = "Stone Mask",
					},
					{
					    area = "rect 173 26 208 60",
					    page = "Great Fairy Mask",
					},
					{
					    area = "rect 209 26 246 60",
					    page = "Deku Mask",
					},
					{
					    area = "rect 25 61 64 98",
					    page = "Keaton Mask",
					},
					{
					    area = "rect 65 61 100 98",
					    page = "Bremen Mask",
					},
					{
					    area = "rect 101 61 135 98",
					    page = "Bunny Hood",
					},
					{
					    area = "rect 136 61 172 98",
					    page = "Don Gero's Mask",
					},
					{
					    area = "rect 173 61 208 98",
					    page = "Mask of Scents",
					},
					{
					    area = "rect 209 61 246 98",
					    page = "Goron Mask",
					},
					{
					    area = "rect 25 99 64 132",
					    page = "Romani's Mask",
					},
					{
					    area = "rect 65 99 100 132",
					    page = "Troupe Leader's Mask",
					},
					{
					    area = "rect 101 99 135 132",
					    page = "Kafei's Mask",
					},
					{
					    area = "rect 136 99 172 132",
					    page = "Couple's Mask",
					},
					{
					    area = "rect 173 99 208 132",
					    page = "Mask of Truth",
					},
					{
					    area = "rect 209 99 246 132",
					    page = "Zora Mask",
					},
					{
					    area = "rect 25 133 64 169",
					    page = "Kamaro's Mask",
					},
					{
					    area = "rect 65 133 100 169",
					    page = "Gibdo Mask",
					},
					{
					    area = "rect 101 133 135 169",
					    page = "Garo's Mask",
					},
					{
					    area = "rect 136 133 172 169",
					    page = "Captain's Hat",
					},
					{
					    area = "rect 173 133 208 169",
					    page = "Giant's Mask",
					},
					{
					    area = "rect 209 133 246 169",
					    page = "Fierce Deity's Mask",
					},
					{
					    area = "rect 0 0 271 181",
					    page = "Mask",
					},
				}
			}
		},
		{
			tab = "C Items",
			map = {
				image = "File:MM Inventory.png",
				maxWidth = 480,
				areas = {
					{
					    area = "rect 30 27 66 61",
					    page = "Ocarina of Time (Item)",
					},
					{
					    area = "rect 67 27 101 61",
					    page = "Hero's Bow",
					},
					{
					    area = "rect 102 27 136 61",
					    page = "Fire Arrow",
					},
					{
					    area = "rect 137 27 171 61",
					    page = "Ice Arrow",
					},
					{
					    area = "rect 172 27 206 61",
					    page = "Light Arrow",
					},
					{
					    area = "rect 30 62 66 96",
					    page = "Bomb",
					},
					{
					    area = "rect 67 62 101 96",
					    page = "Bombchu",
					},
					{
					    area = "rect 102 62 136 96",
					    page = "Deku Stick",
					},
					{
					    area = "rect 137 62 171 96",
					    page = "Deku Nut",
					},
					{
					    area = "rect 172 62 206 96",
					    page = "Magic Bean",
					},
					{
					    area = "rect 30 97 66 131",
					    page = "Powder Keg",
					},
					{
					    area = "rect 67 97 101 131",
					    page = "Picto Box",
					},
					{
					    area = "rect 102 97 136 131",
					    page = "Lens of Truth",
					},
					{
					    area = "rect 137 97 171 131",
					    page = "Hookshot",
					},
					{
					    area = "rect 172 97 206 131",
					    page = "Great Fairy's Sword",
					},
					{
					    area = "rect 211 27 245 61",
					    page = "Room Key",
					},
					{
					    area = "rect 211 62 245 96",
					    page = "Title Deed",
					},
					{
					    area = "rect 211 97 245 131",
					    page = "Pendant of Memories",
					},
					{
					    area = "rect 30 132 245 167",
					    page = "Bottle",
					},
				},
			},
		},
		{
			tab = "Bottle Items",
			rows = {
				fileSize = "64x64px",
				fileType = "Icon",
				items = {
					"Big Poe Soul",
					"Blue Potion",
					"Bug",
					"Chateau Romani",
					"Deku Princess",
					"Fairy",
					"Fish",
					"Gold Dust",
					"Green Potion",
					"Hot Springwater",
					"Bug",
					"Magic Mushroom",
					"Milk",
					"Poe Soul",
					"Red Potion",
					"Seahorse",
					"Spring Water",
					"Zora Egg"
				},
			},
		},
		{
			tab = "Trading Sequence",
			rows = {
				fileType = "Icon",
				fileSize = "64x64px",
				items = {
					"Moon's Tear",
					"Land Title Deed",
					"Swamp Title Deed",
					"Mountain Title Deed",
					"Ocean Title Deed",
				},
			},
		},
		{
			tab = "Dungeon Items",
			rows = {
				fileType = "Icon",
				fileSize = "48x48px",
				items = {
					"Small Key",
					"Boss Key",
					"Dungeon Map",
					"Compass",
				},
			},
		},
		{
			tab = "Wallets",
			rows = {
				fileType = "Icon",
				fileSize = "64x64px",
				items = {
					"Adult Wallet",
					"Giant Wallet",
				},
			},
		},
	},
	OoT3D = {
		{
			tab = "Gear",
			subtabs = {
				{
					tab = "Child Link",
					map = {
						image = "File:OoT3D Gear Child Nav.png",
						maxWidth = 486,
						areas = {
							{
								area = "rect 9 27 55 71",
								page = "Piece of Heart",
							},
							{
								area = "rect 93 5 121 33",
								page = "Light Medallion",
							},
							{
								area = "rect 125 23 153 51",
								page = "Forest Medallion",
							},
							{
								area = "rect 125 57 153 85",
								page = "Fire Medallion",
							},
							{
								area = "rect 93 75 121 102",
								page = "Water Medallion",
							},
							{
								area = "rect 61 57 89 85",
								page = "Spirit Medallion",
							},
							{
								area = "rect 61 23 89 51",
								page = "Shadow Medallion",
							},
							{
								area = "rect 14 102 50 138",
								page = "Fairy Ocarina",
							},
							{
								area = "rect 61 111 89 140",
								page = "Kokiri's Emerald",
							},
							{
								area = "rect 93 111 121 139",
								page = "Goron's Ruby",
							},
							{
								area = "rect 125 111 153 139",
								page = "Zora's Sapphire",
							},
							{
								area = "rect 13 152 44 185",
								page = "Shard of Agony",
							},
							{
								area = "rect 49 152 80 184",
								page = "Gerudo Token",
							},
							{
								area = "rect 87 154 116 183",
								page = "Token",
							},
							{
								area = "rect 172 155 202 181",
								page = "Bullet Bag",
							},
							{
								area = "rect 208 155 238 181",
								page = "Bomb Bag",
							},
							{
								area = "rect 243 155 273 181",
								page = "Goron's Bracelet",
							},
							{
								area = "rect 278 155 308 181",
								page = "Silver Scale",
							},
							{
								area = "rect 174 6 214 42",
								page = "Kokiri Sword",
							},
							{
								area = "rect 174 54 214 90",
								page = "Deku Shield",
							},
							{
								area = "rect 222 54 262 90",
								page = "Hylian Shield",
							},
							{
								area = "rect 174 102 214 138",
								page = "Kokiri Tunic",
							},
						},
						upgrades = {
							{
								image = "File:OoT3D Gear Child Nav 2.png",
								changes = {
									["Bullet Bag"] = "Bigger Bullet Bag",
									["Bomb Bag"] = "Big Bomb Bag",
									["Silver Scale"] = "Golden Scale",
								},
							},
							{
								image = "File:OoT3D Gear Child Nav 3.png",
								changes = {
									["Fairy Ocarina"] = "Ocarina of Time (Item)",
									["Bigger Bullet Bag"] = "Biggest Bullet Bag",
									["Big Bomb Bag"] = "Biggest Bomb Bag",
								},
							},
						},
					},	
				},
				{
					tab = "Adult Link",
					map = {
						image = "File:OoT3D Gear Adult Nav.png",
						maxWidth = 486,
						areas = {
							{
								area = "rect 9 27 55 71",
								page = "Piece of Heart",
							},
							{
								area = "rect 93 5 121 33",
								page = "Light Medallion",
							},
							{
								area = "rect 125 23 153 51",
								page = "Forest Medallion",
							},
							{
								area = "rect 125 57 153 85",
								page = "Fire Medallion",
							},
							{
								area = "rect 93 75 121 102",
								page = "Water Medallion",
							},
							{
								area = "rect 61 57 89 85",
								page = "Spirit Medallion",
							},
							{
								area = "rect 61 23 89 51",
								page = "Shadow Medallion",
							},
							{
								area = "rect 14 102 50 138",
								page = "Ocarina of Time (Item)",
							},
							{
								area = "rect 61 111 89 140",
								page = "Kokiri's Emerald",
							},
							{
								area = "rect 93 111 121 139",
								page = "Goron's Ruby",
							},
							{
								area = "rect 125 111 153 139",
								page = "Zora's Sapphire",
							},
							{
								area = "rect 13 152 44 185",
								page = "Shard of Agony",
							},
							{
								area = "rect 49 152 80 184",
								page = "Gerudo Token",
							},
							{
								area = "rect 87 154 116 183",
								page = "Token",
							},
							{
								area = "rect 172 155 202 181",
								page = "Quiver",
							},
							{
								area = "rect 208 155 238 181",
								page = "Bomb Bag",
							},
							{
								area = "rect 243 155 273 181",
								page = "Silver Gauntlets",
							},
							{
								area = "rect 278 155 308 181",
								page = "Silver Scale",
							},
							{
								area = "rect 222 6 262 42",
								page = "Master Sword",
							},
							{
								area = "rect 270 6 310 42",
								page = "Giant's Knife",
							},
							{
								area = "rect 222 54 262 90",
								page = "Hylian Shield",
							},
							{
								area = "rect 270 54 310 90",
								page = "Mirror Shield",
							},
							{
								area = "rect 174 102 214 138",
								page = "Kokiri Tunic",
							},
							{
								area = "rect 222 102 262 138",
								page = "Goron Tunic",
							},
							{
								area = "rect 270 102 310 138",
								page = "Zora Tunic",
							},
						},
						upgrades = {
							{
								image = "File:OoT3D Gear Adult Nav 2.png",
								changes = {
									["Giant's Knife"] = "Broken Giant's Knife",
									["Quiver"] = "Big Quiver",
									["Bomb Bag"] = "Big Bomb Bag",
									["Silver Gauntlets"] = "Golden Gauntlets",
									["Silver Scale"] = "Golden Scale",
								},
							},
							{
								image = "File:OoT3D Gear Adult Nav 3.png",
								changes = {
									["Broken Giant's Knife"] = "Biggoron's Sword",
									["Big Quiver"] = "Biggest Quiver",
									["Big Bomb Bag"] = "Biggest Bomb Bag",
								},
							},
						},
					},	
				},
			},
		},
		{
			tab = "Items",
			map = {
				image = "File:OoT3D Items Nav.png",
				maxWidth = 372,
				areas = {
					{
						area = "rect 10 10 46 46",
						page = "Deku Stick",
					},
					{
						area = "rect 58 10 94 46",
						page = "Deku Nut",
					},
					{
						area = "rect 106 10 142 46",
						page = "Bomb",
					},
					{
						area = "rect 154 10 190 46",
						page = "Bombchu",
					},
					{
						area = "rect 202 10 238 46",
						page = "Din's Fire",
					},
					{
						area = "rect 10 58 46 94",
						page = "Fairy Slingshot",
					},
					{
						area = "rect 58 58 94 94",
						page = "Boomerang",
					},
					{
						area = "rect 106 58 142 94",
						page = "Fairy Bow",
					},
					{
						area = "rect 154 58 190 94",
						page = "Hookshot",
					},
					{
						area = "rect 202 58 238 94",
						page = "Farore's Wind",
					},
					{
						area = "rect 10 106 46 142",
						page = "Lens of Truth",
					},
					{
						area = "rect 58 106 94 142",
						page = "Megaton Hammer",
					},
					{
						area = "rect 106 106 142 142",
						page = "Iron Boots",
					},
					{
						area = "rect 154 106 190 142",
						page = "Hover Boots",
					},
					{
						area = "rect 202 106 238 142",
						page = "Nayru's Love",
					},
					{
						area = "rect 10 154 46 190",
						page = "Bottle",
					},
					{
						area = "rect 58 154 94 190",
						page = "Bottle",
					},
					{
						area = "rect 106 154 142 190",
						page = "Bottle",
					},
					{
						area = "rect 154 154 190 190",
						page = "Bottle",
					},
					{
						area = "rect 202 154 238 190",
						page = "Magic Bean",
					},
				},
				upgrades = {
					{
						image = "File:OoT3D Items Nav 2.png",
						changes = {
							["Hookshot"] = "Longshot" },
							},
						},
					},
				},
		{	
			tab = "Arrows",
			map = {
				image = "File:OoT3D Arrows Nav.png",
				maxWidth= 152,
				areas = {
					{
						area = "rect 10 10 46 46",
						page = "Arrow",
					},
					{
						area = "rect 58 10 94 46",
						page = "Fire Arrow",
					},
					{
						area = "rect 10 58 46 94",
						page = "Ice Arrow",
					},
					{
						area = "rect 58 58 94 94",
						page = "Light Arrow"
					},
				},
			},
		},
		{
			tab = "Songs",
			map = {
				image = "File:OoT3D Songs Nav.png",
				maxWidth = 426,
				areas = {
					{
						area = "rect 0 0 68 40",
						page = "Zelda's Lullaby",
					},
					{
						area = "rect 0 44 68 84",
						page = "Epona's Song",
					},
					{
						area = "rect 0 88 68 128",
						page = "Saria's Song"
					},
					{
						area = "rect 72 0 140 40",
						page = "Sun's Song",
					},
					{
						area = "rect 72 44 140 84",
						page = "Song of Time",
					},
					{
						area = "rect 72 88 140 128",
						page = "Song of Storms",
					},
					{
						area = "rect 144 0 212 40",
						page = "Minuet of Forest",
					},
					{
						area = "rect 144 44 212 84",
						page = "Bolero of Fire",
					},
					{
						area = "rect 144 88 212 128",
						page = "Serenade of Water",
					},
					{
						area = "rect 216 0 284 40",
						page = "Requiem of Spirit",
					},
					{
						area = "rect 216 44 284 84",
						page = "Nocturne of Shadow",
					},
					{
						area = "rect 216 88 284 128",
						page = "Prelude of Light",
					},
				},
			},
		},
	},
	OoT = {
		tabColums = 3,
		{
			tab = "C Items",
			map = {
				image = "File:OOT Inventory.png",
				maxWidth = 480,
				areas = {
					{
					    area = "rect 28 27 59 58", 
					    page = "Deku Stick",
					},
					{
					    area = "rect 28 64 59 95", 
					    page = "Fairy Slingshot",
					},
					{
					    area = "rect 28 101 59 132", 
					    page = "Boomerang",
					},
					{
					    area = "rect 28 138 59 169", 
					    page = "Bottle",
					},
					
					{
					    area = "rect 65 27 96 58", 
					    page = "Deku Nut",
					},
					{
					    area = "rect 65 64 96 95", 
					    page = "Fairy Ocarina",
					},
					{
					    area = "rect 65 101 96 132", 
					    page = "Lens of Truth",
					},
					{
					    area = "rect 65 138 96 169", 
					    page = "Bottle",
					},
					
					{
					    area = "rect 102 27 133 58", 
					    page = "Bomb",
					},
					{
					    area = "rect 102 64 133 95", 
					    page = "Bombchu",
					},
					{
					    area = "rect 102 101 133 132", 
					    page = "Magic Bean",
					},
					{
					    area = "rect 102 138 133 169", 
					    page = "Bottle",
					},
					
					{
					    area = "rect 139 27 170 58", 
					    page = "Fairy Bow",
					},
					{
					    area = "rect 139 64 170 95", 
					    page = "Hookshot",
					},
					{
					    area = "rect 139 101 170 132", 
					    page = "Megaton Hammer",
					},
					{
					    area = "rect 139 138 170 169", 
					    page = "Bottle",
					},
					
					{
					    area = "rect 176 27 207 58", 
					    page = "Fire Arrow",
					},
					{
					    area = "rect 176 64 207 95", 
					    page = "Ice Arrow",
					},
					{
					    area = "rect 176 101 207 132", 
					    page = "Light Arrow",
					},
					{
					    area = "rect 213 27 244 58", 
					    page = "Din's Fire",
					},
					{
					    area = "rect 213 64 244 95", 
					    page = "Farore's Wind",
					},
					{
					    area = "rect 213 101 244 132", 
					    page = "Nayru's Love",
					},
				},
				upgrades = {
					{
						image = "File:OOT Inventory2.png",
						changes = {
							["Fairy Ocarina"] = "Ocarina of Time (Item)",
							["Hookshot"] = "Longshot" }
						},
					},
				},
			},
		},
	LADX = {
		tabColumns = 3,
		{
			tab = "Items",
			map = {
				maxWidth = 320,
				image = "File:LA Inventory.png",
				leftColumn = {
					fileType = "Sprite",
					fileSize = "16px",
					items = {
						"Boomerang",
					},
				},
				areas = {
					{
					    area = "rect 12 2 67 30",
					    page = "Shield",
					},
					{
					    area = "rect 12 50 35 82",
					    page = "Shovel",
					},
					{
					    area = "rect 12 90 35 125",
					    page = "Pegasus Boots",
					},
					{
					    area = "rect 12 130 35 178",
					    page = "Hookshot",
					},
					{
					    area = "rect 12 170 35 224",
					    page = "Magical Rod",
					},
					{
					    area = "rect 12 210 35 274",
					    page = "Roc's Feather",
					},
					{
					    area = "rect 96 0 144 31",
					    page = "Sword",
					},
					{
					    area = "rect 75 48 100 76",
					    page = "Bomb",
					},
					{
					    area = "rect 75 98 100 127",
					    page = "Power Bracelet",
					},
					{
					    area = "rect 75 138 100 175",
					    page = "Bow",
					},
					{
					    area = "rect 75 178 100 223",
					    page = "Ocarina",
					},
					{
					    area = "rect 75 218 100 271",
					    page = "Sleepy Toadstool",
					},
					{
					    area = "rect 160 1 206 30",
					    page = "Rupee",
					},
					{
					    area = "rect 158 46 178 79",
					    page = "Flippers",
					},
					{
					    area = "rect 190 46 210 79",
					    page = "Secret Medicine",
					},
					{
					    area = "rect 222 46 242 79",
					    page = "Secret Seashell",
					},
					{
					    area = "rect 254 46 288 79",
					    page = "Magnifying Lens",
					},
					{
					    area = "rect 158 80 178 113",
					    page = "Tail Key",
					},
					{
					    area = "rect 190 80 210 113",
					    page = "Angler Key",
					},
					{
					    area = "rect 222 80 242 113",
					    page = "Face Key",
					},
					{
					    area = "rect 254 80 274 113",
					    page = "Bird Key",
					},
					{
					    area = "rect 286 80 320 113",
					    page = "Golden Leaf",
					},
					{
					    area = "rect 155 125 307 275",
					    page = "Instrument of the Sirens",
					    display = "Instruments of the Sirens",
					},
				},
				upgrades = {
					{
						image = "File:LA Inventory 2.png",
						areas = {
							{
							    area = "rect 150 208 214 238",
							    page = "Clothes",
							},
							{
							    area = "rect 230 210 310 238",
							    page = "Piece of Heart",
							},
							{
							    area = "rect 167 243 275 268",
							    page = "The Travels of Link",
							},
						},
						changes = {
							["Sword"] = "Level 2 Sword",
							["Shield"] = "Mirror Shield",
							["Power Bracelet"] = "L-2 Power Bracelet",
							["Sleepy Toadstool"] = "Magic Powder",
							["Golden Leaf"] = "Slime Key",
							["Instruments of the Sirens"] = {
								area = "rect 155 125 307 198",
							},
						},
					},
				},
			},
		},
		{
			tab = "Clothes",
			rows = {
				fileType = "Subscreen Sprite",
				fileSize = "99px",
				items = {
					"Green Clothes",
					"Red Clothes",
					"Blue Clothes",
				},
			},
		},
		{
			tab = "Instruments of the Sirens",
			rows = {
				fileType = "Sprite",
				fileSize = "48x48px",
				items = {
					"Full Moon Cello",
					"Conch Horn",
					"Sea Lily's Bell",
					"Surf Harp",
					"Wind Marimba",
					"Coral Triangle",
					"Organ of Evening Calm",
					"Thunder Drum",
				},
			},
		},
		{
			tab = "Trading Sequence",
			rows = {
				fileType = "Sprite",
				scale = 3,
				items = {
					"Yoshi Doll",
					"Ribbon",
					"Dog Food",
					"Bananas",
					"Stick",
					"Honeycomb",
					"Pineapple",
					"Hibiscus",
					{
						image = "File:LADX Letter Sprite.png",
						page = "Goat's Letter"
					},
					"Broom",
					"Fishing Hook",
					"Necklace",
					"Scale",
					"Magnifying Lens",
				},
			},
		},
		{
			tab = "Dungeon Items",
			rows = {
				fileType = "Sprite",
				scale = 3,
				items = {
					"Map",
					"Compass",
					"Stone Beak",
					"Small Key",
					"Nightmare Key",
				},
			},
		},
		{
			tab = "Other Items",
			rows = {
				fileType = "Sprite",
				scale = 3,
				items = {
					"Fairy",
					"Heart",
					"Piece of Heart",
					"Heart Container",
					"Guardian Acorn",
					"Piece of Power",
					"Winged Item",
				},
			},
		},
	},
	ALttP = {
		{
			tab = "Subscreen",
			map = {
				image = "File:ALttP Items.png",
				maxWidth = 480,
				areas = {
					{
					    area = "rect 24 16 40 32",
					    page = "Bow & Arrows",
					},
					{
					    area = "rect 48 16 64 32",
					    page = "Boomerang",
					},
					{
					    area = "rect 72 16 88 32",
					    page = "Hookshot",
					},
					{
					    area = "rect 96 16 112 32",
					    page = "Bomb",
					},
					{
					    area = "rect 120 16 136 32",
					    page = "Mushroom",
					},
					{
					    area = "rect 24 40 40 56",
					    page = "Fire Rod",
					},
					{
					    area = "rect 48 40 64 56",
					    page = "Ice Rod",
					},
					{
					    area = "rect 72 40 88 56",
					    page = "Bombos Medallion",
					},
					{
					    area = "rect 96 40 112 56",
					    page = "Ether Medallion",
					},
					{
					    area = "rect 120 40 136 56",
					    page = "Quake Medallion",
					},
					{
					    area = "rect 24 64 40 80",
					    page = "Lantern",
					},
					{
					    area = "rect 48 64 64 80",
					    page = "Magic Hammer",
					},
					{
					    area = "rect 72 64 88 80",
					    page = "Shovel",
					},
					{
					    area = "rect 96 64 112 80",
					    page = "Bug-Catching Net",
					},
					{
					    area = "rect 120 64 136 80",
					    page = "Book of Mudora",
					},
					{
					    area = "rect 24 88 40 104",
					    page = "Bottle",
					},
					{
					    area = "rect 48 88 64 104",
					    page = "Cane of Somaria",
					},
					{
					    area = "rect 72 88 88 104",
					    page = "Cane of Byrna",
					},
					{
					    area = "rect 96 88 112 104",
					    page = "Magic Cape",
					},
					{
					    area = "rect 120 88 136 104",
					    page = "Magic Mirror",
					},
					{
					    area = "rect 192 8 208 24",
					    page = "Bow & Arrows",
					},
					{
					    area = "rect 200 30 232 40",
					    page = "Arrows",
					},
					{
					    area = "rect 168 24 232 40",
					    page = "Bow & Arrows",
					},
					{
					    area = "rect 192 72 208 88",
					    page = "Pendant of Power",
					},
					{
					    area = "rect 176 96 192 112",
					    page = "Pendant of Wisdom",
					},
					{
					    area = "rect 208 96 224 112",
					    page = "Pendant of Courage",
					},
					{
					    area = "rect 160 48 240 120",
					    page = "Pendant of Virtue",
					    display = "Pendants of Virtue"
					},
					{
					    area = "rect 24 176 40 192",
					    page = "Pegasus Shoes",
					},
					{
					    area = "rect 56 176 72 192",
					    page = "Power Glove",
					},
					{
					    area = "rect 88 176 104 192",
					    page = "Zora's Flippers",
					},
					{
					    area = "rect 120 176 136 192",
					    page = "Moon Pearl",
					},
					{
					    area = "rect 168 144 184 160",
					    page = "Fighter's Sword",
					},
					{
					    area = "rect 192 144 208 160",
					    page = "Green Clothes",
					},
					{
					    area = "rect 216 144 232 160",
					    page = "Fighter's Shield",
					},
					{
					    area = "rect 168 176 184 192",
					    page = "Dungeon Map",
					},
					{
					    area = "rect 192 176 208 192",
					    page = "Compass",
					},
					{
					    area = "rect 216 176 232 192",
					    page = "Big Key",
					},
				},
				upgrades = {
					{
						image = "File:ALttP Items 2.png",
						areas = {
							{
								area = "rect 168 32 232 40",
								page = "Silver Arrows",
							},
						},
						changes = {
							["Arrows"] = "",
							["Boomerang"] = "Magical Boomerang",
							["Mushroom"] = "Magic Powder",
							["Shovel"] = "Flute",
							["Bow & Arrows"] = "Bow & Silver Arrows",
							["Pendant of Virtue"] = {
								page = "Crystal",
								display = "Crystals",
							},
							["Pendant of Wisdom"] = "",
							["Pendant of Power"] = "",
							["Pendant of Courage"] = "",
							["Power Glove"] = "Titan's Mitt",
							["Fighter's Sword"] = "Master Sword",
							["Green Clothes"] = "Blue Mail",
							["Fighter's Shield"] = "Red Shield",
						},
					},
					{
						image = "File:ALttP Items 3.png",
						changes = {
							["Master Sword"] = "Master Sword Lv2",
							["Blue Mail"] = "Red Mail",
							["Red Shield"] = "Mirror Shield",
						},
					},
					{
						image = "File:ALttP Items 4.png",
						changes = {
							["Master Sword Lv2"] = "Master Sword Lv3",
						},
					},
				},
			},
		},
		{
			tab = "Bottle Items",
			rows = {
				fileType = "Inventory Sprite",
				fileSize = "42px",
				items = {
					"Bottle",
					"Medicine of Life",
					"Medicine of Magic",
					"Medicine of Life and Magic",
					"Fairy",
					"Bee",
					"Golden Bee",
				},
			},
		},
		{
			tab = "Other",
			rows = {
				scale = 3,
				fileType = "Sprite",
				items = {
					"Apple",
					"Heart",
					"Magical Decanter",
					"Small Key",
					"Piece of Heart",
					"Heart Container",
					"Super Bomb",
					"Basket"
				},
			},
		},
	},
	TAoL = {
		{
			tab = "Subscreen",
			map = {
				image = "File:TAoL Inventory.png",
				maxWidth = 224,
				areas = {
					{
						area= "rect 6 6 106 16",
						page = "Shield",
					},
					{
						area = "rect 6 22 106 32",
						page = "Jump"
					},
					{
						area = "rect 6 38 106 48",
						page = "Life",
					},
					{
						area = "rect 6 54 106 64",
						page = "Fairy"
					},
					{
						area = "rect 6 70 106 80",
						page = "Fire"
					},
					{
						area = "rect 6 86 106 96",
						page = "Reflect"
					},
					{
						area = "rect 6 102 106 112",
						page = "Spell",
					},
					{
						area = "rect 6 118 106 128",
						page = "Thunder"
					},
					{
						area = "rect 6 128 32 136",
						page = "Doll",
					},
					{
						area = "rect 6 136 32 144",
						page = "Key",
					},
					{
						area = "rect 6 144 32 152",
						page = "Crystal",
					},
					{
						area = "rect 40 134 48 154",
						page = "Candle",
					},
					{
						area = "rect 48 134 56 154",
						page = "Handy Glove",
					},
					{
						area = "rect 56 134 64 154",
						page = "Raft",
					},
					{
						area = "rect 64 134 72 154",
						page = "Boots",
					},
					{
						area = "rect 72 134 80 154",
						page = "Whistle",
					},
					{
						area = "rect 80 134 88 154",
						page = "Cross",
					},
					{
						area = "rect 88 134 96 154",
						page = "Hammer",
					},
					{
						area = "rect 96 134 104 154",
						page = "Magical Key",
					},
				},
			},
		},
		{
			tab = "Other",
			rows = {
				fileType = "Sprite",
				items = {
					"Child",
					"Doll",
					"Bowl of Hearts",
					"Magic Container",
					{
						image = "File:TAoL Magic Jar Blue Sprite.png",
						page = "Magic Jar",
					},
					"Treasure Bag",
					"Trophy",
					"Water of Life"
				},
			},
		},
	},
	TLoZ = {
		{
			tab = "Inventory",
			map = {
				image = "File:TLoZ Inventory Nav.png",
				maxWidth = 208,
				areas = {
					{
						area = "rect 8 3 24 19",
						page = "Raft",
					},
					{
						area = "rect 32 3 40 19",
						page = "Book of Magic",
					},
					{
						area = "rect 44 3 52 19",
						page = "Blue Ring",
					},
					{
						area = "rect 56 3 72 19",
						page = "Stepladder",
					},
					{
						area = "rect 76 4 84 19",
						page = "Magical Key",
					},
					{
						area = "rect 88 3 96 16",
						page = "Power Bracelet",
					},
					{
						area = "rect 12 27 20 43",
						page = "Boomerang",
					},
					{
						area = "rect 12 43 20 59",
						page = "Recorder",
					},
					{
						area = "rect 36 27 44 43",
						page = "Bomb",
					},
					{
						area = "rect 36 27 44 59",
						page = "Food",
					},
					{
						area = "rect 56 27 64 43",
						page = "Arrow",
					},
					{
						area = "rect 64 27 72 43",
						page = "Bow",
					},
					{
						area = "rect 60 43 68 59",
						page = "Letter"
					},
					{
						area = "rect 84 27 92 43",
						page = "Blue Candle",
					},
					{
						area = "rect 84 43 92 59",
						page = "Magical Rod",
					},
				},
				upgrades = {
					{
						image = "File:TLoZ Inventory Nav 2.png",
						changes = {
							["Letter"] = "Life Potion",
						},
					},
					{
						image = "File:TLoZ Inventory Nav 3.png",
						changes = {
							["Life Potion"] = "2nd Potion",
							["Blue Ring"] = "Red Ring",
							["Boomerang"] = "Magical Boomerang",
							["Arrow"] = "Silver Arrow",
							["Blue Candle"] = "Red Candle",
						},
					},
				},
			},
		},
		{
			tab = "Swords and Shields",
			rows = {
				fileType = "Sprite",
				scale = 2,
				items = {
					{
						"Sword",
						"White Sword",
						"Magical Sword",
					},
					{
						"Wooden Shield",
						"Magical Shield",
					},
				},
			},
		},
		{
			tab = "Dungeon Items",
			rows = {
				fileType = "Sprite",
				scale = 2,
				items = {
					"Map",
					"Compass",
					"Key",
				},
			},
		},
		{
			tab = "Pickups",
			rows = {
				fileType = "Sprite",
				scale = 2,
				items = {
					"Clock",
					"Heart",
					"Heart Container",
					"Fairy",
					"Rupee",
					"Triforce Shard"
				},
			},
		},
	},
}
Advertisement