From bb3165a013d344d64e462ede8e7683ba2f174c6a Mon Sep 17 00:00:00 2001 From: Ombridride Date: Tue, 23 Dec 2014 22:19:29 +0100 Subject: [PATCH] Sword unification in "moreore mod" silver + mithril --- minetestforfun_game/mods/default/tools.lua | 4 ++-- mods/moreores/init.lua | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/minetestforfun_game/mods/default/tools.lua b/minetestforfun_game/mods/default/tools.lua index 5891c62b..d45bf86c 100644 --- a/minetestforfun_game/mods/default/tools.lua +++ b/minetestforfun_game/mods/default/tools.lua @@ -351,7 +351,7 @@ minetest.register_tool("default:sword_wood", { description = "Wooden Sword", inventory_image = "default_tool_woodsword.png", tool_capabilities = { - full_punch_interval = 1, + full_punch_interval = 1.0, max_drop_level = 0, groupcaps = { snappy = {times = {[2] = 1.4, [3] = 0.2}, uses = 20, maxlevel = 1}, @@ -363,7 +363,7 @@ minetest.register_tool("default:sword_stone", { description = "Stone Sword", inventory_image = "default_tool_stonesword.png", tool_capabilities = { - full_punch_interval = 1, + full_punch_interval = 1.0, max_drop_level = 0, groupcaps = { snappy = {times = {[2] = 1.2, [3] = 0.175}, uses = 25, maxlevel = 1}, diff --git a/mods/moreores/init.lua b/mods/moreores/init.lua index e4b1f811..a3d4301f 100755 --- a/mods/moreores/init.lua +++ b/mods/moreores/init.lua @@ -250,11 +250,11 @@ local oredefs = { sword = { fleshy = {times = {[2] = 0.70, [3] = 0.30}, uses = 100, maxlevel= 1}, snappy = {times = {[2] = 0.70, [3] = 0.30}, uses = 100, maxlevel= 1}, - choppy = {times = {[3] = 0.80}, uses = 100, maxlevel= 0} + choppy = {times = {[3] = 0.80}, uses = 40, maxlevel= 0} } }, - full_punch_interval = 1.0, - damage_groups = {fleshy = 6}, + full_punch_interval = 0.8, + damage_groups = {fleshy = 5}, }, tin = { desc = "Tin", @@ -296,7 +296,7 @@ local oredefs = { choppy = {times = {[3] = 0.65}, uses = 200, maxlevel= 0} } }, - full_punch_interval = 0.45, + full_punch_interval = 0.5, damage_groups = {fleshy = 9}, } }