Module:Weapon Calculation

From HorizonXI Wiki
Revision as of 10:41, 2 July 2025 by Starfox9507 (talk | contribs)

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