Documentation for this module may be created at Module:Move7/doc
local p = {};
local cargo = mw.ext.cargo
local tables = 'MoveDataCargoTest'
p.fields = 'id,name,input,target,damage,reach,tracksLeft,tracksRight,startup,recv,tot,crush,block,hit,ch,notes'
p.queryOverride = function(frame)
local args = frame:getParent().args
local id = args[1]
if id == nil then
return "Error: no id"
end
id = id:gsub("%s+", "")
local result = cargo.query(tables, p.fields, { where = "id = '" .. id .. "'" })[1]
if result == nil then
return "Error: move with id = '" .. id .. "' not found"
end
for k, v in pairs(result) do
local override = args[k]
if override ~= nil then
result[k] = override
end
end
return frame:expandTemplate{ title = 'MoveDataCargoTest/Display', args = result }
end
return p