Module:Items

From Nookipedia, the Animal Crossing wiki
Revision as of 04:25, July 6, 2020 by SuperHamster (talk | contribs) (Trying preprocess instead of expandTemplate)

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

local p = {}
function p.outputFurniture (frame)
    local game = frame.args[2]
    local data = mw.text.jsonDecode(frame.args[1])
    table.sort(data, function(k1, k2) return string.len(k1.name) < string.len(k2.name) end)
    local furnitureOutput = ""
    for k, v in ipairs(data) do
        furnitureOutput = furnitureOutput .. "{{HouseItem|item=" .. v['name'] .. "|count=" .. v['count'] .. "|img=" .. v['img'] .. "|note=" .. v['note'] .. "|game=" .. game .. "}}"
    end
    return frame:preprocess( furnitureOutput )
end
return p