Documentation for this module may be created at Module:Move7/doc
local p = {};
local cargo = mw.ext.cargo
local tables = 'MoveDataCargoTest'
p.fields = 'id,input,target,damage,startup'
p.queryOverride = function(frame)
local args = frame:getParent().args
local id = args['id']
if id == nil then
return "Error: no id"
end
local result = cargo.query(tables, p.fields, { where = "id = '" .. id .. "'" })[1]
for k, v in pairs(result) do
local override
if k == 'id' then
override = args['overrideId']
else
override = args[k]
end
if override ~= nil then
result[k] = override
end
end
local templateParams = ''
for k, v in pairs(result) do
templateParams = templateParams .. '|' .. k .. '=' .. v
end
return templateParams
end
return p