Module:Weapon Calculation: Difference between revisions
From HorizonXI Wiki
Starfox9507 (talk | contribs) No edit summary |
Starfox9507 (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
function p.test (frame) | function p.test (frame) | ||
local damage = tonumber(frame.args.dmg) | |||
local delay = tonumber(frame.args.delay) | |||
local changes = frame.args.changes or nil | |||
return frame | return frame | ||
end | end | ||
return p | return p | ||
Revision as of 10:40, 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 frame
end
return p
