Difference between revisions of "Module:Availability"

From Nookipedia, the Animal Crossing wiki
(adding notes inside module)
m
Line 12: Line 12:
 
     --[[
 
     --[[
 
     This part of the code is used to insert each source.
 
     This part of the code is used to insert each source.
     Please following the syntax carefully, more info is on the documentation:
+
     Please follow the syntax carefully, more info is on the documentation:
 
     ["name_of_source"] = { "source_image", "source_image_size", "link_to_source", "name_of_source", "special_text_for_source" }
 
     ["name_of_source"] = { "source_image", "source_image_size", "link_to_source", "name_of_source", "special_text_for_source" }
 
     ]]--
 
     ]]--

Revision as of 23:19, March 21, 2022

Module documentation (view)


Usage

This Lua module outputs the availability of each source presented and is used for the {{Availability}} template to account for preprocessor node count limits. Data is stored in a table, and can determine how certain variables are used.

To add additional sources, see Module:Availability/Data.

See also

This page is fully-protected to prevent editing by non-administrator users

local p = {}
function p.outputAvailability (frame)
	local function isEmpty(s)
		return s == nil or s == ''
	end
	-- Imported function from https://www.lua.org/pil/13.4.3.html --
	local function setDefault (t, d)
    	local mt = {__index = function () return d end}
    	setmetatable(t, mt)
    end
    local data = {
    	--[[
    	This part of the code is used to insert each source.
    	Please follow the syntax carefully, more info is on the documentation:
    	["name_of_source"] = { "source_image", "source_image_size", "link_to_source", "name_of_source", "special_text_for_source" }
    	]]--
    
		--Special Characters--
		["Blanca"] = { "Blanca NH Character Icon.png", "22px", "Blanca", "Blanca", "[[Blanca]]" },
		["Blathers"] = { "Blathers NH Character Icon.png", "22px", "Blathers", "Blathers", "[[Blathers]]" },
		["Booker"] = { "Booker NH Character Icon.png", "22px", "Booker", "Booker", "[[Booker]]" },
		["Brewster"] = { "Brewster NH Character Icon.png", "22px", "Brewster", "Brewster", "[[Brewster]]" },
		["C.J."] = { "C.J. NH Character Icon.png", "22px", "C.J.", "C.J.", "[[C.J.]]" },
		["Celeste"] = { "Celeste NH Character Icon.png", "22px", "Celeste", "Celeste", "[[Celeste]]" },
		["Chip"] = { "Chip NH Character Icon.png", "22px", "Chip", "Chip", "[[Chip]]" },
		["Copper"] = { "Copper NH Character Icon.png", "22px", "Copper", "Copper", "[[Copper]]" },
		["Cornimer"] = { "Cornimer NH Character Icon.png", "22px", "Cornimer", "Cornimer", "[[Cornimer]]" },
		["Cyrus"] = { "Cyrus NH Character Icon.png", "22px", "Cyrus", "Cyrus", "[[Cyrus]]" },
		["DJ KK"] = { "DJ KK NH Character Icon.png", "22px", "DJ KK", "DJ KK", "[[DJ KK]]" },
		["Daisy Mae"] = { "Daisy Mae NH Character Icon.png", "22px", "Daisy Mae", "Daisy Mae", "[[Daisy Mae]]" },
		["Digby"] = { "Digby NH Character Icon.png", "22px", "Digby", "Digby", "[[Digby]]" },
		["Don Resetti"] = { "Resetti NH Character Icon.png", "22px", "Don Resetti", "Don Resetti", "[[Don Resetti]]" },
		["Don"] = { "Don NH Character Icon.png", "22px", "Don Resetti", "Don", "[[Don Resetti|Don]]" },
		["Dr. Shrunk"] = { "Shrunk NH Character Icon.png", "22px", "Shrunk", "Dr. Shrunk", "[[Dr. Shrunk]]" },
		["Farley"] = { "Farley PG.png", "22px", "Farley", "Farley", "[[Farley]]" },
		["Flick"] = { "Flick NH Character Icon.png", "22px", "Flick", "Flick", "[[Flick]]" },
		["Franklin"] = { "Franklin NH Character Icon.png", "22px", "Franklin", "Franklin", "[[Franklin]]" },
		["Gracie"] = { "Gracie NH Character Icon.png", "22px", "Gracie", "Gracie", "[[Gracie]]" },
		["Grams"] = { "Grams NH Character Icon.png", "22px", "Grams", "Grams", "[[Grams]]" },
		["Gullivarrr"] = { "Gullivarrr NH Character Icon.png", "22px", "Gullivarrr", "Gullivarrr", "[[Gullivarrr]]" },
		["Gulliver"] = { "Gulliver NH Character Icon.png", "22px", "Gulliver", "Gulliver", "[[Gulliver]]" },
		["Harriet"] = { "Harriet NH Character Icon.png", "22px", "Harriet", "Harriet", "[[Harriet]]" },
		["Harvey"] = { "Harvey NH Character Icon.png", "22px", "Harvey", "Harvey", "[[Harvey]]" },
		["Isabelle"] = { "Isabelle NH Character Icon.png", "22px", "Isabelle", "Isabelle", "[[Isabelle]]" },
		["Jack"] = { "Jack NH Character Icon.png", "22px", "Jack", "Jack", "[[Jack]]" },
		["Jingle"] = { "Jingle NH Character Icon.png", "22px", "Jingle", "Jingle", "[[Jingle]]" },
		["Joan"] = { "Joan NH Character Icon.png", "22px", "Joan", "Joan", "[[Joan]]" },
		["K.K. Slider"] = { "K.K. NH Character Icon.png", "22px", "K.K. Slider", "K.K. Slider", "[[K.K. Slider]]" },
		["K.K."] = { "K.K. NH Character Icon.png", "22px", "K.K. Slider", "K.K.", "[[K.K. Slider|K.K.]]" },
		["Kaitlin"] = { "Kaitlin WW.png", "22px", "Kaitlin", "Kaitlin", "[[Kaitlin]]" },
		["Kapp'n"] = { "Kapp'n NH Character Icon.png", "22px", "Kapp'n", "Kapp'n", "[[Kapp'n]]" },
		["Katie"] = { "Katie NH Character Icon.png", "22px", "Katie", "Katie", "[[Katie]]" },
		["Katrina"] = { "Katrina NH Character Icon.png", "22px", "Katrina", "Katrina", "[[Katrina]]" },
		["Kicks"] = { "Kicks NH Character Icon.png", "22px", "Kicks", "Kicks", "[[Kicks]]" },
		["Label"] = { "Label NH Character Icon.png", "22px", "Label", "Label", "[[Label]]" },
		["Leif"] = { "Leif NH Character Icon.png", "22px", "Leif", "Leif", "[[Leif]]" },
		["Leila"] = { "Leila NH Character Icon.png", "22px", "Leila", "Leila", "[[Leila]]" },
		["Leilani"] = { "Leilani NH Character Icon.png", "22px", "Leilani", "Leilani", "[[Leilani]]" },
		["Lottie"] = { "Lottie NH Character Icon.png", "22px", "Lottie", "Lottie", "[[Lottie]]" },
		["Luna"] = { "Luna NH Character Icon.png", "22px", "Luna", "Luna", "[[Luna]]" },
		["Lyle"] = { "Lyle NH Character Icon.png", "22px", "Lyle", "Lyle", "[[Lyle]]" },
		["Mabel"] = { "Mabel NH Character Icon.png", "22px", "Mabel", "Mabel", "[[Mabel]]" },
		["Mom"] = { "Present NH Inv Icon.png", "22px", "Mom", "Mom", "[[Mom]]" },
		["Mr. Resetti"] = { "Resetti NH Character Icon.png", "22px", "Mr. Resetti", "Mr. Resetti", "[[Mr. Resetti]]" },
		["Nat"] = { "Nat NH Character Icon.png", "22px", "Nat", "Nat", "[[Nat]]" },
		["Niko"] = { "Niko NH Character Icon.png", "22px", "Niko", "Niko", "[[Niko]]" },
		["Nookling"] = { "Nooklings NH Character Icon.png", "22px", "Timmy and Tommy", "Nookling", "[[Timmy and Tommy|Nookling]]" },
		["Nooklings"] = { "Nooklings NH Character Icon.png", "22px", "Timmy and Tommy", "Nooklings", "[[Timmy and Tommy|Nooklings]]" },
		["Orville"] = { "Orville NH Character Icon.png", "22px", "Orville", "Orville", "[[Orville]]" },
		["Pascal"] = { "Pascal NH Character Icon.png", "22px", "Pascal", "Pascal", "[[Pascal]]" },
		["Pavé"] = { "Pavé NH Character Icon.png", "22px", "Pavé", "Pavé", "[[Pavé]]" },
		["Pelly"] = { "Pelly NH Character Icon.png", "22px", "Pelly", "Pelly", "[[Pelly]]" },
		["Pete"] = { "Pete NH Character Icon.png", "22px", "Pete", "Pete", "[[Pete]]" },
		["Phineas"] = { "Phineas NH Character Icon.png", "22px", "Phineas", "Phineas", "[[Phineas]]" },
		["Phyllis"] = { "Phyllis NH Character Icon.png", "22px", "Phyllis", "Phyllis", "[[Phyllis]]" },
		["Porter"] = { "Porter NH Character Icon.png", "22px", "Porter", "Porter", "[[Porter]]" },
		["Redd"] = { "Redd NH Character Icon.png", "22px", "Redd", "Redd", "[[Redd]]" },
		["Reese"] = { "Reese NH Character Icon.png", "22px", "Reese", "Reese", "[[Reese]]" },
		["Resetti"] = { "Resetti NH Character Icon.png", "22px", "Mr. Resetti", "Resetti", "[[Mr. Resetti|Resetti]]" },
		["Rover"] = { "Rover NH Character Icon.png", "22px", "Rover", "Rover", "[[Rover]]" },
		["Sable"] = { "Sable NH Character Icon.png", "22px", "Sable", "Sable", "[[Sable]]" },
		["Saharah"] = { "Saharah NH Character Icon.png", "22px", "Saharah", "Saharah", "[[Saharah]]" },
		["Serena"] = { "Serena CF.png", "22px", "Serena", "Serena", "[[Serena]]" },
		["Shrunk"] = { "Shrunk NH Character Icon.png", "22px", "Shrunk", "Shrunk", "[[Dr. Shrunk|Shrunk]]" },
		["Snowboy"] = { "Snowboy HHD Character Icon.png", "22px", "Snowboy", "Snowboy", "[[Snowboy]]" },
		["Snowmam"] = { "Snowmam HHD Character Icon.png", "22px", "Snowmam", "Snowmam", "[[Snowmam]]" },
		["Snowman (New Leaf)"] = { "Snowman HHD Character Icon.png", "22px", "Snowman (New Leaf)", "Snowman", "[[Snowman (New Leaf)|Snowman]]" },
		["Snowman"] = { "Snowboy HHD Character Icon.png", "22px", "Snowboy", "Snowman", "[[Snowboy]]" },
		["Snowtyke"] = { "Snowtyke HHD Character Icon.png", "22px", "Snowtyke", "Snowtyke", "[[Snowtyke]]" },
		["Timmy & Tommy"] = { "Nooklings NH Character Icon.png", "22px", "Timmy and Tommy", "Timmy & Tommy", "[[Timmy and Tommy|Timmy & Tommy]]" },
		["Timmy and Tommy"] = { "Nooklings NH Character Icon.png", "22px", "Timmy and Tommy", "Timmy and Tommy", "[[Timmy and Tommy]]" },
		["Timmy"] = { "Nookling NH Character Icon.png", "22px", "Timmy and Tommy", "Timmy", "[[Timmy and Tommy|Timmy]]" },
		["Tom Nook"] = { "Tom Nook NH Character Icon.png", "22px", "Tom Nook", "Tom Nook", "[[Tom Nook]]" },
		["Tommy"] = { "Nookling NH Character Icon.png", "22px", "Timmy and Tommy", "Tommy", "[[Timmy and Tommy|Tommy]]" },
		["Tortimer"] = { "Tortimer NH Character Icon.png", "22px", "Tortimer", "Tortimer", "[[Tortimer]]" },
		["Wardell"] = { "Wardell NH Character Icon.png", "22px", "Wardell", "Wardell", "[[Wardell]]" },
		["Wendell"] = { "Wendell NH Character Icon.png", "22px", "Wendell", "Wendell", "[[Wendell]]" },
		["Wilbur"] = { "Wilbur NH Character Icon.png", "22px", "Wilbur", "Wilbur", "[[Wilbur]]" },
		["Wishy the Star"] = { "Emotion Flourish NH Icon.png", "22px", "Wishy the Star", "Wishy the Star", "[[Wishy the Star]]" },
		["Wisp"] = { "Wisp NH Character Icon.png", "22px", "Wisp", "Wisp", "[[Wisp]]" },
		["Zipper"] = { "Zipper NH Character Icon.png", "22px", "Zipper", "Zipper", "[[Zipper]]" },
		
		
		--Locations--
		["Able Sisters"] = { "Able Sisters NH Map Icon.png", "22px", "Able Sisters", "Able Sisters", "[[Able Sisters]]" },
		["Animal Island"] = { "Animal Island PG Icon.png", "18px", "Animal Island", "Animal Island", "[[Animal Island]]" },
		["Apparel shop"] = { "Apparel Shop HHP Icon.png", "22px", "Apparel shop", "Apparel shop", "[[Apparel shop]]" },
		["Bank of Nook"] = { "Nook Inc. Emblem.png", "22px", "", "", "[[Bank of Nook]]" },
		["Café"] = { "Café HHP Icon.png", "22px", "Café", "Café", "[[Café]]" },
		["Campground"] = { "MEOW Coupon Icon.png", "22px", "Campground", "Campground", "[[Campground]]" },
		["Club LOL"] = { "Club LOL NL Sign.png", "22px", "Club LOL", "Club LOL", "[[Club LOL]]" },
		["Crazy Redd's"] = { "Redd NH Character Icon.png", "22px", "Crazy Redd's", "Crazy Redd's", "[[Crazy Redd's]]" },
		["Dodo Airlines"] = { "Airport (Blue) NH Map Icon.png", "22px", "Dodo", "Dodo Airlines", "[[Dodo|Dodo Airlines]]" },
		["Dump"] = { "Dump Model PG Model.png", "22px", "Dump", "Dump", "[[Dump]]" },
		["Farway Museum"] = { "Museum NL Logo.png", "22px", "Farway Museum", "Farway Museum", "[[Farway Museum]]" },
		["Fortune Shop"] = { "Katrina NH Character Icon.png", "22px", "Fortune Shop", "Fortune Shop", "[[Fortune Shop]]" },
		["Garden Shop"] = { "Leif NH Character Icon.png", "22px", "Garden Shop", "Garden Shop", "[[Garden Shop]]" },
		["GracieGrace"] = { "Design GracieGrace.png", "22px", "GracieGrace", "GracieGrace", "[[GracieGrace]]" },
		["Happy Room Academy"] = { "Gold HHA Trophy NH Icon.png", "22px", "Happy Home Academy", "Happy Room Academy", "[[Happy Home Academy|Happy Room Academy]]" },
		["HRA"] = { "Gold HHA Trophy NH Icon.png", "22px", "Happy Home Academy", "HRA", "[[Happy Home Academy|HRA]]" },
		["HHA"] = { "Gold HHA Trophy NH Icon.png", "22px", "Happy Home Academy", "HHA", "[[Happy Home Academy|HHA]]" },
		["Happy Home Academy"] = { "Gold HHA Trophy NH Icon.png", "22px", "Happy Home Academy", "Happy Home Academy", "[[Happy Home Academy|Happy Home Academy]]" },
		["Hospital"] = { "Hospital HHP Icon.png", "22px", "Hospital", "Hospital", "[[Hospital]]" },
		["Island Shop"] = { "Grams NH Character Icon.png", "22px", "Tortimer Island#Souvenir Shop", "Island Shop", "[[Tortimer Island#Souvenir Shop|Island Shop]]" },
		["Jolly Redd's Treasure Trawler"] = { "Redd NH Character Icon.png", "22px", "Jolly Redd's Treasure Trawler", "Jolly Redd's Treasure Trawler", "[[Jolly Redd's Treasure Trawler]]" },
		["Kicks (shop)"] = { "Kicks NH Character Icon.png", "22px", "Kicks (shop)", "Kicks (shop)", "[[Kicks (shop)]]" },
		["Kicks's Co-Op"] = { "Kicks NH Character Icon.png", "22px", "", "", "[[Kicks]]'s Co-Op" },
		["Leif's Co-Op"] = { "Leif NH Character Icon.png", "22px", "", "", "[[Leif]]'s Co-Op" },
		["Lost & Found"] = { "Booker NH Character Icon.png", "22px", "Lost and found", "Lost & Found", "[[Lost and found|Lost & Found]]" },
		["Lost and found"] = { "Booker NH Character Icon.png", "22px", "Lost and found", "Lost and found", "[[Lost and found]]" },
		["Museum Shop"] = { "Museum NL Logo.png", "22px", "Museum Shop", "Museum Shop", "[[Museum Shop]]" },
		["Museum"] = { "Museum NL Logo.png", "22px", "Museum", "Museum", "[[Museum]]" },
		["Nook 'n' Go"] = { "Tom Nook NH Character Icon.png", "22px", "Nook 'n' Go", "Nook 'n' Go", "[[Nook 'n' Go]]" },
		["Nook Inc."] = { "Nook Inc. Emblem.png", "22px", "", "", "[[Nook Inc.]]" },
		["Nook's Cranny (Tom Nook)"] = { "Tom Nook NH Character Icon.png", "22px", "Nook's Cranny", "Nook's Cranny", "[[Nook's Cranny]]" },
		["Nook's Cranny (Upgraded)"] = { "Nook's Cranny (Upgraded) NH Map Icon.png", "22px", "", "", "[[Nook's Cranny]] (upgraded)" },
		["Nook's Cranny (upgraded)"] = { "Nook's Cranny (Upgraded) NH Map Icon.png", "22px", "", "", "[[Nook's Cranny]] (upgraded)" },
		["Nook's Cranny"] = { "Nook's Cranny NH Map Icon.png", "22px", "Nook's Cranny", "Nook's Cranny", "[[Nook's Cranny]]" },
		["Nook's Homes"] = { "Design Nook's Homes.png", "22px", "Nook's Homes", "Nook's Homes", "[[Nook's Homes]]" },
		["NookLink"] = { "Nook Inc. Emblem.png", "22px", "", "", "[[NookLink]]" },
		["Nookington's"] = { "Tom Nook NH Character Icon.png", "22px", "Nookington's", "Nookington's", "[[Nookington's]]" },
		["Nookway"] = { "Tom Nook NH Character Icon.png", "22px", "Nookway", "Nookway", "[[Nookway]]" },
		["Paradise Planning office"] = { "Flower Icon HHP.png", "22px", "", "", "[[Paradise Planning]] office" },
		["Paradise Planning"] = { "Flower Icon HHP.png", "22px", "Paradise Planning", "Paradise Planning", "[[Paradise Planning]]" },
		["Post office"] = { "Post Office Logo NL.png", "22px", "Post office", "Post office", "[[Post office]]" },
		["Re-Tail"] = { "Design Re-Tail.png", "22px", "Re-Tail", "Re-Tail", "[[Re-Tail]]" },
		["Recycle box"] = { "Recycle Box NH Logo.png", "20px", "Recycle box", "Recycle box", "[[Recycle box]]" },
		["Redd's Co-Op"] = { "Redd NH Character Icon.png", "22px", "", "", "[[Redd]]'s Co-Op" },
		["Redd's Gallery"] = { "Redd NH Character Icon.png", "22px", "Crazy Redd's", "Redd's Gallery", "[[Crazy Redd's|Redd's Gallery]]" },
		["Resident Services Tent"] = { "Resident Services (Tent) NH Map Icon.png", "22px", "Resident Services", "Resident Services Tent", "[[Resident Services|Resident Services Tent]]" },
		["Resident Services"] = { "Resident Services NH Map Icon.png", "22px", "Resident Services", "Resident Services", "[[Resident Services]]" },
		["Restaurant"] = { "Restaurant HHP Icon.png", "22px", "Restaurant", "Restaurant", "[[Restaurant]]" },
		["Saharah's Co-Op"] = { "Saharah NH Character Icon.png", "22px", "", "", "[[Saharah]]'s Co-Op" },
		["School"] = { "School HHP Icon.png", "22px", "School", "School", "[[School]]" },
		["Shampoodle"] = { "Harriet NH Character Icon.png", "22px", "Shampoodle", "Shampoodle", "[[Shampoodle]]" },
		["Souvenir Shop"] = { "Grams NH Character Icon.png", "22px", "Tortimer Island#Souvenir Shop", "Souvenir Shop", "[[Tortimer Island#Souvenir Shop|Souvenir Shop]]" },
		["Spotlight item"] = { "Tom Nook NH Character Icon.png", "22px", "Spotlight item", "Spotlight item", "[[Spotlight item]]" },
		["Super T&T"] = { "Nooklings NH Icon.png", "22px", "Super T&T", "Super T&T", "[[Super T&T]]" },
		["T&T Emporium"] = { "Nooklings NH Icon.png", "22px", "T&T Emporium", "T&T Emporium", "[[T&T Emporium]]" },
		["T&T Mart"] = { "Nooklings NH Icon.png", "22px", "T&T Mart", "T&T Mart", "[[T&T Mart]]" },
		["T.I.Y."] = { "Nooklings NH Icon.png", "22px", "T.I.Y.", "T.I.Y.", "[[T.I.Y.]]" },
		["The Roost"] = { "Design The Roost.png", "22px", "The Roost", "The Roost", "[[The Roost]]" },
		["Timmy and Tommy's store"] = { "Nooklings NH Icon.png", "22px", "Timmy and Tommy's store", "Timmy and Tommy's store", "[[Timmy and Tommy's store]]" },
		["Tom Nook Point System"] = { "Tom Nook NH Character Icon.png", "22px", "Tom Nook Point System", "Tom Nook Point System", "[[Tom Nook Point System]]" },
		["Tom Nook's store"] = { "Tom Nook NH Character Icon.png", "22px", "Tom Nook's store", "Tom Nook's store", "[[Tom Nook's store]]" },
		["Tortimer Island"] = { "Tortimer NH Character Icon.png", "22px", "Tortimer Island", "Tortimer Island", "[[Tortimer Island]]" },
		
		
		--Villagers--
		["Friendship"] = { "Emotion Love NH Icon.png", "22px", "Friendship", "Friendship", "[[Friendship]]" },
		["Cranky"] = { "Emotion Aggravation NH Icon cropped.png", "22px", "Cranky", "Cranky villager", "[[Cranky|Cranky villager]]" },
		["Cranky villager"] = { "Emotion Aggravation NH Icon cropped.png", "22px", "Cranky", "Cranky villager", "[[Cranky|Cranky villager]]" },
		["Jock"] = { "Emotion Pride NH Icon cropped.png", "22px", "Jock", "Jock villager", "[[Jock|Jock villager]]" },
		["Jock villager"] = { "Emotion Pride NH Icon cropped.png", "22px", "Jock", "Jock villager", "[[Jock|Jock villager]]" },
		["Lazy"] = { "Emotion Sleepy NH Icon cropped.png", "22px", "Lazy", "Lazy villager", "[[Lazy|Lazy villager]]" },
		["Lazy villager"] = { "Emotion Sleepy NH Icon cropped.png", "22px", "Lazy", "Lazy villager", "[[Lazy|Lazy villager]]" },
		["Smug"] = { "Emotion Smirking NH Icon cropped.png", "22px", "Smug", "Smug villager", "[[Smug|Smug villager]]" },
		["Smug villager"] = { "Emotion Smirking NH Icon cropped.png", "22px", "Smug", "Smug villager", "[[Smug|Smug villager]]" },
		["Big sister"] = { "Emotion Mischief NH Icon cropped.png", "22px", "Big sister", "Big sister villager", "[[Big sister|Big sister villager]]" },
		["Big sister villager"] = { "Emotion Mischief NH Icon cropped.png", "22px", "Big sister", "Big sister villager", "[[Big sister|Big sister villager]]" },
		["Normal"] = { "Emotion Happiness NH Icon cropped.png", "22px", "Normal", "Normal villager", "[[Normal|Normal villager]]" },
		["Normal villager"] = { "Emotion Happiness NH Icon cropped.png", "22px", "Normal", "Normal villager", "[[Normal|Normal villager]]" },
		["Peppy"] = { "Emotion Encouraging NH Icon cropped.png", "22px", "Peppy", "Peppy villager", "[[Peppy|Peppy villager]]" },
		["Peppy villager"] = { "Emotion Encouraging NH Icon cropped.png", "22px", "Peppy", "Peppy villager", "[[Peppy|Peppy villager]]" },
		["Snooty"] = { "Emotion Disagreement NH Icon cropped.png", "22px", "Snooty", "Snooty villager", "[[Snooty|Snooty villager]]" },
		["Snooty villager"] = { "Emotion Disagreement NH Icon cropped.png", "22px", "Snooty", "Snooty villager", "[[Snooty|Snooty villager]]" },
		["Big sister"] = { "Emotion Mischief NH Icon cropped.png", "22px", "Big sister", "Big sister villager", "[[Big sister|Big sister villager]]" },
		["Big sister villager"] = { "Emotion Mischief NH Icon cropped.png", "22px", "Big sister", "Big sister villager", "[[Big sister|Big sister villager]]" },
		["Any villager"] = { "Emotion Greetings NH Icon cropped.png", "22px", "Villager", "Any villager", "[[Villager|Any villager]]" },
		["Camper"] = { "Tent Model PG Model.png", "22px", "Camping Season", "Camper", "[[Camping Season|Camper]]" },
		
		
		--Flora--
		["Bamboo"] = { "Bamboo Tree NH Inv Icon.png", "22px", "Bamboo", "Bamboo", "[[Bamboo]]" },
		["Cedar tree"] = { "Cedar Tree NH Inv Icon.png", "22px", "Tree", "Cedar Tree", "[[Tree|Cedar Tree]]" },
		["Coconut Tree"] = { "Coconut Tree NH Inv Icon.png", "22px", "Tree#Palm tree", "Coconut Tree", "[[Tree#Palm tree|Coconut Tree]]" },
		["Money Tree"] = { "Money Tree NH Inv Icon.png", "22px", "Money Tree", "Money Tree", "[[Money Tree]]" },
		["Palm Tree"] = { "Coconut Tree NH Inv Icon.png", "22px", "Tree#Palm tree", "Palm Tree", "[[Tree#Palm tree|Palm Tree]]" },
		["Tree"] = { "Hardwood Tree NH Inv Icon.png", "22px", "Tree", "Tree", "[[Tree]]" },
		["Sapling"] = { "Sapling NH Inv Icon.png", "22px", "Sapling", "Sapling", "[[Sapling]]" },
		["Cedar Sapling"] = { "Cedar Sapling NH Inv Icon.png", "22px", "Sapling", "Cedar Sapling", "[[Sapling|Cedar Sapling]]" },
		["Apple Tree"] = { "Apple Tree NH Inv Icon.png", "22px", "Fruit", "Apple Tree", "[[Fruit|Apple Tree]]" },
		["Cherry Tree"] = { "Cherry Tree NH Inv Icon.png", "22px", "Fruit", "Cherry Tree", "[[Fruit|Cherry Tree]]" },
		["Orange Tree"] = { "Orange Tree NH Inv Icon.png", "22px", "Fruit", "Orange Tree", "[[Fruit|Orange Tree]]" },
		["Peach Tree"] = { "Peach Tree NH Inv Icon.png", "22px", "Fruit", "Peach Tree", "[[Fruit|Peach Tree]]" },
		["Pear Tree"] = { "Pear Tree NH Inv Icon.png", "22px", "Fruit", "Pear Tree", "[[Fruit|Pear Tree]]" },
		["Apple"] = { "Apple NH Inv Icon.png", "22px", "Fruit", "Apple", "[[Fruit|Apple]]" },
		["Cherry"] = { "Cherry NH Inv Icon.png", "22px", "Fruit", "Cherry", "[[Fruit|Cherry]]" },
		["Orange"] = { "Orange NH Inv Icon.png", "22px", "Fruit", "Orange", "[[Fruit|Orange]]" },
		["Peach"] = { "Peach NH Inv Icon.png", "22px", "Fruit", "Peach", "[[Fruit|Peach]]" },
		["Pear"] = { "Pear NH Inv Icon.png", "22px", "Fruit", "Pear", "[[Fruit|Pear]]" },
		["Coconut"] = { "Coconut NH Inv Icon.png", "22px", "Fruit", "Coconut", "[[Fruit|Coconut]]" },
		["Lychee"] = { "Lychee PC Icon.png", "22px", "Fruit", "Lychee", "[[Fruit|Lychee]]" },
		["Lemon"] = { "Lemon PC Icon.png", "22px", "Fruit", "Lemon", "[[Fruit|Lemon]]" },
		["Grape"] = { "Grape PC Icon.png", "22px", "Fruit", "Grape", "[[Fruit|Grape]]" },
		["Perfect Apple"] = { "Perfect Apple PC Icon.png", "22px", "Fruit", "Perfect Apple", "[[Fruit|Perfect Apple]]" },
		["Perfect Cherry"] = { "Perfect Cherry PC Icon.png", "22px", "Fruit", "Perfect Cherry", "[[Fruit|Perfect Cherry]]" },
		["Perfect Orange"] = { "Perfect Orange PC Icon.png", "22px", "Fruit", "Perfect Orange", "[[Fruit|Perfect Orange]]" },
		["Perfect Peach"] = { "Perfect Peach PC Icon.png", "22px", "Fruit", "Perfect Peach", "[[Fruit|Perfect Peach]]" },
		["Perfect Pear"] = { "Perfect Pear PC Icon.png", "22px", "Fruit", "Perfect Pear", "[[Fruit|Perfect Pear]]" },
		["Perfect Lemon"] = { "Perfect Lemon PC Icon.png", "22px", "Fruit", "Perfect Lemon", "[[Fruit|Perfect Lemon]]" },
		["Perfect Lychee"] = { "Perfect Lychee PC Icon.png", "22px", "Fruit", "Perfect Lychee", "[[Fruit|Perfect Lychee]]" },
		["Perfect Grape"] = { "Perfect Grape PC Icon.png", "22px", "Fruit", "Perfect Grape", "[[Fruit|Perfect Grape]]" },
		["Rotten Apple"] = { "Perfect Apple PC Icon.png", "22px", "Fruit", "Rotten Apple", "[[Fruit|Rotten Apple]]" },
		["Rotten Cherry"] = { "Perfect Cherry PC Icon.png", "22px", "Fruit", "Rotten Cherry", "[[Fruit|Rotten Cherry]]" },
		["Rotten Orange"] = { "Perfect Orange PC Icon.png", "22px", "Fruit", "Rotten Orange", "[[Fruit|Rotten Orange]]" },
		["Rotten Peach"] = { "Perfect Peach PC Icon.png", "22px", "Fruit", "Rotten Peach", "[[Fruit|Rotten Peach]]" },
		["Rotten Pear"] = { "Perfect Pear PC Icon.png", "22px", "Fruit", "Rotten Pear", "[[Fruit|Rotten Pear]]" },
		["Durian"] = { "Durian NL Icon.png", "22px", "Fruit", "Durian", "[[Fruit|Durian]]" },
		["Mango"] = { "Mango NL Icon.png", "22px", "Fruit", "Mango", "[[Fruit|Mango]]" },
		["Persimmon"] = { "Persimmon NL Icon.png", "22px", "Fruit", "Persimmon", "[[Fruit|Persimmon]]" },
		["Blue-Hydrangea Start"] = { "Blue-Hydrangea Bush NH Inv Icon.png", "22px", "Item:Blue-Hydrangea Start (New Horizons)", "Blue-Hydrangea Start", "[[Item:Blue-Hydrangea Start (New Horizons)|Blue-Hydrangea Start]]" },
		["Holly Start"] = { "Holly Bush NH Inv Icon.png", "22px", "Item:Holly Start (New Horizons)", "Holly Start", "[[Item:Holly Start (New Horizons)|Holly Start]]" },
		["Orange-Tea-Olive Start"] = { "Orange-Tea-Olive Bush NH Inv Icon.png", "22px", "Item:Orange-Tea-Olive Start (New Horizons)", "Orange-Tea-Olive Start", "[[Item:Orange-Tea-Olive Start (New Horizons)|Orange-Tea-Olive Start]]" },
		["Pink-Azalea Start"] = { "Pink-Azalea Bush NH Inv Icon.png", "22px", "Item:Pink-Azalea Start (New Horizons)", "Pink-Azalea Start", "[[Item:Pink-Azalea Start (New Horizons)|Pink-Azalea Start]]" },
		["Pink-Camellia Start"] = { "Pink-Camellia Bush NH Inv Icon.png", "22px", "Item:Pink-Camellia Start (New Horizons)", "Pink-Camellia Start", "[[Item:Pink-Camellia Start (New Horizons)|Pink-Camellia Start]]" },
		["Pink-Hydrangea Start"] = { "Pink-Hydrangea Bush NH Inv Icon.png", "22px", "Item:Pink-Hydrangea Start (New Horizons)", "Pink-Hydrangea Start", "[[Item:Pink-Hydrangea Start (New Horizons)|Pink-Hydrangea Start]]" },
		["Pink-Plumeria Start"] = { "Pink-Plumeria Bush NH Inv Icon.png", "22px", "Item:Pink-Plumeria Start (New Horizons)", "Pink-Plumeria Start", "[[Item:Pink-Plumeria Start (New Horizons)|Pink-Plumeria Start]]" },
		["Red-Camellia Start"] = { "Red-Camellia Bush NH Inv Icon.png", "22px", "Item:Red-Camellia Start (New Horizons)", "Red-Camellia Start", "[[Item:Red-Camellia Start (New Horizons)|Red-Camellia Start]]" },
		["Red-Hibiscus Start"] = { "Red-Hibiscus Bush NH Inv Icon.png", "22px", "Item:Red-Hibiscus Start (New Horizons)", "Red-Hibiscus Start", "[[Item:Red-Hibiscus Start (New Horizons)|Red-Hibiscus Start]]" },
		["White-Azalea Start"] = { "White-Azalea Bush NH Inv Icon.png", "22px", "Item:White-Azalea Start (New Horizons)", "White-Azalea Start", "[[Item:White-Azalea Start (New Horizons)|White-Azalea Start]]" },
		["White-Plumeria Start"] = { "White-Plumeria Bush NH Inv Icon.png", "22px", "Item:White-Plumeria Start (New Horizons)", "White-Plumeria Start", "[[Item:White-Plumeria Start (New Horizons)|White-Plumeria Start]]" },
		["Yellow-Hibiscus Start"] = { "Yellow-Hibiscus Bush NH Inv Icon.png", "22px", "Item:Yellow-Hibiscus Start (New Horizons)", "Yellow-Hibiscus Start", "[[Item:Yellow-Hibiscus Start (New Horizons)|Yellow-Hibiscus Start]]" },
		["Yellow-Tea-Olive Start"] = { "Yellow-Tea-Olive Bush NH Inv Icon.png", "22px", "Item:Yellow-Tea-Olive Start (New Horizons)", "Yellow-Tea-Olive Start", "[[Item:Yellow-Tea-Olive Start (New Horizons)|Yellow-Tea-Olive Start]]" },
		["Carrot Start"] = { "Produce Start NH Inv Icon.png", "22px", "Item:Carrot Start (New Horizons)", "Carrot Start", "[[Item:Carrot Start (New Horizons)|Carrot Start]]" },
		["Pumpkin Start"] = { "Produce Start NH Inv Icon.png", "22px", "Item:Pumpkin Start (New Horizons)", "Pumpkin Start", "[[Item:Pumpkin Start (New Horizons)|Pumpkin Start]]" },
		["Seed Potato"] = { "Produce Start NH Inv Icon.png", "22px", "Item:Seed Potato (New Horizons)", "Seed Potato", "[[Item:Seed Potato (New Horizons)|Seed Potato]]" },
		["Sugarcane Start"] = { "Produce Start NH Inv Icon.png", "22px", "Item:Sugarcane Start (New Horizons)", "Sugarcane Start", "[[Item:Sugarcane Start (New Horizons)|Sugarcane Start]]" },
		["Tomato Start"] = { "Produce Start NH Inv Icon.png", "22px", "Item:Tomato Start (New Horizons)", "Tomato Start", "[[Item:Tomato Start (New Horizons)|Tomato Start]]" },
		["Wheat Start"] = { "Produce Start NH Inv Icon.png", "22px", "Item:Wheat Start (New Horizons)", "Wheat Start", "[[Item:Wheat Start (New Horizons)|Wheat Start]]" },
		["Green Pumpkin"] = { "Green Pumpkin NH Inv Icon.png", "22px", "Item:Green Pumpkin (New Horizons)", "Green Pumpkin", "[[Item:Green Pumpkin (New Horizons)|Green Pumpkin]]" },
		["Orange Pumpkin"] = { "Orange Pumpkin NH Inv Icon.png", "22px", "Item:Orange Pumpkin (New Horizons)", "Orange Pumpkin", "[[Item:Orange Pumpkin (New Horizons)|Orange Pumpkin]]" },
		["Carrot"] = { "Carrot NH Inv Icon.png", "22px", "Item:Carrot (New Horizons)", "Carrot", "[[Item:Carrot (New Horizons)|Carrot]]" },
		["Potato"] = { "Potato NH Inv Icon.png", "22px", "Item:Potato (New Horizons)", "Potato", "[[Item:Potato (New Horizons)|Potato]]" },
		["Sugarcane"] = { "Sugarcane NH Inv Icon.png", "22px", "Item:Sugarcane (New Horizons)", "Sugarcane", "[[Item:Sugarcane (New Horizons)|Sugarcane]]" },
		["Tomato"] = { "Tomato NH Inv Icon.png", "22px", "Item:Tomato (New Horizons)", "Tomato", "[[Item:Tomato (New Horizons)|Tomato]]" },
		["Wheat"] = { "Wheat NH Inv Icon.png", "22px", "Item:Wheat (New Horizons)", "Wheat", "[[Item:Wheat (New Horizons)|Wheat]]" },
		["Ripe Green-Pumpkin Plant"] = { "Ripe Green-Pumpkin Plant NH Inv Icon.png", "22px", "Item:Ripe Green-Pumpkin Plant (New Horizons)", "Ripe Green-Pumpkin Plant", "[[Item:Ripe Green-Pumpkin Plant (New Horizons)|Ripe Green-Pumpkin Plant]]" },
		["Ripe Orange-Pumpkin Plant"] = { "Ripe Orange-Pumpkin Plant NH Inv Icon.png", "22px", "Item:Ripe Orange-Pumpkin Plant (New Horizons)", "Ripe Orange-Pumpkin Plant", "[[Item:Ripe Orange-Pumpkin Plant (New Horizons)|Ripe Orange-Pumpkin Plant]]" },
		["Ripe White-Pumpkin Plant"] = { "Ripe White-Pumpkin Plant NH Inv Icon.png", "22px", "Item:Ripe White-Pumpkin Plant (New Horizons)", "Ripe White-Pumpkin Plant", "[[Item:Ripe White-Pumpkin Plant (New Horizons)|Ripe White-Pumpkin Plant]]" },
		["Ripe Yellow-Pumpkin Plant"] = { "Ripe Yellow-Pumpkin Plant NH Inv Icon.png", "22px", "Item:Ripe Yellow-Pumpkin Plant (New Horizons)", "Ripe Yellow-Pumpkin Plant", "[[Item:Ripe Yellow-Pumpkin Plant (New Horizons)|Ripe Yellow-Pumpkin Plant]]" },
		["Ripe Carrot Plant"] = { "Ripe Carrot Plant NH Inv Icon.png", "22px", "Item:Ripe Carrot Plant (New Horizons)", "Ripe Carrot Plant", "[[Item:Ripe Carrot Plant (New Horizons)|Ripe Carrot Plant]]" },
		["Ripe Potato Plant"] = { "Ripe Potato Plant NH Inv Icon.png", "22px", "Item:Ripe Potato Plant (New Horizons)", "Ripe Potato Plant", "[[Item:Ripe Potato Plant (New Horizons)|Ripe Potato Plant]]" },
		["Ripe Sugarcane Plant"] = { "Ripe Sugarcane Plant NH Inv Icon.png", "22px", "Item:Ripe Sugarcane Plant (New Horizons)", "Ripe Sugarcane Plant", "[[Item:Ripe Sugarcane Plant (New Horizons)|Ripe Sugarcane Plant]]" },
		["Ripe Tomato Plant"] = { "Ripe Tomato Plant NH Inv Icon.png", "22px", "Item:Ripe Tomato Plant (New Horizons)", "Ripe Tomato Plant", "[[Item:Ripe Tomato Plant (New Horizons)|Ripe Tomato Plant]]" },
		["Ripe Wheat Plant"] = { "Ripe Wheat Plant NH Inv Icon.png", "22px", "Item:Ripe Wheat Plant (New Horizons)", "Ripe Wheat Plant", "[[Item:Ripe Wheat Plant (New Horizons)|Ripe Wheat Plant]]" },
		["White Pumpkin"] = { "White Pumpkin NH Inv Icon.png", "22px", "Item:White Pumpkin (New Horizons)", "White Pumpkin", "[[Item:White Pumpkin (New Horizons)|White Pumpkin]]" },
		["Yellow Pumpkin"] = { "Yellow Pumpkin NH Inv Icon.png", "22px", "Item:Yellow Pumpkin (New Horizons)", "Yellow Pumpkin", "[[Item:Yellow Pumpkin (New Horizons)|Yellow Pumpkin]]" },
		["Black-Cosmos Plant"] = { "Black-Cosmos Plant NH Inv Icon.png", "22px", "Item:Black-Cosmos Plant (New Horizons)", "Black-Cosmos Plant", "[[Item:Black-Cosmos Plant (New Horizons)|Black-Cosmos Plant]]" },
		["Black-Lily Plant"] = { "Black-Lily Plant NH Inv Icon.png", "22px", "Item:Black-Lily Plant (New Horizons)", "Black-Lily Plant", "[[Item:Black-Lily Plant (New Horizons)|Black-Lily Plant]]" },
		["Black-Rose Plant"] = { "Black-Rose Plant NH Inv Icon.png", "22px", "Item:Black-Rose Plant (New Horizons)", "Black-Rose Plant", "[[Item:Black-Rose Plant (New Horizons)|Black-Rose Plant]]" },
		["Black-Tulip Plant"] = { "Black-Tulip Plant NH Inv Icon.png", "22px", "Item:Black-Tulip Plant (New Horizons)", "Black-Tulip Plant", "[[Item:Black-Tulip Plant (New Horizons)|Black-Tulip Plant]]" },
		["Blue-Hyacinth Plant"] = { "Blue-Hyacinth Plant NH Inv Icon.png", "22px", "Item:Blue-Hyacinth Plant (New Horizons)", "Blue-Hyacinth Plant", "[[Item:Blue-Hyacinth Plant (New Horizons)|Blue-Hyacinth Plant]]" },
		["Blue-Pansy Plant"] = { "Blue-Pansy Plant NH Inv Icon.png", "22px", "Item:Blue-Pansy Plant (New Horizons)", "Blue-Pansy Plant", "[[Item:Blue-Pansy Plant (New Horizons)|Blue-Pansy Plant]]" },
		["Blue-Rose Plant"] = { "Blue-Rose Plant NH Inv Icon.png", "22px", "Item:Blue-Rose Plant (New Horizons)", "Blue-Rose Plant", "[[Item:Blue-Rose Plant (New Horizons)|Blue-Rose Plant]]" },
		["Blue-Windflower Plant"] = { "Blue-Windflower Plant NH Inv Icon.png", "22px", "Item:Blue-Windflower Plant (New Horizons)", "Blue-Windflower Plant", "[[Item:Blue-Windflower Plant (New Horizons)|Blue-Windflower Plant]]" },
		["Gold-Rose Plant"] = { "Gold-Rose Plant NH Inv Icon.png", "22px", "Item:Gold-Rose Plant (New Horizons)", "Gold-Rose Plant", "[[Item:Gold-Rose Plant (New Horizons)|Gold-Rose Plant]]" },
		["Green-Mum Plant"] = { "Green-Mum Plant NH Inv Icon.png", "22px", "Item:Green-Mum Plant (New Horizons)", "Green-Mum Plant", "[[Item:Green-Mum Plant (New Horizons)|Green-Mum Plant]]" },
		["Orange-Cosmos Plant"] = { "Orange-Cosmos Plant NH Inv Icon.png", "22px", "Item:Orange-Cosmos Plant (New Horizons)", "Orange-Cosmos Plant", "[[Item:Orange-Cosmos Plant (New Horizons)|Orange-Cosmos Plant]]" },
		["Orange-Hyacinth Plant"] = { "Orange-Hyacinth Plant NH Inv Icon.png", "22px", "Item:Orange-Hyacinth Plant (New Horizons)", "Orange-Hyacinth Plant", "[[Item:Orange-Hyacinth Plant (New Horizons)|Orange-Hyacinth Plant]]" },
		["Orange-Lily Plant"] = { "Orange-Lily Plant NH Inv Icon.png", "22px", "Item:Orange-Lily Plant (New Horizons)", "Orange-Lily Plant", "[[Item:Orange-Lily Plant (New Horizons)|Orange-Lily Plant]]" },
		["Orange-Pansy Plant"] = { "Orange-Pansy Plant NH Inv Icon.png", "22px", "Item:Orange-Pansy Plant (New Horizons)", "Orange-Pansy Plant", "[[Item:Orange-Pansy Plant (New Horizons)|Orange-Pansy Plant]]" },
		["Orange-Rose Plant"] = { "Orange-Rose Plant NH Inv Icon.png", "22px", "Item:Orange-Rose Plant (New Horizons)", "Orange-Rose Plant", "[[Item:Orange-Rose Plant (New Horizons)|Orange-Rose Plant]]" },
		["Orange-Tulip Plant"] = { "Orange-Tulip Plant NH Inv Icon.png", "22px", "Item:Orange-Tulip Plant (New Horizons)", "Orange-Tulip Plant", "[[Item:Orange-Tulip Plant (New Horizons)|Orange-Tulip Plant]]" },
		["Orange-Windflower Bag"] = { "Orange-Windflower Bag NH Inv Icon.png", "22px", "Item:Orange-Windflower Bag (New Horizons)", "Orange-Windflower Bag", "[[Item:Orange-Windflower Bag (New Horizons)|Orange-Windflower Bag]]" },
		["Orange-Windflower Plant"] = { "Orange-Windflower Plant NH Inv Icon.png", "22px", "Item:Orange-Windflower Plant (New Horizons)", "Orange-Windflower Plant", "[[Item:Orange-Windflower Plant (New Horizons)|Orange-Windflower Plant]]" },
		["Pink-Cosmos Plant"] = { "Pink-Cosmos Plant NH Inv Icon.png", "22px", "Item:Pink-Cosmos Plant (New Horizons)", "Pink-Cosmos Plant", "[[Item:Pink-Cosmos Plant (New Horizons)|Pink-Cosmos Plant]]" },
		["Pink-Hyacinth Plant"] = { "Pink-Hyacinth Plant NH Inv Icon.png", "22px", "Item:Pink-Hyacinth Plant (New Horizons)", "Pink-Hyacinth Plant", "[[Item:Pink-Hyacinth Plant (New Horizons)|Pink-Hyacinth Plant]]" },
		["Pink-Lily Plant"] = { "Pink-Lily Plant NH Inv Icon.png", "22px", "Item:Pink-Lily Plant (New Horizons)", "Pink-Lily Plant", "[[Item:Pink-Lily Plant (New Horizons)|Pink-Lily Plant]]" },
		["Pink-Mum Plant"] = { "Pink-Mum Plant NH Inv Icon.png", "22px", "Item:Pink-Mum Plant (New Horizons)", "Pink-Mum Plant", "[[Item:Pink-Mum Plant (New Horizons)|Pink-Mum Plant]]" },
		["Pink-Rose Plant"] = { "Pink-Rose Plant NH Inv Icon.png", "22px", "Item:Pink-Rose Plant (New Horizons)", "Pink-Rose Plant", "[[Item:Pink-Rose Plant (New Horizons)|Pink-Rose Plant]]" },
		["Pink-Tulip Plant"] = { "Pink-Tulip Plant NH Inv Icon.png", "22px", "Item:Pink-Tulip Plant (New Horizons)", "Pink-Tulip Plant", "[[Item:Pink-Tulip Plant (New Horizons)|Pink-Tulip Plant]]" },
		["Pink-Windflower Plant"] = { "Pink-Windflower Plant NH Inv Icon.png", "22px", "Item:Pink-Windflower Plant (New Horizons)", "Pink-Windflower Plant", "[[Item:Pink-Windflower Plant (New Horizons)|Pink-Windflower Plant]]" },
		["Purple-Hyacinth Plant"] = { "Purple-Hyacinth Plant NH Inv Icon.png", "22px", "Item:Purple-Hyacinth Plant (New Horizons)", "Purple-Hyacinth Plant", "[[Item:Purple-Hyacinth Plant (New Horizons)|Purple-Hyacinth Plant]]" },
		["Purple-Mum Plant"] = { "Purple-Mum Plant NH Inv Icon.png", "22px", "Item:Purple-Mum Plant (New Horizons)", "Purple-Mum Plant", "[[Item:Purple-Mum Plant (New Horizons)|Purple-Mum Plant]]" },
		["Purple-Pansy Plant"] = { "Purple-Pansy Plant NH Inv Icon.png", "22px", "Item:Purple-Pansy Plant (New Horizons)", "Purple-Pansy Plant", "[[Item:Purple-Pansy Plant (New Horizons)|Purple-Pansy Plant]]" },
		["Purple-Rose Plant"] = { "Purple-Rose Plant NH Inv Icon.png", "22px", "Item:Purple-Rose Plant (New Horizons)", "Purple-Rose Plant", "[[Item:Purple-Rose Plant (New Horizons)|Purple-Rose Plant]]" },
		["Purple-Tulip Plant"] = { "Purple-Tulip Plant NH Inv Icon.png", "22px", "Item:Purple-Tulip Plant (New Horizons)", "Purple-Tulip Plant", "[[Item:Purple-Tulip Plant (New Horizons)|Purple-Tulip Plant]]" },
		["Purple-Windflower Plant"] = { "Purple-Windflower Plant NH Inv Icon.png", "22px", "Item:Purple-Windflower Plant (New Horizons)", "Purple-Windflower Plant", "[[Item:Purple-Windflower Plant (New Horizons)|Purple-Windflower Plant]]" },
		["Red-Cosmos Bag"] = { "Red-Cosmos Bag NH Inv Icon.png", "22px", "Item:Red-Cosmos Bag (New Horizons)", "Red-Cosmos Bag", "[[Item:Red-Cosmos Bag (New Horizons)|Red-Cosmos Bag]]" },
		["Red-Cosmos Plant"] = { "Red-Cosmos Plant NH Inv Icon.png", "22px", "Item:Red-Cosmos Plant (New Horizons)", "Red-Cosmos Plant", "[[Item:Red-Cosmos Plant (New Horizons)|Red-Cosmos Plant]]" },
		["Red-Hyacinth Bag"] = { "Red-Hyacinth Bag NH Inv Icon.png", "22px", "Item:Red-Hyacinth Bag (New Horizons)", "Red-Hyacinth Bag", "[[Item:Red-Hyacinth Bag (New Horizons)|Red-Hyacinth Bag]]" },
		["Red-Hyacinth Plant"] = { "Red-Hyacinth Plant NH Inv Icon.png", "22px", "Item:Red-Hyacinth Plant (New Horizons)", "Red-Hyacinth Plant", "[[Item:Red-Hyacinth Plant (New Horizons)|Red-Hyacinth Plant]]" },
		["Red-Lily Bag"] = { "Red-Lily Bag NH Inv Icon.png", "22px", "Item:Red-Lily Bag (New Horizons)", "Red-Lily Bag", "[[Item:Red-Lily Bag (New Horizons)|Red-Lily Bag]]" },
		["Red-Lily Plant"] = { "Red-Lily Plant NH Inv Icon.png", "22px", "Item:Red-Lily Plant (New Horizons)", "Red-Lily Plant", "[[Item:Red-Lily Plant (New Horizons)|Red-Lily Plant]]" },
		["Red-Mum Bag"] = { "Red-Mum Bag NH Inv Icon.png", "22px", "Item:Red-Mum Bag (New Horizons)", "Red-Mum Bag", "[[Item:Red-Mum Bag (New Horizons)|Red-Mum Bag]]" },
		["Red-Mum Plant"] = { "Red-Mum Plant NH Inv Icon.png", "22px", "Item:Red-Mum Plant (New Horizons)", "Red-Mum Plant", "[[Item:Red-Mum Plant (New Horizons)|Red-Mum Plant]]" },
		["Red-Pansy Bag"] = { "Red-Pansy Bag NH Inv Icon.png", "22px", "Item:Red-Pansy Bag (New Horizons)", "Red-Pansy Bag", "[[Item:Red-Pansy Bag (New Horizons)|Red-Pansy Bag]]" },
		["Red-Pansy Plant"] = { "Red-Pansy Plant NH Inv Icon.png", "22px", "Item:Red-Pansy Plant (New Horizons)", "Red-Pansy Plant", "[[Item:Red-Pansy Plant (New Horizons)|Red-Pansy Plant]]" },
		["Red-Rose Bag"] = { "Red-Rose Bag NH Inv Icon.png", "22px", "Item:Red-Rose Bag (New Horizons)", "Red-Rose Bag", "[[Item:Red-Rose Bag (New Horizons)|Red-Rose Bag]]" },
		["Red-Rose Plant"] = { "Red-Rose Plant NH Inv Icon.png", "22px", "Item:Red-Rose Plant (New Horizons)", "Red-Rose Plant", "[[Item:Red-Rose Plant (New Horizons)|Red-Rose Plant]]" },
		["Red-Tulip Bag"] = { "Red-Tulip Bag NH Inv Icon.png", "22px", "Item:Red-Tulip Bag (New Horizons)", "Red-Tulip Bag", "[[Item:Red-Tulip Bag (New Horizons)|Red-Tulip Bag]]" },
		["Red-Tulip Plant"] = { "Red-Tulip Plant NH Inv Icon.png", "22px", "Item:Red-Tulip Plant (New Horizons)", "Red-Tulip Plant", "[[Item:Red-Tulip Plant (New Horizons)|Red-Tulip Plant]]" },
		["Red-Windflower Bag"] = { "Red-Windflower Bag NH Inv Icon.png", "22px", "Item:Red-Windflower Bag (New Horizons)", "Red-Windflower Bag", "[[Item:Red-Windflower Bag (New Horizons)|Red-Windflower Bag]]" },
		["Red-Windflower Plant"] = { "Red-Windflower Plant NH Inv Icon.png", "22px", "Item:Red-Windflower Plant (New Horizons)", "Red-Windflower Plant", "[[Item:Red-Windflower Plant (New Horizons)|Red-Windflower Plant]]" },
		["White-Cosmos Bag"] = { "White-Cosmos Bag NH Inv Icon.png", "22px", "Item:White-Cosmos Bag (New Horizons)", "White-Cosmos Bag", "[[Item:White-Cosmos Bag (New Horizons)|White-Cosmos Bag]]" },
		["White-Cosmos Plant"] = { "White-Cosmos Plant NH Inv Icon.png", "22px", "Item:White-Cosmos Plant (New Horizons)", "White-Cosmos Plant", "[[Item:White-Cosmos Plant (New Horizons)|White-Cosmos Plant]]" },
		["White-Hyacinth Bag"] = { "White-Hyacinth Bag NH Inv Icon.png", "22px", "Item:White-Hyacinth Bag (New Horizons)", "White-Hyacinth Bag", "[[Item:White-Hyacinth Bag (New Horizons)|White-Hyacinth Bag]]" },
		["White-Hyacinth Plant"] = { "White-Hyacinth Plant NH Inv Icon.png", "22px", "Item:White-Hyacinth Plant (New Horizons)", "White-Hyacinth Plant", "[[Item:White-Hyacinth Plant (New Horizons)|White-Hyacinth Plant]]" },
		["White-Lily Bag"] = { "White-Lily Bag NH Inv Icon.png", "22px", "Item:White-Lily Bag (New Horizons)", "White-Lily Bag", "[[Item:White-Lily Bag (New Horizons)|White-Lily Bag]]" },
		["White-Lily Plant"] = { "White-Lily Plant NH Inv Icon.png", "22px", "Item:White-Lily Plant (New Horizons)", "White-Lily Plant", "[[Item:White-Lily Plant (New Horizons)|White-Lily Plant]]" },
		["White-Mum Bag"] = { "White-Mum Bag NH Inv Icon.png", "22px", "Item:White-Mum Bag (New Horizons)", "White-Mum Bag", "[[Item:White-Mum Bag (New Horizons)|White-Mum Bag]]" },
		["White-Mum Plant"] = { "White-Mum Plant NH Inv Icon.png", "22px", "Item:White-Mum Plant (New Horizons)", "White-Mum Plant", "[[Item:White-Mum Plant (New Horizons)|White-Mum Plant]]" },
		["White-Pansy Bag"] = { "White-Pansy Bag NH Inv Icon.png", "22px", "Item:White-Pansy Bag (New Horizons)", "White-Pansy Bag", "[[Item:White-Pansy Bag (New Horizons)|White-Pansy Bag]]" },
		["White-Pansy Plant"] = { "White-Pansy Plant NH Inv Icon.png", "22px", "Item:White-Pansy Plant (New Horizons)", "White-Pansy Plant", "[[Item:White-Pansy Plant (New Horizons)|White-Pansy Plant]]" },
		["White-Rose Bag"] = { "White-Rose Bag NH Inv Icon.png", "22px", "Item:White-Rose Bag (New Horizons)", "White-Rose Bag", "[[Item:White-Rose Bag (New Horizons)|White-Rose Bag]]" },
		["White-Rose Plant"] = { "White-Rose Plant NH Inv Icon.png", "22px", "Item:White-Rose Plant (New Horizons)", "White-Rose Plant", "[[Item:White-Rose Plant (New Horizons)|White-Rose Plant]]" },
		["White-Tulip Bag"] = { "White-Tulip Bag NH Inv Icon.png", "22px", "Item:White-Tulip Bag (New Horizons)", "White-Tulip Bag", "[[Item:White-Tulip Bag (New Horizons)|White-Tulip Bag]]" },
		["White-Tulip Plant"] = { "White-Tulip Plant NH Inv Icon.png", "22px", "Item:White-Tulip Plant (New Horizons)", "White-Tulip Plant", "[[Item:White-Tulip Plant (New Horizons)|White-Tulip Plant]]" },
		["White-Windflower Bag"] = { "White-Windflower Bag NH Inv Icon.png", "22px", "Item:White-Windflower Bag (New Horizons)", "White-Windflower Bag", "[[Item:White-Windflower Bag (New Horizons)|White-Windflower Bag]]" },
		["White-Windflower Plant"] = { "White-Windflower Plant NH Inv Icon.png", "22px", "Item:White-Windflower Plant (New Horizons)", "White-Windflower Plant", "[[Item:White-Windflower Plant (New Horizons)|White-Windflower Plant]]" },
		["Yellow-Cosmos Bag"] = { "Yellow-Cosmos Bag NH Inv Icon.png", "22px", "Item:Yellow-Cosmos Bag (New Horizons)", "Yellow-Cosmos Bag", "[[Item:Yellow-Cosmos Bag (New Horizons)|Yellow-Cosmos Bag]]" },
		["Yellow-Cosmos Plant"] = { "Yellow-Cosmos Plant NH Inv Icon.png", "22px", "Item:Yellow-Cosmos Plant (New Horizons)", "Yellow-Cosmos Plant", "[[Item:Yellow-Cosmos Plant (New Horizons)|Yellow-Cosmos Plant]]" },
		["Yellow-Hyacinth Bag"] = { "Yellow-Hyacinth Bag NH Inv Icon.png", "22px", "Item:Yellow-Hyacinth Bag (New Horizons)", "Yellow-Hyacinth Bag", "[[Item:Yellow-Hyacinth Bag (New Horizons)|Yellow-Hyacinth Bag]]" },
		["Yellow-Hyacinth Plant"] = { "Yellow-Hyacinth Plant NH Inv Icon.png", "22px", "Item:Yellow-Hyacinth Plant (New Horizons)", "Yellow-Hyacinth Plant", "[[Item:Yellow-Hyacinth Plant (New Horizons)|Yellow-Hyacinth Plant]]" },
		["Yellow-Lily Bag"] = { "Yellow-Lily Bag NH Inv Icon.png", "22px", "Item:Yellow-Lily Bag (New Horizons)", "Yellow-Lily Bag", "[[Item:Yellow-Lily Bag (New Horizons)|Yellow-Lily Bag]]" },
		["Yellow-Lily Plant"] = { "Yellow-Lily Plant NH Inv Icon.png", "22px", "Item:Yellow-Lily Plant (New Horizons)", "Yellow-Lily Plant", "[[Item:Yellow-Lily Plant (New Horizons)|Yellow-Lily Plant]]" },
		["Yellow-Mum Bag"] = { "Yellow-Mum Bag NH Inv Icon.png", "22px", "Item:Yellow-Mum Bag (New Horizons)", "Yellow-Mum Bag", "[[Item:Yellow-Mum Bag (New Horizons)|Yellow-Mum Bag]]" },
		["Yellow-Mum Plant"] = { "Yellow-Mum Plant NH Inv Icon.png", "22px", "Item:Yellow-Mum Plant (New Horizons)", "Yellow-Mum Plant", "[[Item:Yellow-Mum Plant (New Horizons)|Yellow-Mum Plant]]" },
		["Yellow-Pansy Bag"] = { "Yellow-Pansy Bag NH Inv Icon.png", "22px", "Item:Yellow-Pansy Bag (New Horizons)", "Yellow-Pansy Bag", "[[Item:Yellow-Pansy Bag (New Horizons)|Yellow-Pansy Bag]]" },
		["Yellow-Pansy Plant"] = { "Yellow-Pansy Plant NH Inv Icon.png", "22px", "Item:Yellow-Pansy Plant (New Horizons)", "Yellow-Pansy Plant", "[[Item:Yellow-Pansy Plant (New Horizons)|Yellow-Pansy Plant]]" },
		["Yellow-Rose Bag"] = { "Yellow-Rose Bag NH Inv Icon.png", "22px", "Item:Yellow-Rose Bag (New Horizons)", "Yellow-Rose Bag", "[[Item:Yellow-Rose Bag (New Horizons)|Yellow-Rose Bag]]" },
		["Yellow-Rose Plant"] = { "Yellow-Rose Plant NH Inv Icon.png", "22px", "Item:Yellow-Rose Plant (New Horizons)", "Yellow-Rose Plant", "[[Item:Yellow-Rose Plant (New Horizons)|Yellow-Rose Plant]]" },
		["Yellow-Tulip Bag"] = { "Yellow-Tulip Bag NH Inv Icon.png", "22px", "Item:Yellow-Tulip Bag (New Horizons)", "Yellow-Tulip Bag", "[[Item:Yellow-Tulip Bag (New Horizons)|Yellow-Tulip Bag]]" },
		["Yellow-Tulip Plant"] = { "Yellow-Tulip Plant NH Inv Icon.png", "22px", "Item:Yellow-Tulip Plant (New Horizons)", "Yellow-Tulip Plant", "[[Item:Yellow-Tulip Plant (New Horizons)|Yellow-Tulip Plant]]" },
		
		
		--Pocket Camp Fortune Cookies--
		["Clothing Fortune Cookie"] = { "Clothing Fortune Cookie PC Icon.png", "20px", "", "", "Clothing Fortune Cookie" },
		["Timmy's Fortune Cookie"] = { "Timmy's Fortune Cookie PC Icon.png", "20px", "", "", "Timmy's Fortune Cookie" },
		["Tommy's Fortune Cookie"] = { "Tommy's Fortune Cookie PC Icon.png", "20px", "", "", "Tommy's Fortune Cookie" },
		["Filbert's Rocket Cookie"] = { "Filbert's Rocket Cookie PC Icon.png", "20px", "", "", "Filbert's Rocket Cookie" },
		["Marshal's Pastry Cookie"] = { "Marshal's Pastry Cookie PC Icon.png", "20px", "", "", "Marshal's Pastry Cookie" },
		["Rosie's Pop-Star Cookie"] = { "Rosie's Pop-Star Cookie PC Icon.png", "20px", "", "", "Rosie's Pop-Star Cookie" },
		["Hopkins's Game Cookie"] = { "Hopkins's Game Cookie PC Icon.png", "20px", "", "", "Hopkins's Game Cookie" },
		["Stitches's Patch Cookie"] = { "Stitches's Patch Cookie PC Icon.png", "20px", "", "", "Stitches's Patch Cookie" },
		["Lily's Hydrangea Cookie"] = { "Lily's Hydrangea Cookie PC Icon.png", "20px", "", "", "Lily's Hydrangea Cookie" },
		["Whitney's Rose Cookie"] = { "Whitney's Rose Cookie PC Icon.png", "20px", "", "", "Whitney's Rose Cookie" },
		["Roald's Beach Cookie"] = { "Roald's Beach Cookie PC Icon.png", "20px", "", "", "Roald's Beach Cookie" },
		["Bluebear's Party Cookie"] = { "Bluebear's Party Cookie PC Icon.png", "20px", "", "", "Bluebear's Party Cookie" },
		["Julian's Stardust Cookie"] = { "Julian's Stardust Cookie PC Icon.png", "20px", "", "", "Julian's Stardust Cookie" },
		["Bunnie's Li'l Red Cookie"] = { "Bunnie's Li'l Red Cookie PC Icon.png", "20px", "", "", "Bunnie's Li'l Red Cookie" },
		["Tia's Rosewater Cookie"] = { "Tia's Rosewater Cookie PC Icon.png", "20px", "", "", "Tia's Rosewater Cookie" },
		["Inkling's Splatted Cookie"] = { "Inkling's Splatted Cookie PC Icon.png", "20px", "", "", "Inkling's Splatted Cookie" },
		["Muffy's Creepy Cookie"] = { "Muffy's Creepy Cookie PC Icon.png", "20px", "", "", "Muffy's Creepy Cookie" },
		["Goldie's Library Cookie"] = { "Goldie's Library Cookie PC Icon.png", "20px", "", "", "Goldie's Library Cookie" },
		["Isabelle's Café Cookie"] = { "Isabelle's Café Cookie PC Icon.png", "20px", "", "", "Isabelle's Café Cookie" },
		["Dazzling Duo Cookie"] = { "Dazzling Duo Cookie PC Icon.png", "20px", "", "", "Dazzling Duo Cookie" },
		["Fauna's Toy Day Cookie"] = { "Fauna's Toy Day Cookie PC Icon.png", "20px", "", "", "Fauna's Toy Day Cookie" },
		["Tasha's Hip-Rose Cookie"] = { "Tasha's Hip-Rose Cookie PC Icon.png", "20px", "", "", "Tasha's Hip-Rose Cookie" },
		["Gladys's Camellia Cookie"] = { "Gladys's Camellia Cookie PC Icon.png", "20px", "", "", "Gladys's Camellia Cookie" },
		["Kitt's Plushie Cookie"] = { "Kitt's Plushie Cookie PC Icon.png", "20px", "", "", "Kitt's Plushie Cookie" },
		["Hamlet's Chilly Cookie"] = { "Hamlet's Chilly Cookie PC Icon.png", "20px", "", "", "Hamlet's Chilly Cookie" },
		["Poppy's Cocoa Cookie"] = { "Poppy's Cocoa Cookie PC Icon.png", "20px", "", "", "Poppy's Cocoa Cookie" },
		["Apple's Glazier Cookie"] = { "Apple's Glazier Cookie PC Icon.png", "20px", "", "", "Apple's Glazier Cookie" },
		["Diana's Fay Cookie"] = { "Diana's Fay Cookie PC Icon.png", "20px", "", "", "Diana's Fay Cookie" },
		["Broccolo's Band Cookie"] = { "Broccolo's Band Cookie PC Icon.png", "20px", "", "", "Broccolo's Band Cookie" },
		["Lobo's Solo Table Cookie"] = { "Lobo's Solo Table Cookie PC Icon.png", "20px", "", "", "Lobo's Solo Table Cookie" },
		["Chrissy's Royal Cookie"] = { "Chrissy's Royal Cookie PC Icon.png", "20px", "", "", "Chrissy's Royal Cookie" },
		["Cherry's Rockin' Cookie"] = { "Cherry's Rockin' Cookie PC Icon.png", "20px", "", "", "Cherry's Rockin' Cookie" },
		["Agnes's Grand Cookie"] = { "Agnes's Grand Cookie PC Icon.png", "20px", "", "", "Agnes's Grand Cookie" },
		["Apollo's Cinema Cookie"] = { "Apollo's Cinema Cookie PC Icon.png", "20px", "", "", "Apollo's Cinema Cookie" },
		["Colton's Gilded Cookie"] = { "Colton's Gilded Cookie PC Icon.png", "20px", "", "", "Colton's Gilded Cookie" },
		["Stella's Sleepy Cookie"] = { "Stella's Sleepy Cookie PC Icon.png", "20px", "", "", "Stella's Sleepy Cookie" },
		["Francine's Sea Cookie"] = { "Francine's Sea Cookie PC Icon.png", "20px", "", "", "Francine's Sea Cookie" },
		["Cinnamoroll Cookie"] = { "Cinnamoroll Cookie PC Icon.png", "20px", "", "", "Cinnamoroll Cookie" },
		["Hello Kitty Cookie"] = { "Hello Kitty Cookie PC Icon.png", "20px", "", "", "Hello Kitty Cookie" },
		["My Melody Cookie"] = { "My Melody Cookie PC Icon.png", "20px", "", "", "My Melody Cookie" },
		["Pompompurin Cookie"] = { "Pompompurin Cookie PC Icon.png", "20px", "", "", "Pompompurin Cookie" },
		["Julia's Palace Cookie"] = { "Julia's Palace Cookie PC Icon.png", "20px", "", "", "Julia's Palace Cookie" },
		["Phoebe's Fiery Cookie"] = { "Phoebe's Fiery Cookie PC Icon.png", "20px", "", "", "Phoebe's Fiery Cookie" },
		["Kerokerokeroppi Cookie"] = { "Kerokerokeroppi Cookie PC Icon.png", "20px", "", "", "Kerokerokeroppi Cookie" },
		["Kiki and Lala Cookie"] = { "Kiki and Lala Cookie PC Icon.png", "20px", "", "", "Kiki and Lala Cookie" },
		["Beau's Artisanal Cookie"] = { "Beau's Artisanal Cookie PC Icon.png", "20px", "", "", "Beau's Artisanal Cookie" },
		["Wolfgang's Cog Cookie"] = { "Wolfgang's Cog Cookie PC Icon.png", "20px", "", "", "Wolfgang's Cog Cookie" },
		["Maple's Autumn Cookie"] = { "Maple's Autumn Cookie PC Icon.png", "20px", "", "", "Maple's Autumn Cookie" },
		["Lucky's Frightful Cookie"] = { "Lucky's Frightful Cookie PC Icon.png", "20px", "", "", "Lucky's Frightful Cookie" },
		["Yuka's Grim-Lily Cookie"] = { "Yuka's Grim-Lily Cookie PC Icon.png", "20px", "", "", "Yuka's Grim-Lily Cookie" },
		["Bob's Circus Cookie"] = { "Bob's Circus Cookie PC Icon.png", "20px", "", "", "Bob's Circus Cookie" },
		["Nana's Glazen Cookie"] = { "Nana's Glazen Cookie PC Icon.png", "20px", "", "", "Nana's Glazen Cookie" },
		["Skye's Lavish Ball Cookie"] = { "Skye's Lavish Ball Cookie PC Icon.png", "20px", "", "", "Skye's Lavish Ball Cookie" },
		["Bree's Boutique Cookie"] = { "Bree's Boutique Cookie PC Icon.png", "20px", "", "", "Bree's Boutique Cookie" },
		["Flurry's Powdered Cookie"] = { "Flurry's Powdered Cookie PC Icon.png", "20px", "", "", "Flurry's Powdered Cookie" },
		["Rhonda's Holiday Cookie"] = { "Rhonda's Holiday Cookie PC Icon.png", "20px", "", "", "Rhonda's Holiday Cookie" },
		["Dotty's Tea-Party Cookie"] = { "Dotty's Tea-Party Cookie PC Icon.png", "20px", "", "", "Dotty's Tea-Party Cookie" },
		["Chevre's Serene Cookie"] = { "Chevre's Serene Cookie PC Icon.png", "20px", "", "", "Chevre's Serene Cookie" },
		["Wendy's Snowy Cookie"] = { "Wendy's Snowy Cookie PC Icon.png", "20px", "", "", "Wendy's Snowy Cookie" },
		["Olivia's Whimsical Cookie"] = { "Olivia's Whimsical Cookie PC Icon.png", "20px", "", "", "Olivia's Whimsical Cookie" },
		["Eloise's Flapjack Cookie"] = { "Eloise's Flapjack Cookie PC Icon.png", "20px", "", "", "Eloise's Flapjack Cookie" },
		["Maggie's Florist Cookie"] = { "Maggie's Florist Cookie PC Icon.png", "20px", "", "", "Maggie's Florist Cookie" },
		["Vesta's Chic Cookie"] = { "Vesta's Chic Cookie PC Icon.png", "20px", "", "", "Vesta's Chic Cookie" },
		["Merry's Sakura Cookie"] = { "Merry's Sakura Cookie PC Icon.png", "20px", "", "", "Merry's Sakura Cookie" },
		["Mitzi's Aviary Cookie"] = { "Mitzi's Aviary Cookie PC Icon.png", "20px", "", "", "Mitzi's Aviary Cookie" },
		["Punchy's Crunch Cookie"] = { "Punchy's Crunch Cookie PC Icon.png", "20px", "", "", "Punchy's Crunch Cookie" },
		["Alice's Salon Cookie"] = { "Alice's Salon Cookie PC Icon.png", "20px", "", "", "Alice's Salon Cookie" },
		["Celia's Chapel Cookie"] = { "Celia's Chapel Cookie PC Icon.png", "20px", "", "", "Celia's Chapel Cookie" },
		["Butch's Candlelit Cookie"] = { "Butch's Candlelit Cookie PC Icon.png", "20px", "", "", "Butch's Candlelit Cookie" },
		["Audie's Lemon Cookie"] = { "Audie's Lemon Cookie PC Icon.png", "20px", "", "", "Audie's Lemon Cookie" },
		["Rod's Adventure Cookie"] = { "Rod's Adventure Cookie PC Icon.png", "20px", "", "", "Rod's Adventure Cookie" },
		["Zell's Aquarium Cookie"] = { "Zell's Aquarium Cookie PC Icon.png", "20px", "", "", "Zell's Aquarium Cookie" },
		["Lolly's Celestial Cookie"] = { "Lolly's Celestial Cookie PC Icon.png", "20px", "", "", "Lolly's Celestial Cookie" },
		["Pekoe's Boba Cookie"] = { "Pekoe's Boba Cookie PC Icon.png", "20px", "", "", "Pekoe's Boba Cookie" },
		["Raymond's Scholar Cookie"] = { "Raymond's Scholar Cookie PC Icon.png", "20px", "", "", "Raymond's Scholar Cookie" },
		["Carrie's Apple Cookie"] = { "Carrie's Apple Cookie PC Icon.png", "20px", "", "", "Carrie's Apple Cookie" },
		["Chief's Fall Feels Cookie"] = { "Chief's Fall Feels Cookie PC Icon.png", "20px", "", "", "Chief's Fall Feels Cookie" },
		["Kiki's Black Cat Cookie"] = { "Kiki's Black Cat Cookie PC Icon.png", "20px", "", "", "Kiki's Black Cat Cookie" },
		["Judy's Blooming Cookie"] = { "Judy's Blooming Cookie PC Icon.png", "20px", "", "", "Judy's Blooming Cookie" },
		["Dom's Funfair Cookie"] = { "Dom's Funfair Cookie PC Icon.png", "20px", "", "", "Dom's Funfair Cookie" },
		["Erik's Workshop Cookie"] = { "Erik's Workshop Cookie PC Icon.png", "20px", "", "", "Erik's Workshop Cookie" },
		["Egbert's Cozy Cookie"] = { "Egbert's Cozy Cookie PC Icon.png", "20px", "", "", "Egbert's Cozy Cookie" },
		["Cranston's Temple Cookie"] = { "Cranston's Temple Cookie PC Icon.png", "20px", "", "", "Cranston's Temple Cookie" },
		["Sprinkle's Crystal Cookie"] = { "Sprinkle's Crystal Cookie PC Icon.png", "20px", "", "", "Sprinkle's Crystal Cookie" },
		["Pecan's House Cookie"] = { "Pecan's House Cookie PC Icon.png", "20px", "", "", "Pecan's House Cookie" },
		["Felicity's Kitty Cookie"] = { "Felicity's Kitty Cookie PC Icon.png", "20px", "", "", "Felicity's Kitty Cookie" },
		["Piper's Sunbeam Cookie"] = { "Piper's Sunbeam Cookie PC Icon.png", "20px", "", "", "Piper's Sunbeam Cookie" },
		["Daisy's Berry Cookie"] = { "Daisy's Berry Cookie PC Icon.png", "20px", "", "", "Daisy's Berry Cookie" },
		["Sanrio Characters Cookie"] = { "Sanrio Characters Cookie PC Icon.png", "20px", "", "", "Sanrio Characters Cookie" },
		["Bonbon's Bunny Cookie"] = { "Bonbon's Bunny Cookie PC Icon.png", "20px", "", "", "Bonbon's Bunny Cookie" },
		["Roscoe's Diner Cookie"] = { "Roscoe's Diner Cookie PC Icon.png", "20px", "", "", "Roscoe's Diner Cookie" },
		["Annalisa's Calm Cookie"] = { "Annalisa's Calm Cookie PC Icon.png", "20px", "", "", "Annalisa's Calm Cookie" },
		["Snake's Ninja Cookie"] = { "Snake's Ninja Cookie PC Icon.png", "20px", "", "", "Snake's Ninja Cookie" },
		["Gloria's Starlight Cookie"] = { "Gloria's Starlight Cookie PC Icon.png", "20px", "", "", "Gloria's Starlight Cookie" },
		["Reneigh's Luxury Cookie"] = { "Reneigh's Luxury Cookie PC Icon.png", "20px", "", "", "Reneigh's Luxury Cookie" },
		["O'Hare's Pool Cookie"] = { "O'Hare's Pool Cookie PC Icon.png", "20px", "", "", "O'Hare's Pool Cookie" },
		["Rex's Food-Truck Cookie"] = { "Rex's Food-Truck Cookie PC Icon.png", "20px", "", "", "Rex's Food-Truck Cookie" },
		["Ellie's Donut Cookie"] = { "Ellie's Donut Cookie PC Icon.png", "20px", "", "", "Ellie's Donut Cookie" },
		["Marina's Mermaid Cookie"] = { "Marina's Mermaid Cookie PC Icon.png", "20px", "", "", "Marina's Mermaid Cookie" },
		["Opal's Jewel-Lab Cookie"] = { "Opal's Jewel-Lab Cookie PC Icon.png", "20px", "", "", "Opal's Jewel-Lab Cookie" },
		["Blanche's Inn Cookie"] = { "Blanche's Inn Cookie PC Icon.png", "20px", "", "", "Blanche's Inn Cookie" },
		["Olive's Toadstool Cookie"] = { "Olive's Toadstool Cookie PC Icon.png", "20px", "", "", "Olive's Toadstool Cookie" },
		["Poncho's Hero Cookie"] = { "Poncho's Hero Cookie PC Icon.png", "20px", "", "", "Poncho's Hero Cookie" },
		["Queenie's Mystic Cookie"] = { "Queenie's Mystic Cookie PC Icon.png", "20px", "", "", "Queenie's Mystic Cookie" },
		["Henry's Glamping Cookie"] = { "Henry's Glamping Cookie PC Icon.png", "20px", "", "", "Henry's Glamping Cookie" },
		["Ursala's Bouquet Cookie"] = { "Ursala's Bouquet Cookie PC Icon.png", "20px", "", "", "Ursala's Bouquet Cookie" },
		["Shari's Cottage Cookie"] = { "Shari's Cottage Cookie PC Icon.png", "20px", "", "", "Shari's Cottage Cookie" },
		["Bianca's Lights Cookie"] = { "Bianca's Lights Cookie PC Icon.png", "20px", "", "", "Bianca's Lights Cookie" },
		["Willow's Winged Cookie"] = { "Willow's Winged Cookie PC Icon.png", "20px", "", "", "Willow's Winged Cookie" },
		["Shino's Shrine Cookie"] = { "Shino's Shrine Cookie PC Icon.png", "20px", "", "", "Shino's Shrine Cookie" },
		["Wig Collection Cookie"] = { "Wig Collection Cookie PC Icon.png", "20px", "", "", "Wig Collection Cookie" },
		["Elegant Kimono Cookie"] = { "Elegant Kimono Cookie PC Icon.png", "20px", "", "", "Elegant Kimono Cookie" },
		["Tasteful Kimono Cookie"] = { "Tasteful Kimono Cookie PC Icon.png", "20px", "", "", "Tasteful Kimono Cookie" },
		["Fang's Sterling Cookie"] = { "Fang's Sterling Cookie PC Icon.png", "20px", "", "", "Fang's Sterling Cookie" },
		["Kitty's Chocolate Cookie"] = { "Kitty's Chocolate Cookie PC Icon.png", "20px", "", "", "Kitty's Chocolate Cookie" },
		["Beardo's Sleuth Cookie"] = { "Beardo's Sleuth Cookie PC Icon.png", "20px", "", "", "Beardo's Sleuth Cookie " },
		["Mint's Tea-Shop Cookie"] = { "Mint's Tea-Shop Cookie PC Icon.png", "20px", "", "", "Mint's Tea-Shop Cookie" },
		["Azalea's Train Cookie"] = { "Azalea's Train Cookie PC Icon.png", "20px", "", "", "Azalea's Train Cookie" },
		
		
		--Pocket Camp events--
		---Scavenger Hunt events---
		["Gyroidite Scavenger Hunt #1"] = { "Gyroidite PC Icon", "20px", "", "", "Gyroidite Scavenger Hunt #1" },
		["Gyroidite Scavenger Hunt #2"] = { "Wedding Gyroidite PC Icon", "20px", "", "", "Gyroidite Scavenger Hunt #2" },
		["Gyroidite Scavenger Hunt #3"] = { "Sparkle-Jelly Gyroidite PC Icon", "20px", "", "", "Gyroidite Scavenger Hunt #3" },
		["Gyroidite Scavenger Hunt #4"] = { "Denim Gyroidite PC Icon", "20px", "", "", "Gyroidite Scavenger Hunt #4" },
		["Blitz Clam Scavenger Hunt"] = { "Blitz Clam PC Icon", "20px", "", "", "Blitz Clam Scavenger Hunt" },
		["Poké Ball Scavenger Hunt"] = { "Poké Ball PC Icon", "20px", "", "", "Poké Ball Scavenger Hunt" },
		["Gyroidite Scavenger Hunt #5"] = { "First-Anniv. Gyroidite PC Icon", "20px", "", "", "Gyroidite Scavenger Hunt #5" },
		["Gyroidite Scavenger Hunt #6"] = { "Toy Day Gyroidite PC Icon", "20px", "", "", "Gyroidite Scavenger Hunt #6" },
		["Gyroidite Scavenger Hunt #7"] = { "Snow-Park Gyroidite PC Icon", "20px", "", "", "Gyroidite Scavenger Hunt #7" },
		["Valentine's Jam Session"] = { "Scarlet Gyroidite PC Icon", "20px", "", "", "Valentine's Jam Session" },
		["Gyroidite Scavenger Hunt #9"] = { "Balloon Gyroidite PC Icon", "20px", "", "", "Gyroidite Scavenger Hunt #9" },
		["Bunny Day Egg Hunt"] = { "Bunny-Day Egg PC Icon", "20px", "", "", "Bunny Day Egg Hunt" },
		["Gyroidite Scavenger Hunt #10"] = { "Kingly Gyroidite PC Icon", "20px", "", "", "Gyroidite Scavenger Hunt #10" },
		["Bubble Bonanza"] = { "Bubble Gyroidite PC Icon", "20px", "", "", "Bubble Bonanza" },
		["Gyroidite Scavenger Hunt: Sanrio Characters Collection"] = { "Hello Kitty Gyroidite PC Icon", "20px", "", "", "Gyroidite Scavenger Hunt: Sanrio Characters Collection" },
		["Choco-Mint Scavenger Hunt"] = { "Choco-Mint Gyroidite PC Icon", "20px", "", "", "Choco-Mint Scavenger Hunt" },
		["Truffles Scavenger Hunt"] = { "Truffle PC Icon", "20px", "", "", "Truffles Scavenger Hunt" },
		["Halloween Candy Hunt"] = { "Creepy Confection PC Icon", "20px", "", "", "Halloween Candy Hunt" },
		["All-Natural Scavenger Hunt"] = { "All-Natural Gyroidite PC Icon", "20px", "", "", "All-Natural Scavenger Hunt" },
		["Countdown Scavenger Hunt"] = { "Countdown Gyroidite PC Icon", "20px", "", "", "Countdown Scavenger Hunt" },
		["Snow Globe Scavenger Hunt"] = { "Snow-Globe Gyroidite PC Icon", "20px", "", "", "Snow Globe Scavenger Hunt" },
		["Chic Plaid Scavenger Hunt"] = { "Cinna-Plaid Gyroidite PC Icon", "20px", "", "", "Chic Plaid Scavenger Hunt" },
		["Thrifty Chic Scavenger Hunt"] = { "Thrifty Chic Gyroidite PC Icon", "20px", "", "", "Thrifty Chic Scavenger Hunt" },
		["Pretty Pastels Scavenger Hunt"] = { "Gyroidite (Traditional) PC Icon", "20px", "", "", "Pretty Pastels Scavenger Hunt" },
		["Misty Scavenger Hunt"] = { "Misty Gyroidite PC Icon", "20px", "", "", "Misty Scavenger Hunt" },
		["Harmony Scavenger Hunt"] = { "Bebop Gyroidite PC Icon", "20px", "", "", "Harmony Scavenger Hunt" },
		["Cool Scoop Scavenger Hunt"] = { "Cool Scoops Gyroidite PC Icon", "20px", "", "", "Cool Scoop Scavenger Hunt" },
		["Haunted Scavenger Hunt"] = { "Haunted Gyroidite PC Icon", "20px", "", "", "Haunted Scavenger Hunt" },
		["Acorn Accruement"] = { "Acorn PC Icon", "20px", "", "", "Acorn Accruement" },
		["Fright-Night Scavenger Hunt"] = { "Fright-Night Gyroidite PC Icon", "20px", "", "", "Fright-Night Scavenger Hunt" },
		["Pastel Pop Scavenger Hunt"] = { "Pastel-Pop Gyroidite PC Icon", "20px", "", "", "Pastel Pop Scavenger Hunt" },
		["Merrymaking Scavenger Hunt"] = { "Festive Gyroidite PC Icon", "20px", "", "", "Merrymaking Scavenger Hunt" },
		["Snow-Roll Scavenger Hunt"] = { "Snow-Roll Gyroidite PC Icon", "20px", "", "", "Snow-Roll Scavenger Hunt" },
		["Busker Scavenger Hunt"] = { "Busker Gyroidite PC Icon", "20px", "", "", "Busker Scavenger Hunt" },
		["Groovy Grub Scavenger Hunt"] = { "Cream Soda Gyroidite PC Icon", "20px", "", "", "Groovy Grub Scavenger Hunt" },
		["Scavenger Hunt (Yoga Flow)"] = { "Yoga Gyroidite PC Icon", "20px", "", "", "Scavenger Hunt (Yoga Flow)" },
		["Ninja Scavenger Hunt"] = { "Ninja Gyroidite PC Icon", "20px", "", "", "Ninja Scavenger Hunt" },
		["Electropop Scavenger Hunt"] = { "Electropop Gyroidite PC Icon", "20px", "", "", "Electropop Scavenger Hunt" },
		["Greenhouse Scavenger Hunt"] = { "Greenhouse Gyroidite PC Icon", "20px", "", "", "Greenhouse Scavenger Hunt" },
		["Scavenger Hunt (Terrarium)"] = { "Beach-Day Gyroidite PC Icon", "20px", "", "", "Scavenger Hunt (Terrarium)" },
		["Fall-Fruits Scavenger Hunt"] = { "Apple Gyroidite PC Icon", "20px", "", "", "Fall-Fruits Scavenger Hunt" },
		["Sweet Scavenger Haunt"] = { "Carved Pumpkin PC Icon.png", "20px", "", "", "Sweet Scavenger Haunt" },
		["Comfy Quilt Scavenger Hunt"] = { "Quilted Gyroidite PC Icon.png", "20px", "", "", "Comfy Quilt Scavenger Hunt" },
		["Candlelight Scavenger Hunt"] = { "Candle Gyroidite PC Icon.png", "20px", "", "", "Candlelight Scavenger Hunt" },
		["Frosty Scavenger Hunt"] = { "Frosty Gyroidite PC Icon.png", "20px", "", "", "Frosty Scavenger Hunt" },
		["Cozy Canine Scavenger Hunt"] = { "Puppy Gyroidite PC Icon.png", "20px", "", "", "Cozy Canine Scavenger Hunt" },
		["Music-Box Scavenger Hunt"] = { "Music-Box Gyroidite PC Icon.png", "20px", "", "", "Music-Box Scavenger Hunt" },
		
		---Fishing Tourney events---
		["Fishing Tourney #1"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney #1" },
		["Fishing Tourney #2"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney #2" },
		["Fishing Tourney #3"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney #3" },
		["Fishing Tourney #4"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney #4" },
		["Fishing Tourney #5"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney #5" },
		["Fishing Tourney #8"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney #8" },
		["Fishing Tourney #9"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney #9" },
		["Fishing Tourney #10"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney #10" },
		["Fishing Tourney #11"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney #11" },
		["Fishing Tourney #12"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney #12" },
		["Fishing Tourney Schoolroom"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney Schoolroom" },
		["Fishing Tourney #14"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney #14" },
		["Fishing Tourney (Aquarium)"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney (Aquarium)" },
		["Fishing Tourney (Poolside)"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney (Poolside)" },
		["Fishing Tourney (Fireworks)"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney (Fireworks)" },
		["Fishing Tourney (Dance)"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney (Dance)" },
		["Fishing Tourney (Blue Jazz)"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney (Blue Jazz)" },
		["Fishing Tourney (Starry)"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney (Starry)" },
		["Fishing Tourney (Knitted)"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney (Knitted)" },
		["Fishing Tourney (Honey)"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney (Honey)" },
		["Fishing Tourney (Terrarium)"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney (Terrarium)" },
		["Fishing Tourney (Wedding)"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney (Wedding)" },
		["Fishing Tourney (Pirates)"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney (Pirates)" },
		["Fishing Tourney (Goldfish)"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney (Goldfish)" },
		["Fishing Tourney (Gallery)"] = { "Chip PC Character Icon.png", "20px", "", "", "Fishing Tourney (Gallery)" },
		["Fishing Tourney #6"] = { "Chip (Splatoon) PC Character Icon.png", "20px", "", "", "Fishing Tourney #6" },
		["Fishing Tourney #7"] = { "Jack PC Character Icon.png", "20px", "", "", "Fishing Tourney #7" },
		["Fishing Tourney (Pumpkins)"] = { "Jack PC Character Icon.png", "20px", "", "", "Fishing Tourney (Pumpkins)" },
		["Fishing Tourney (Potions)"] = { "Jack PC Character Icon.png", "20px", "", "", "Fishing Tourney (Potions)" },
		["Fishing Tourney (Star Signs)"] = { "Jack PC Character Icon.png", "20px", "", "", "Fishing Tourney (Star Signs)" },
		["Fishing Tourney (Island Excursion)"] = { "Tom Nook PC Character Icon.png", "20px", "", "", "Fishing Tourney (Island Excursion)" },
		["Fishing Tourney (Bunny Day)"] = { "Zipper PC Character Icon.png", "20px", "", "", "Fishing Tourney (Bunny Day)" },
		["Fishing Tourney (Fintastic)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Fintastic)" },
		["Fishing Tourney (Do, Re, Mi)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Do, Re, Mi)" },
		["Fishing Tourney (Icy)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Icy)" },
		["Fishing Tourney (Sweet)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Sweet)" },
		["Fishing Tourney (Shamrock)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Shamrock)" },
		["Fishing Tourney (Sakura Class)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Sakura Class)" },
		["Fishing Tourney (Sushi)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Sushi)" },
		["Fishing Tourney (Luxe Life)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Luxe Life)" },
		["Fishing Tourney (BBQ Camp)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (BBQ Camp)" },
		["Fishing Tourney (Deep Sea)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Deep Sea)" },
		["Fishing Tourney (Foliage)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Foliage)" },
		["Fishing Tourney (Trees)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Trees)" },
		["Fishing Tourney (Tea Olive)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Tea Olive)" },
		["Fishing Tourney (On Ice!)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (On Ice!)" },
		["Fishing Tourney (Heist)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Heist)" },
		["Fishing Tourney (Succulents)"] = { "C.J. PC Character Icon.png", "20px", "", "", "Fishing Tourney (Succulents)" },
		
		---Garden events---
		["Rover's Garden Safari"] = { "Rover PC Character Icon.png", "20px", "", "", "Rover's Garden Safari" },
		["Lottie's Gothic Rose Festival"] = { "Lottie PC Character Icon.png", "20px", "", "", "Lottie's Gothic Rose Festival" },
		["Leif's Spring Flower Event"] = { "Leif PC Character Icon.png", "20px", "", "", "Leif's Spring Flower Event" },
		["Zipper's Wonderland Event"] = { "Zipper PC Character Icon.png", "20px", "", "", "Zipper's Wonderland Event" },
		["Fruit Party with Katie"] = { "Katie PC Character Icon.png", "20px", "", "", "Fruit Party with Katie" },
		["Digby's Artful Retreat"] = { "Digby PC Character Icon.png", "20px", "", "", "Digby's Artful Retreat" },
		["Bloomin' Booty with Kapp'n"] = { "Kapp'n PC Character Icon.png", "20px", "", "", "Bloomin' Booty with Kapp'n" },
		["Redd's Summer Festival"] = { "Redd PC Character Icon.png", "20px", "", "", "Redd's Summer Festival" },
		["Flower Festival"] = { "Rainbow Pinwheel PC Icon.png", "20px", "", "", "Flower Festival" },
		["Brewster's Sweet Harvest"] = { "Brewster PC Character Icon.png", "20px", "", "", "Brewster's Sweet Harvest" },
		["Jack's Halloween Hunt"] = { "Jack PC Character Icon.png", "20px", "", "", "Jack's Halloween Hunt" },
		["Isabelle's Party-Prep Project"] = { "Isabelle PC Character Icon.png", "20px", "", "", "Isabelle's Party-Prep Project" },
		["Jingle's Holly Jolly Roundup"] = { "Jingle PC Character Icon.png", "20px", "", "", "Jingle's Holly Jolly Roundup" },
		["Tortimer's Floral Fancy"] = { "Tortimer PC Character Icon.png", "20px", "", "", "Tortimer's Floral Fancy" },
		["Pelly's Flight of Passion"] = { "Pelly PC Character Icon.png", "20px", "", "", "Pelly's Flight of Passion" },
		["Viva Festivale with Pavé"] = { "Pavé PC Character Icon.png", "20px", "", "", "Viva Festivale with Pavé" },
		["Katie's Time Out"] = { "Katie PC Character Icon.png", "20px", "", "", "Katie's Time Out" },
		["Idle Beats with DJ KK"] = { "DJ KK PC Character Icon.png", "20px", "", "", "Idle Beats with DJ KK" },
		["Gracie's Haute Hello"] = { "Gracie PC Character Icon.png", "20px", "", "", "Gracie's Haute Hello" },
		["Pascal's Crunchy Munchies"] = { "Pascal PC Character Icon.png", "20px", "", "", "Pascal's Crunchy Munchies" },
		["Isabelle's Garden Gathering"] = { "Isabelle PC Character Icon.png", "20px", "", "", "Isabelle's Garden Gathering" },
		["City Slickin' with Kicks"] = { "Kicks PC Character Icon.png", "20px", "", "", "City Slickin' with Kicks" },
		["Jack's Ghoulish Gala"] = { "Jack PC Character Icon.png", "20px", "", "", "Jack's Ghoulish Gala" },
		["Isabelle's Double Dazzle"] = { "Isabelle PC Character Icon.png", "20px", "", "", "Isabelle's Double Dazzle" },
		["Jingle's Frosted Forest"] = { "Jingle PC Character Icon.png", "20px", "", "", "Jingle's Frosted Forest" },
		["Isabelle's Tranquil Tearoom"] = { "Isabelle PC Character Icon.png", "20px", "", "", "Isabelle's Tranquil Tearoom" },
		["Reese's Sweet Nothings"] = { "Reese PC Character Icon.png", "20px", "", "", "Reese's Sweet Nothings" },
		["Leif's Happy Tulips"] = { "Leif PC Character Icon.png", "20px", "", "", "Leif's Happy Tulips" },
		["Katie's Sakura Festival"] = { "Katie PC Character Icon.png", "20px", "", "", "Katie's Sakura Festival" },
		["Daisy Mae's Pickin' Patch"] = { "Daisy Mae PC Character Icon.png", "20px", "", "", "Daisy Mae's Pickin' Patch" },
		["Lottie's Wedding Expo"] = { "Lottie PC Character Icon.png", "20px", "", "", "Lottie's Wedding Expo" },
		["Gulliver's Port Resort"] = { "Gulliver PC Character Icon.png", "20px", "", "", "Gulliver's Port Resort" },
		["Isabelle's Creek Cooldown"] = { "Isabelle PC Character Icon.png", "20px", "", "", "Isabelle's Creek Cooldown" },
		["Celeste's Ginkgo Café"] = { "Celeste PC Character Icon.png", "20px", "", "", "Celeste's Ginkgo Café" },
		["Jack's Creepy Conjuring"] = { "Jack PC Character Icon.png", "20px", "", "", "Jack's Creepy Conjuring" },
		["Isabelle's Pastel Party"] = { "Isabelle PC Character Icon.png", "20px", "", "", "Isabelle's Pastel Party" },
		["Jingle's Glowing Garden"] = { "Jingle PC Character Icon.png", "20px", "", "", "Jingle's Glowing Garden" },
		["Isabelle's Hanafuda Deck"] = { "Isabelle PC Character Icon.png", "20px", "", "", "Isabelle's Hanafuda Deck" },
		["Rover's Waffle Whimsy"] = { "Rover PC Character Icon.png", "20px", "", "", "Rover's Waffle Whimsy" },
		["Katie's Living Labyrinth"] = { "Katie PC Character Icon.png", "20px", "", "", "Katie's Living Labyrinth" },
		["Zipper's Enormous Egg Hunt"] = { "Zipper PC Character Icon.png", "20px", "", "", "Zipper's Enormous Egg Hunt" },
		["Isabelle's Garden Gratitude"] = { "Isabelle PC Character Icon.png", "20px", "", "", "Isabelle's Garden Gratitude" },
		["Label's Sleek City Slickers"] = { "Labelle PC Character Icon.png", "20px", "", "", "Label's Sleek City Slickers" },
		["Kapp'n's Summer Resort Vacation"] = { "Kapp'n PC Character Icon.png", "20px", "", "", "Kapp'n's Summer Resort Vacation" },
		["Pascal's Deep-Sea Digs"] = { "Pascal PC Character Icon.png", "20px", "", "", "Pascal's Deep-Sea Digs" },
		["Isabelle's Lunar Lookout"] = { "Isabelle PC Character Icon.png", "20px", "", "", "Isabelle's Lunar Lookout" },
		["Jack's Fantastical Fable"] = { "Jack PC Character Icon.png", "20px", "", "", "Jack's Fantastical Fable" },
		["Franklin's Farm-to-Table"] = { "Franklin PC Character Icon.png", "20px", "", "", "Franklin's Farm-to-Table" },
		["Jingle's Merry Market"] = { "Jingle PC Character Icon.png", "20px", "", "", "Jingle's Merry Market" },
		["Tortimer's Origami Party"] = { "Tortimer PC Character Icon.png", "20px", "", "", "Tortimer's Origami Party" },
		["Celeste's Chocolate Terrace"] = { "Celeste PC Character Icon.png", "20px", "", "", "Celeste's Chocolate Terrace" },
		["Leif's Flower Frolic"] = { "Leif PC Character Icon.png", "20px", "", "", "Leif's Flower Frolic" },
		
		--- Wall & Floor collections ---
		["Holiday and Snowman Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Holiday and Snowman Wall & Floor Collection" },
		["Backyard and Basement Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Backyard and Basement Wall & Floor Collection" },
		["Super Mario Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Super Mario Wall & Floor Collection" },
		["Tea-Party and Schoolroom Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Tea-Party and Schoolroom Wall & Floor Collection" },
		["Elegant and Concert Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Elegant and Concert Wall & Floor Collection" },
		["Dreamy Pastel and Ocean Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Dreamy Pastel and Ocean Wall & Floor Collection" },
		["Antique Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Antique Wall & Floor Collection" },
		["Steampunk Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Steampunk Wall & Floor Collection" },
		["Eerie Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Eerie Wall & Floor Collection" },
		["Royal Blue Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Royal Blue Wall & Floor Collection" },
		["Holiday Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Holiday Wall & Floor Collection" },
		["Cozy Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Cozy Wall & Floor Collection" },
		["Sweet Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Sweet Wall & Floor Collection" },
		["Floral Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Floral Wall & Floor Collection" },
		["Island Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Island Wall & Floor Collection" },
		["Spring Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Spring Wall & Floor Collection" },
		["Tranquil Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Tranquil Wall & Floor Collection" },
		["Down the Aisle Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Down the Aisle Wall & Floor Collection" },
		["Ocean View Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Ocean View Wall & Floor Collection" },
		["Classic Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Classic Wall & Floor Collection" },
		["Evil Elegance Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Evil Elegance Wall & Floor Collection" },
		["Pastel Parlor Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Pastel Parlor Wall & Floor Collection" },
		["Festive Fun Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Festive Fun Wall & Floor Collection" },
		["Icy Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Icy Wall & Floor Collection" },
		["Lunar New Year Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Lunar New Year Wall & Floor Collection" },
		["Choco Café Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Choco Café Wall & Floor Collection" },
		["Sunlit Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Sunlit Wall & Floor Collection" },
		["Breezy Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Breezy Wall & Floor Collection" },
		["Diner Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Diner Wall & Floor Collection" },
		["Garden Zen Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Garden Zen Wall & Floor Collection" },
		["City Living Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "City Living Wall & Floor Collection" },
		["Paradise Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Paradise Wall & Floor Collection" },
		["Deep-Sea Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Deep-Sea Wall & Floor Collection" },
		["Aqua Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Aqua Wall & Floor Collection" },
		["Fall Scenery Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Fall Scenery Wall & Floor Collection" },
		["Fantasy Forest Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Fantasy Forest Wall & Floor Collection" },
		["Mysterious Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Mysterious Wall & Floor Collection" },
		["Spirited Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Spirited Wall & Floor Collection" },
		["Cottage Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Cottage Wall & Floor Collection" },
		["Snowfall Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Snowfall Wall & Floor Collection" },
		["Rustic Holiday Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Rustic Holiday Wall & Floor Collection" },
		["Winter Zen Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Winter Zen Wall & Floor Collection" },
		["Ice Palace Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Ice Palace Wall & Floor Collection" },
		["Cocoa Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Cocoa Wall & Floor Collection" },
		["Stately Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Stately Wall & Floor Collection" },
		["Waggin' Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Waggin' Wall & Floor Collection" },
		["Spring Garden Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Spring Garden Wall & Floor Collection" },
		["Estate Wall & Floor Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Estate Wall & Floor Collection" },
		
		---Premium collections---
		["Yukata Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Yukata Collection" },
		["Coat Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Coat Collection" },
		["Kimono Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Kimono Collection" },
		["Valentine's Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Valentine's Collection" },
		["Spring into Style Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Spring into Style Collection" },
		["Backpack Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Backpack Collection" },
		["Rock-Star Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Rock-Star Collection" },
		["Guitar Case Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Guitar Case Collection" },
		["Wedding Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Wedding Collection" },
		["Beachwear Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Beachwear Collection" },
		["Yukata Collection 2019"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Yukata Collection 2019" },
		["Wiggin' Out Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Wiggin' Out Collection" },
		["Steampunk Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Steampunk Collection" },
		["Animal Apparel Collection 1"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Animal Apparel Collection 1" },
		["Costume Party Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Costume Party Collection" },
		["Royal Party Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Royal Party Collection" },
		["Animal Apparel Collection 2"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Animal Apparel Collection 2" },
		["Warm Winter Style Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Warm Winter Style Collection" },
		["Kimono Collection 2020"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Kimono Collection 2020" },
		["Styled-Up Wig Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Styled-Up Wig Collection" },
		["Whimsy Valentine Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Whimsy Valentine Collection" },
		["Date Night Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Date Night Collection" },
		["Eyes and Ears Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Eyes and Ears Collection" },
		["Flower Power Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Flower Power Collection" },
		["Sharp Spring Trends Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Sharp Spring Trends Collection" },
		["Sakura Hakama Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Sakura Hakama Collection" },
		["Traditional Clothing Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Traditional Clothing Collection" },
		["Cafe Cool Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Cafe Cool Collection" },
		["Rainy Day Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Rainy Day Collection" },
		["2020 Wedding Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "2020 Wedding Collection" },
		["Merry Mariner Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Merry Mariner Collection" },
		["2020 Beachwear Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "2020 Beachwear Collection" },
		["Classic Wig Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Classic Wig Collection" },
		["Old-School Autumn Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Old-School Autumn Collection" },
		["Autumn Art Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Autumn Art Collection" },
		["Enchanted Costume Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Enchanted Costume Collection" },
		["Fall Fads Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Fall Fads Collection" },
		["Fluffy Fits Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Fluffy Fits Collection" },
		["Merry Toy Day Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Merry Toy Day Collection" },
		["Cozy Knits Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Cozy Knits Collection" },
		["Kimono Collection 2021"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Kimono Collection 2021" },
		["Snowy Sparkle Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Snowy Sparkle Collection" },
		["Valentine Rose Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Valentine Rose Collection" },
		["Feline Friendly Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Feline Friendly Collection" },
		["Spring Fairy Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Spring Fairy Collection" },
		["Far Out Fashion Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Far Out Fashion Collection" },
		["Style In Bloom Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Style In Bloom Collection" },
		["Spring Sportswear Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Spring Sportswear Collection" },
		["Tranquil Tones Outfit Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Tranquil Tones Outfit Collection" },
		["Ninja Stealth Costume Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Ninja Stealth Costume Collection" },
		["Cyber Style Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Cyber Style Collection" },
		["Red-Carpet Luxury Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Red-Carpet Luxury Collection" },
		["Outdoor Adventurer Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Outdoor Adventurer Collection" },
		["Mystical Mermaid Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Mystical Mermaid Collection" },
		["Stayin' Cool Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Stayin' Cool Collection" },
		["Celestial Festival Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Celestial Festival Collection" },
		["Fruity Fall Outfit Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Fruity Fall Outfit Collection" },
		["Hero's Quest Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Hero's Quest Collection" },
		["Star Signs Dress Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Star Signs Dress Collection" },
		["Fall Knits and Plaids Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Fall Knits and Plaids Collection" },
		["Fall Florals Outfit Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Fall Florals Outfit Collection" },
		["Festive Fawns & Felines Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Festive Fawns & Felines Collection" },
		["Angelic Adornments Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Angelic Adornments Collection" },
		["Mythical Kimono Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Mythical Kimono Collection" },
		["Kaleidoscope Rug Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Kaleidoscope Rug Collection" },
		["Bundle-Up Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Bundle-Up Collection" },
		["Gourmet Chocolatier Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Gourmet Chocolatier Collection" },
		["Haute Heist Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Haute Heist Collection" },
		["Flower Fairy Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Flower Fairy Collection" },
		["Garden Garb Collection"] = { "Leaf Ticket PC Icon.png", "20px", "", "", "Garden Garb Collection" },
		
		---Other Pocket Camp events---
		["Holiday 2017"] = { "Festive Bow Tree PC Icon.png", "20px", "", "", "Holiday 2017" },
		["New Year's 2018"] = { "Fancy Kadomatsu PC Icon.png", "20px", "", "", "New Year's 2018" },
		["Winter Sports"] = { "Mini Skate Rink PC Icon.png", "20px", "", "", "Winter Sports" },
		["Crystal Collection"] = { "Crystal Tree PC Icon.png", "20px", "", "", "Crystal Collection" },
		["Super Mario Crossover"] = { "Super Mushroom PC Icon.png", "20px", "", "", "Super Mario Crossover" },
		["Hello Kitty and Cinnamoroll"] = { "Hello Kitty Wall PC Icon.png", "20px", "", "", "Hello Kitty and Cinnamoroll" },
		["Pompompurin and My Melody"] = { "Pompompurin Wall PC Icon.png", "20px", "", "", "Pompompurin and My Melody" },
		["Little Twin Stars and Kerokerokeroppi"] = { "Kiki and Lala Wall PC Icon.png", "20px", "", "", "Little Twin Stars and Kerokerokeroppi" },
		["SOU・SOU Yukata Collection"] = { "Tender Yukata PC Icon.png", "20px", "", "", "SOU・SOU Yukata Collection" },
		["SOU・SOU Interior Collection"] = { "SO-SU-U Zen Cushion PC Icon.png", "20px", "", "", "SOU・SOU Interior Collection" },
		["Country Patio Collection"] = { "Country-Fence Corner PC Icon.png", "20px", "", "", "Country Patio Collection" },
		["Clocktower Carillon"] = { "Clocktower Carillon PC Icon.png", "20px", "", "", "Clocktower Carillon" },
		["Sanrio Characters Tee Collection"] = { "Kuromi Tee PC Icon.png", "20px", "", "", "Sanrio Characters Tee Collection" },
		["Sanrio Characters Cute Collection"] = { "Hello Kitty Plush PC Icon.png", "20px", "", "", "Sanrio Characters Cute Collection" },
		["Tranquil Castle Keep"] = { "Tranquil Castle Keep PC Icon.png", "20px", "", "", "Tranquil Castle Keep" },
		["Time-Lapse Window Collection"] = { "Simple White Window PC Icon.png", "20px", "", "", "Time-Lapse Window Collection" },
		["Mermaid Castle"] = { "Mermaid Castle PC Icon.png", "20px", "", "", "Mermaid Castle" },
		["Autumn-View Window Collection"] = { "Red Full-Moon Window PC Icon.png", "20px", "", "", "Autumn-View Window Collection" },
		["Rotating Toy Day Tree"] = { "Rotating Toy Day Tree PC Icon.png", "20px", "", "", "Rotating Toy Day Tree" },
		["Giant Fairy-Forest Bench"] = { "Giant Fairy-Forest Bench PC Icon.png", "20px", "", "", "Giant Fairy-Forest Bench" },
		
		
		--Other availabilities--
		["Bokjumeoni Lucky Pouch"] = { "Bokjumeoni Lucky Pouch NH Inv Icon.png", "22px", "Item:Bokjumeoni Lucky Pouch (New Horizons)", "Bokjumeoni Lucky Pouch", "[[Item:Bokjumeoni Lucky Pouch (New Horizons)|Bokjumeoni Lucky Pouch]]" },
		["Communicator"] = { "Communicator NH Inv Icon.png", "22px", "Item:Communicator (New Horizons)", "Communicator", "[[Item:Communicator (New Horizons)|Communicator]]" },
		["Communicator Part"] = { "Communicator Part NH Inv Icon.png", "22px", "Item:Communicator Part (New Horizons)", "Communicator Part", "[[Item:Communicator Part (New Horizons)|Communicator Part]]" },
		["Fountain Firework"] = { "Fountain Firework NH Inv Icon.png", "22px", "Item:Fountain Firework (New Horizons)", "Fountain Firework", "[[Item:Fountain Firework (New Horizons)|Fountain Firework]]" },
		["Lucky Red Envelope"] = { "Lucky Red Envelope NH Inv Icon.png", "22px", "Item:Lucky Red Envelope (New Horizons)", "Lucky Red Envelope", "[[Item:Lucky Red Envelope (New Horizons)|Lucky Red Envelope]]" },
		["Otoshidama Envelope"] = { "Otoshidama Envelope NH Inv Icon.png", "22px", "Item:Otoshidama Envelope (New Horizons)", "Otoshidama Envelope", "[[Item:Otoshidama Envelope (New Horizons)|Otoshidama Envelope]]" },
		["Festive Wrapping Paper"] = { "Festive Wrapping Paper NH Inv Icon.png", "22px", "Item:Festive Wrapping Paper (New Horizons)", "Festive Wrapping Paper", "[[Item:Festive Wrapping Paper (New Horizons)|Festive Wrapping Paper]]" },
		["Breeding"] = { "Watering Can NH Inv Icon.png", "18px", "Hybrid", "Breeding flowers", "[[Hybrid|Breeding flowers]]" },
		["Birthday"] = { "Birthday Cupcake NH Inv Icon Cropped.png", "22px", "Birthday", "Birthday", "[[Birthday]]" },
		["Bug-Off"] = { "Net NH Inv Icon.png", "22px", "Bug-Off", "Bug-Off", "[[Bug-Off]]" },
		["Bunny Day"] = { "Bunny Day Basket NH Icon.png", "22px", "Bunny Day", "Bunny Day", "[[Bunny Day]]" },
		["Egg Balloon"] = { "Egg Balloon cropped.png", "18px", "", "", "Egg [[Balloon]]s" },
		["Egg Bottle"] = { "Egg Message Bottle NH Inv Icon.png", "22px", "", "", "Egg [[Message bottle|Bottle]]" },
		["Catching"] = { "Net NH Inv Icon.png", "22px", "Catching`", "Catching", "[[Catching]]" },
		["New Year's"] = { "Party Popper NH Icon.png", "22px", "New Year's", "New Year's", "[[New Year's]]" },
		["Countdown"] = { "Party Popper NH Icon.png", "22px", "Countdown", "Countdown", "[[Countdown]]" },
		["Fishing Tourney"] = { "Fishing Rod NH Inv Icon.png", "22px", "Fishing Tourney", "Fishing Tourney", "[[Fishing Tourney]]" },
		["Fishing"] = { "Fishing Rod NH Inv Icon.png", "22px", "Fishing", "Fishing", "[[Fishing]]" },
		["Raffle"] = { "Tom Nook NH Character Icon.png", "22px", "Raffle", "Raffle", "[[Raffle]]" },
		["Redd's Raffle"] = { "Redd NH Character Icon.png", "22px", "Fireworks Show#New Horizons", "Redd's Raffle", "[[Fireworks Show#New Horizons|Redd's Raffle]]" },
		["One Day Sale"] = { "Tom Nook NH Character Icon.png", "22px", "One Day Sale", "One Day Sale", "[[One Day Sale]]" },
		["Sale Day"] = { "Grab Bag PG Model.png", "22px", "Sale Day", "Sale Day", "[[Sale Day]]" },
		["amiibo"] = { "Amiibo icon black.png", "22px", "amiibo", "amiibo", "[[amiibo]]" },
		["e-Reader card"] = { "E-Reader Icon.png", "22px", "e-Reader card", "e-Reader card", "[[e-Reader card]]" },
		["Balloons"] = { "Balloon NH Inv Icon.png", "22px", "Balloon", "Balloons", "[[Balloon]]s" },
		["Balloon"] = { "Balloon NH Inv Icon.png", "22px", "Balloon", "Balloons", "[[Balloon]]s" },
		["Crafting"] = { "Menu DIY NH Icon.png", "22px", "DIY", "Crafting", "[[DIY|Crafting]]" },
		["Cooking"] = { "Cooking NH Icon.png", "18px", "DIY", "Cooking", "[[DIY|Cooking]]" },
		["DIY for Beginners"] = { "DIY Pack NH Inv Icon.png", "22px", "Item:DIY for Beginners (New Horizons)", "DIY for Beginners", "[[Item:DIY for Beginners (New Horizons)|DIY for Beginners]]" },
		["Test Your DIY Skills"] = { "DIY Pack NH Inv Icon.png", "22px", "Item:Test Your DIY Skills (New Horizons)", "Test Your DIY Skills", "[[Item:Test Your DIY Skills (New Horizons)|Test Your DIY Skills]]" },
		["Wildest Dreams DIY"] = { "DIY Pack NH Inv Icon.png", "22px", "Item:Wildest Dreams DIY (New Horizons)", "Wildest Dreams DIY", "[[Item:Wildest Dreams DIY (New Horizons)|Wildest Dreams DIY]]" },
		["Pretty Good Tools Recipes"] = { "DIY Pack NH Inv Icon.png", "22px", "Item:Pretty Good Tools Recipes (New Horizons)", "Pretty Good Tools Recipes", "[[Item:Pretty Good Tools Recipes (New Horizons)|Pretty Good Tools Recipes]]" },
		["Cozy Turkey Day DIY"] = { "DIY Pack NH Inv Icon.png", "22px", "Item:Cozy Turkey Day DIY (New Horizons)", "Cozy Turkey Day DIY", "[[Item:Cozy Turkey Day DIY (New Horizons)|Cozy Turkey Day DIY]]" },
		["Be a Chef! DIY Recipes+"] = { "Be a Chef! DIY Recipes+ NH Inv Icon.png", "22px", "Item:Be a Chef! DIY Recipes+ (New Horizons)", "Be a Chef! DIY Recipes+", "[[Item:Be a Chef! DIY Recipes+ (New Horizons)|Be a Chef! DIY Recipes+]]" },
		["Basic Cooking Recipes"] = { "Cooking Recipe NH Inv Icon.png", "22px", "Item:Basic Cooking Recipes (New Horizons)", "Basic Cooking Recipes", "[[Item:Basic Cooking Recipes (New Horizons)|Basic Cooking Recipes]]" },
		["Turkey Day Recipes"] = { "Cooking Recipe NH Inv Icon.png", "22px", "Item:Turkey Day Recipes (New Horizons)", "Turkey Day Recipes", "[[Item:Turkey Day Recipes (New Horizons)|Turkey Day Recipes]]" },
		["Diving"] = { "Wet Suit NH Inv Icon.png", "22px", "Swimming", "Diving", "[[Swimming|Diving]]" },
		["DJ KK's Concert"] = { "DJ KK NH Character Icon.png", "22px", "", "", "[[DJ KK]]'s concert" },
		["Hip Reaction Collection"] = { "Special Card NH Inv Icon.png", "22px", "Item:Hip Reaction Collection (New Horizons)", "Hip Reaction Collection", "[[Item:Hip Reaction Collection (New Horizons)|Hip Reaction Collection]]" },
		["Viva Festivale Reaction Set"] = { "Special Card NH Inv Icon.png", "22px", "Item:Viva Festivale Reaction Set (New Horizons)", "Viva Festivale Reaction Set", "[[Item:Viva Festivale Reaction Set (New Horizons)|Viva Festivale Reaction Set]]" },
		["New Reactions Notebook"] = { "Special Card NH Inv Icon.png", "22px", "Item:New Reactions Notebook (New Horizons)", "New Reactions Notebook", "[[Item:New Reactions Notebook (New Horizons)|New Reactions Notebook]]" },
		["Custom Fencing in a Flash"] = { "Special Card NH Inv Icon.png", "22px", "Item:Custom Fencing in a Flash (New Horizons)", "Custom Fencing in a Flash", "[[Item:Custom Fencing in a Flash (New Horizons)|Custom Fencing in a Flash]]" },
		["Crafting (Pocket Camp)"] = { "Sparkle Stones PC Icon.png", "22px", "Crafting", "Crafting", "[[Crafting]]" },
		["Fortune Cookie"] = { "Fortune Cookie NL Icon.png", "22px", "Fortune Cookie", "Fortune Cookie", "[[Fortune Cookie|Fortune Cookie]]" },
		["Group stretching"] = { "Side Bends NH Reaction Icon.png", "22px", "Group stretching", "Group stretching", "[[Group stretching]]" },
		["Group Stretching"] = { "Side Bends NH Reaction Icon.png", "22px", "Group stretching", "Group stretching", "[[Group stretching]]" },
		["Golden Watering Can"] = { "Golden Watering Can NH Inv Icon.png", "18px", "Hybrid", "Breeding flowers", "[[Hybrid|Breeding flowers]]" },
		["Ground"] = { "", "", "", "", "On ground" },
		["Message Bottle"] = { "Message Bottle NH Inv Icon.png", "22px", "Message Bottle", "Message Bottle", "[[Message Bottle]]" },
		["Nintendo"] = { "Mailbox NH Inv Icon.png", "22px", "Nintendo", "Nintendo", "[[Nintendo]]" },
		["DS Download Station"] = { "DS Icon.png", "22px", "", "", "DS Download Station" },
		["Nintendo WFC"] = { "Nintendo Wi-Fi Connection.png", "22px", "Nintendo Wi-Fi Connection", "Nintendo WFC", "[[Nintendo Wi-Fi Connection|Nintendo WFC]]" },
		["Nintendo Wi-Fi Connection"] = { "Nintendo Wi-Fi Connection.png", "22px", "Nintendo Wi-Fi Connection", "Nintendo Wi-Fi Connection", "[[Nintendo Wi-Fi Connection|Nintendo Wi-Fi Connection]]" },
		["WiiConnect24"] = { "WiiConnect24 Icon.png", "22px", "WiiConnect24", "WiiConnect24", "[[WiiConnect24]]" },
		["SpotPass"] = { "Spotpass Icon.png", "22px", "SpotPass", "SpotPass", "[[SpotPass]]" },
		["Nintendo Zone"] = { "Nintendo Zone Icon.png", "22px", "", "", "Nintendo Zone" },
		["Nook Miles Redemption"] = { "Nook Miles NH Icon Cropped.png", "22px", "Nook Stop#Items redeemable with Nook Miles", "Nook Miles Redemption", "[[Nook Stop#Items redeemable with Nook Miles|Nook Miles Redemption]]" },
		["Nook Miles Exchange"] = { "Nook Miles NH Icon Cropped.png", "22px", "Nook Stop#Items redeemable with Nook Miles", "Nook Miles Exchange", "[[Nook Stop#Items redeemable with Nook Miles|Nook Miles Exchange]]" },
		["Nook Shopping"] = { "Package NH Inv Icon.png", "22px", "Nook Shopping", "Nook Shopping", "[[Nook Shopping]]" },
		["Pocket Camp"] = { "Map Icon Camp ACPC.png", "22px", "", "", "''[[Animal Crossing: Pocket Camp|Pocket Camp]]''" },
		["Secret code"] = { "Nook's Code Icon AC.png", "22px", "Secret code", "Secret code", "[[Secret code]]" },
		["Top 8 Cool Hairstyles"] = { "Hairstyle Pack NH Inv Icon.png", "22px", "Item:Top 8 Cool Hairstyles (New Horizons)", "Top 8 Cool Hairstyles", "[[Item:Top 8 Cool Hairstyles (New Horizons)|Top 8 Cool Hairstyles]]" },
		["Top 8 Pop Hairstyles"] = { "Hairstyle Pack NH Inv Icon.png", "22px", "Item:Top 8 Pop Hairstyles (New Horizons)", "Top 8 Pop Hairstyles", "[[Item:Top 8 Pop Hairstyles (New Horizons)|Top 8 Pop Hairstyles]]" },
		["Top 8 Stylish Hair Colors"] = { "Hairstyle Pack NH Inv Icon.png", "22px", "Item:Top 8 Stylish Hair Colors (New Horizons)", "Top 8 Stylish Hair Colors", "[[Item:Top 8 Stylish Hair Colors (New Horizons)|Top 8 Stylish Hair Colors]]" },
		["Top 6 Stylish Hairstyles"] = { "Hairstyle Pack NH Inv Icon.png", "22px", "Item:Top 6 Stylish Hairstyles (New Horizons)", "Top 6 Stylish Hairstyles", "[[Item:Top 6 Stylish Hairstyles (New Horizons)|Top 6 Stylish Hairstyles]]" },
		["Top 4 Fab Hairstyles"] = { "Hairstyle Pack NH Inv Icon.png", "22px", "Item:Top 4 Fab Hairstyles (New Horizons)", "Top 4 Fab Hairstyles", "[[Item:Top 4 Fab Hairstyles (New Horizons)|Top 4 Fab Hairstyles]]" },
		["Treasure hunt"] = { "Shovel NH Inv Icon.png", "22px", "Treasure hunt", "Treasure hunt", "[[Treasure hunt]]" },
		["Underground"] = { "Shovel NH Inv Icon.png", "22px", "", "", "Dig spot" },
		["Dig spot"] = { "Shovel NH Inv Icon.png", "22px", "", "", "Dig spot" }
	}
	local dataRV = {
		--[[
		This section of the module is used to insert the icons and links for villagers and special characters with RVs.
		Syntax:
		["name_of_source"] = { "source_image", "source_image_size", "link_to_source", "name_of_source" }
		--]]
		["Isabelle"] = { "Isabelle NL Character Icon.png", "18px", "Isabelle#RVs in Welcome amiibo", "Isabelle's RV" },
		["Rover"] = { "Rover NL Character Icon.png", "18px", "Rover#RV in Welcome amiibo", "Rover's RV" },
		["Tom Nook"] = { "Tom Nook NL Character Icon.png", "18px", "Tom Nook#RV in Welcome amiibo", "Tom Nook's RV" },
		["Blathers"] = { "Blathers NL Character Icon.png", "18px", "Blathers#RV in Welcome amiibo", "Blathers's RV" },
		["Jack"] = { "Jack NL Character Icon.png", "18px", "Jack#RV in Welcome amiibo", "Jack's RV" },
		["K.K."] = { "K.K. NL Character Icon.png", "18px", "K.K.#RV in Welcome amiibo", "K.K.'s RV" },
		["Mabel"] = { "Mabel NL Character Icon.png", "18px", "Mabel#RV in Welcome amiibo", "Mabel's RV" },
		["Reese"] = { "Reese NL Character Icon.png", "18px", "Reese#RV in Welcome amiibo", "Reese's RV" },
		["Cyrus"] = { "Cyrus NL Character Icon.png", "18px", "Cyrus#RV in Welcome amiibo", "Cyrus's RV" },
		["Celeste"] = { "Celeste NL Character Icon.png", "18px", "Celeste#RV in Welcome amiibo", "Celeste's RV" },
		["Timmy"] = { "Timmy NL Character Icon.png", "18px", "Timmy and Tommy#RV in Welcome amiibo", "Timmy's RV" },
		["Tommy"] = { "Tommy NL Character Icon.png", "18px", "Tommy and Tommy#RV in Welcome amiibo", "Tommy's RV" },
		["Resetti"] = { "Resetti NL Character Icon.png", "18px", "Resetti#RV in Welcome amiibo", "Resetti's RV" },
		["Kapp'n"] = { "Kapp'n NL Character Icon.png", "18px", "Kapp'n#RV in Welcome amiibo", "Kapp'n's RV" },
		["Gulliver"] = { "Gulliver NL Character Icon.png", "18px", "Gulliver#RV in Welcome amiibo", "Gulliver's RV" },
		["Wendell"] = { "Wendell NL Character Icon.png", "18px", "Wendell#RV in Welcome amiibo", "Wendell's RV" },
		["Zipper"] = { "Zipper NL Character Icon.png", "18px", "Zipper#RV in Welcome amiibo", "Zipper's RV" },
		["Pascal"] = { "Pascal NL Character Icon.png", "18px", "Pascal#RV in Welcome amiibo", "Pascal's RV" },
		["Saharah"] = { "Saharah NL Character Icon.png", "18px", "Saharah#RV in Welcome amiibo", "Saharah's RV" },
		["Franklin"] = { "Franklin NL Character Icon.png", "18px", "Franklin#RV in Welcome amiibo", "Franklin's RV" },
		["Jingle"] = { "Jingle NL Character Icon.png", "18px", "Jingle#RV in Welcome amiibo", "Jingle's RV" },
		["Chip"] = { "Chip NL Character Icon.png", "18px", "Chip#RV in Welcome amiibo", "Chip's RV" },
		["Digby"] = { "Digby NL Character Icon.png", "18px", "Digby#RV in Welcome amiibo", "Digby's RV" },
		["Kicks"] = { "Kicks NL Character Icon.png", "18px", "Kicks#RV in Welcome amiibo", "Kicks's RV" },
		["Nat"] = { "Nat NL Character Icon.png", "18px", "Nat#RV in Welcome amiibo", "Nat's RV" },
		["Pavé"] = { "Pavé NL Character Icon.png", "18px", "Pavé#RV in Welcome amiibo", "Pavé's RV" },
		["Joan"] = { "Joan NL Character Icon.png", "18px", "Joan#RV in Welcome amiibo", "Joan's RV" },
		["Copper"] = { "Copper NL Character Icon.png", "18px", "Copper#RV in Welcome amiibo", "Copper's RV" },
		["Booker"] = { "Booker NL Character Icon.png", "18px", "Booker#RV in Welcome amiibo", "Booker's RV" },
		["Blanca"] = { "Blanca NL Character Icon.png", "18px", "Blanca#RV in Welcome amiibo", "Blanca's RV" },
		["Lottie"] = { "Lottie NL Character Icon.png", "18px", "Lottie#RV in Welcome amiibo", "Lottie's RV" },
		["Timmy and Tommy"] = { "Nooklings NL Character Icon.png", "18px", "Timmy and Tommy#RV in Welcome amiibo", "Timmy and Tommy's RV" },
		["Wisp"] = { "Wisp NH Character Icon.png", "18px", "Wisp", "Wisp's RV" },
		["June"] = { "June NL Villager Icon.png", "18px", "June (villager)#RV", "June's RV" },
	}
	local game = {
		--[[
		This part of the module is used in the villager section to determine which game to use to display the villager.
		--]]
		["PG"] = " PG.png",
		["DnMe+"] = " DnMe+.png",
		["WW"] = " WW.png",
		["CF"] = " CF.png",
		["NL"] = " NL Villager Icon.png",
		["HHD"] = " HHD Villager Icon.png",
		["aF"] = " aF Villager Icon.png",
		["PC"] = " PC Villager Icon.png",
		["NH"] = " NH Villager Icon.png"
	}
	local print = '<span style="font-size:.9em;">'
	
	-- Availability with a specific villager --
	if (frame.args['1'] == "Villager") then
		setDefault(game," NH Villager Icon.png")
		print = print .. '[[File:' .. frame.args['2'] .. game[frame.args['3']]
		if not isEmpty(frame.args['size']) then
			print = print .. '|' .. frame.args['size']
		else
			print = print .. '|22px'
		end
		print = print .. '|link=|alt=]]&nbsp;'
		if not isEmpty(frame.args['4']) then
			if (frame.args['4'] == "June" or frame.args['4'] == "Snooty" or frame.args['4']  == "Lulu") then
				print = print .. '[[' .. frame.args['4'] .. ' (villager)|' .. frame.args['2'] .. ']]'
			else
				print = print .. '[[' .. frame.args['4'] .. '|' .. frame.args['2'] .. ']]'
			end
		else
			print = print .. '[[' .. frame.args['2'] .. ']]'
		end
	else
		-- Availability in terms of RVs --
		if (frame.args['1'] == "RV") then
			if not isEmpty(dataRV[frame.args['2']]) and not isEmpty(dataRV[frame.args['2']][1]) then
				print = print .. '[[File:'.. dataRV[frame.args['2']][1]
			else
				print = print .. '[[File:' .. frame.args['2'] .. ' NL Villager Icon.png'
			end
			if not isEmpty(frame.args['size']) then
				print = print .. '|' .. frame.args['size']
			else
				if not isEmpty(dataRV[frame.args['2']]) and not isEmpty(dataRV[frame.args['2']][2]) then
					print = print .. '|' .. dataRV[frame.args['2']][2]
				else
					print = print .. '|22px'
				end
			end
			print = print .. '|link=|alt=]]&nbsp;'
			if not isEmpty(dataRV[frame.args['2']]) and not isEmpty(dataRV[frame.args['2']][3]) then
		    	print = print .. '[[' .. dataRV[frame.args['2']][3]
		    	if not isEmpty(frame.args['text']) then
		    		print = print .. '|' .. frame.args['text'] .. ']]'
		    	else
		    		print = print .. '|' .. dataRV[frame.args['2']][4] .. ']]'
		    	end
		    else
		    	print = print .. '[[' .. frame.args['2'] .. '#RV'
		    	if not isEmpty(frame.args['text']) then
		    		print = print .. '|' .. frame.args['text'] .. ']]'
		    	else
		    		print = print .. '|' .. frame.args['2'] .. '\'s RV]]'
		    	end
			end
		else
			-- Main availability function --
			if not isEmpty(data[frame.args['1']]) and not isEmpty(data[frame.args['1']][1]) then
		    	print = print .. '[[File:'.. data[frame.args['1']][1]
				if not isEmpty(frame.args['size']) then
					print = print .. '|' .. frame.args['size']
				else
					print = print .. '|' .. data[frame.args['1']][2]
				end
				print = print .. '|link=|alt=]]&nbsp;'
			end
			if not isEmpty(data[frame.args['1']]) and not isEmpty(data[frame.args['1']][3]) then
		    	print = print .. '[[' .. data[frame.args['1']][3]
		    	if (data[frame.args['1']][3] == data[frame.args['1']][4]) then
		    		print = print .. ']]'
		    	else
		    		if not isEmpty(frame.args['text']) then
			    		print = print .. '|' .. frame.args['text'] .. ']]'
			    	else
			    		print = print .. '|' .. data[frame.args['1']][4] .. ']]'
		    		end
		    	end
		    else
		    	if not isEmpty(data[frame.args['1']]) and not isEmpty(data[frame.args['1']][5]) then
		    		if not isEmpty(frame.args['text']) then
			    		print = print .. frame.args['text']
			    	else
		    			print = print .. data[frame.args['1']][5]
		    		end
		    	else
		    		if not isEmpty(frame.args['text']) then
			    		print = print .. frame.args['text']
			    	else
		    			print = print .. frame.args['1']
		    		end
		    	end
			end
		end
	end
	-- Note function --
	if not isEmpty(frame.args['note']) then
		print = print .. '<small> (' .. frame.args['note'] .. ')</small>'
	end
	print = print .. '</span>'
	-- Line break function --
	if not isEmpty(frame.args['nb']) then
		print = print .. ''
	else
		print = print .. '<br/>'
	end
	return print
end
return p