-- =================================================================== local neednode -- =================================================================== neednode = "lottores:mithrilsword" -- if ocutil.thing_missing (neednode) then minetest.register_tool (":" .. neednode, { description = "Mithril Sword" , inventory_image = "lottores_mithrilsword.png" , tool_capabilities = { full_punch_interval = 0.25 , max_drop_level = 1 , groupcaps = { snappy = { times = { [1]=0.70, [2]=0.80, [3]=0.25 } , uses = 80 , maxlevel = 3 , } , } , damage_groups = { fleshy=8 } , } }) end -- =================================================================== -- End of file.