Difference between revisions of "Module:Collection"

From Nookipedia, the Animal Crossing wiki
(adding Flower Set to data set)
(using the getArgs function from Module:Arguments)
Line 1: Line 1:
 
local p = {}
 
local p = {}
 
+
local getArgs = require('Module:Arguments').getArgs
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)
 
function p.main(frame)

Revision as of 14:20, November 9, 2022

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

local p = {}
local getArgs = require('Module:Arguments').getArgs

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