Difference between revisions of "Module:Collection"

From Nookipedia, the Animal Crossing wiki
(adding more collections to sort)
(adding Flower Set to data set)
Line 34: Line 34:
 
["Cafe Set"] = {"Café Set"},
 
["Cafe Set"] = {"Café Set"},
 
["Hospital Set"] = {"Dr.'s Office Set"},
 
["Hospital Set"] = {"Dr.'s Office Set"},
 +
["Yellow Flower Set"] = {"Flower Set"},
 +
["White Flower Set"] = {"Flower Set"},
 +
["Red Flower Set"] = {"Flower Set"},
 +
["Iris Set"] = {"Flower Set"},
 +
["Daffodil Set"] = {"Flower Set"},
 +
["Tulip Set"] = {"Flower Set"},
 
["Froggy Set"] = {"Frog Set"},
 
["Froggy Set"] = {"Frog Set"},
 
["Writing Set"] = {"Study Set"},
 
["Writing Set"] = {"Study Set"},

Revision as of 19:13, September 23, 2022

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

local p = {}

local function getArgs(frame)
    local args = {}
    for key, value in pairs(frame:getParent().args) do
        args[key] = value
    end
    for key, value in pairs(frame.args) do
        args[key] = value
    end
    return args
end

function p.main(frame)
    local args       = getArgs(frame)
    local collection = args[1] or args.collection or ''
    return p.collectionFurniture(collection)
end

function p.collectionFurniture(collection)
	local function isEmpty(s)
		return s == nil or s == ''
	end
	local function tableEmpty(s)
		return next(s) == nil
	end
    local data = {
		["Asian Series"] = {"Exotic Series"},
		["Pavé Series"] = {"Festivale Series"},
		["Jingle Series"] = {"Festive Series"},
		["Mushroom Series"] = {"Mush Series"},
		["Minimalist Series"] = {"Simple Series"},
		["Teddy Bear Set"] = {"Bear Set"},
		["Cafe Set"] = {"Café Set"},
		["Hospital Set"] = {"Dr.'s Office Set"},
		["Yellow Flower Set"] = {"Flower Set"},
		["White Flower Set"] = {"Flower Set"},
		["Red Flower Set"] = {"Flower Set"},
		["Iris Set"] = {"Flower Set"},
		["Daffodil Set"] = {"Flower Set"},
		["Tulip Set"] = {"Flower Set"},
		["Froggy Set"] = {"Frog Set"},
		["Writing Set"] = {"Study Set"},
		["Homework Set"] = {"Study Set"},
		["Classroom Set"] = {"School Set"},
		["Japanese Set"] = {"Zen Set"},
		["Backyard Set"] = {"Zen Garden Set"},
		["Public Bath Theme"] = {"Spa Theme"},
		
	}
	local print = ''
	if not isEmpty(collection) then
		if not isEmpty(data[collection]) and not isEmpty(data[collection][1]) then
			print = print .. data[collection][1]
		else
			print = print .. collection
		end
	end
	return print
end

return p