Module:CreateModuleGridData

From The First Descendant Wiki
Revision as of 11:52, 3 June 2024 by Communos (talk | contribs)

currently does not work correctly


local p = {}

function p.getModuleData(frame)
    local data = mw.loadData("Module:Modules/data")
    local module_name = frame:getParent():getParent():getTitle()
    return data["Modules"][frame.args[1]][frame.args[1]]
end

return p