Module:Damage display
From ALttP Speedrunning Wiki
Documentation for this module may be created at display/doc&action=edit&redlink=1 Module:Damage display/doc
local p = {} function p.main(frame) local args = frame:getParent().args local dmg = args[1] or 0 return p._main(dmg) end function p._main(d) return d end return p