View source for Module:UnitData

Jump to navigation Jump to search

You do not have permission to edit this page, for the following reason:

The action you have requested is limited to users in one of the groups: Users, emailconfirmed.


You can view and copy the source of this page.

local getArgs = require('Module:Arguments').getArgs
local unit = {}
local unitData = mw.loadData('Module:UnitData/data')
local function toPercent(amount)
-- amount is a string when ToSI is used before calling this function
if type(amount) == "string" then
amount = tonumber(amount)
end
return string.format("%.0f", amount * 100) .. "%"
end
function unit.getData(frame)
if not frame then return '' end
local unitDefName = frame.args.defname or frame.args[1] or "<no name specified>"
local ud = unitData[unitDefName]
if not (ud) then return 'unitdef ' .. unitDefName .. ' not found' end
local property = (frame.args.defname == nil) and frame.args[2] or frame.args[1]
local result = ud[property]
return result or ''
הההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
000
1:0
Debug console
* The module exports are available as the variable "p", including unsaved modifications. * Precede a line with "=" to evaluate it as an expression or use print(). Use mw.logObject() for tables. * Use mw.log() and mw.logObject() in module code to send messages to this console.

Return to Module:UnitData.


Debug data: