Module:Weapon Calculation: Difference between revisions
From HorizonXI Wiki
Starfox9507 (talk | contribs) No edit summary |
Starfox9507 (talk | contribs) No edit summary |
||
| Line 5: | Line 5: | ||
local delay = tonumber(frame.args.delay) | local delay = tonumber(frame.args.delay) | ||
local changes = frame.args.changes or nil | local changes = frame.args.changes or nil | ||
return | return damage,delay,changes | ||
end | end | ||
return p | return p | ||
Revision as of 10:41, 2 July 2025
Documentation for this module may be created at Module:Weapon Calculation/doc
local p = {}
function p.test (frame)
local damage = tonumber(frame.args.dmg)
local delay = tonumber(frame.args.delay)
local changes = frame.args.changes or nil
return damage,delay,changes
end
return p
