Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Main public logs

More actions

Combined display of all available logs of Fightorder. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 20:17, 11 November 2025 Qrow talk contribs created page Module:UnitData (Created page with "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 "<n...")