Module:Weapon Calculation: Difference between revisions
From HorizonXI Wiki
Starfox9507 (talk | contribs) No edit summary |
Starfox9507 (talk | contribs) m (Starfox9507 moved page Module:Weapon Damage to Module:Weapon Calculation without leaving a redirect: module testing) |
Revision as of 10:43, 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
