Merge branch 'tools' into 'master'

tools: make obs slightly better than dia (but still worse than nether and mithril)

See merge request Illuna-Minetest/aestivalserver-mods!5
master
Milan 2021-08-08 20:02:10 +00:00
commit 6531d4cfd5
1 changed files with 12 additions and 12 deletions

View File

@ -1,44 +1,44 @@
minetest.override_item("obsidianstuff:sword", {
tool_capabilities = {
full_punch_interval = 0.7,
full_punch_interval = 0.6,
max_drop_level=1,
groupcaps={
snappy={times={[1]=1.90, [2]=0.90, [3]=0.30}, uses=40, maxlevel=3},
snappy={times={[1]=1.80, [2]=0.80, [3]=0.25}, uses=50, maxlevel=3},
},
damage_groups = {fleshy=8},
damage_groups = {fleshy=9},
},
})
minetest.override_item("obsidianstuff:pick", {
tool_capabilities = {
full_punch_interval = 0.9,
full_punch_interval = 0.8,
max_drop_level=3,
groupcaps={
cracky = {times = {[1] = 2.25, [2] = 0.70, [3] = 0.55}, uses = 30, maxlevel= 3}
cracky = {times = {[1] = 1.9, [2] = 0.9, [3] = 0.45}, uses = 40, maxlevel= 3}
},
damage_groups = {fleshy=5},
damage_groups = {fleshy=6},
},
})
minetest.override_item("obsidianstuff:shovel", {
tool_capabilities = {
full_punch_interval = 1.0,
full_punch_interval = 0.9,
max_drop_level=1,
groupcaps={
crumbly = {times={[1]=1.10, [2]=0.50, [3]=0.30}, uses=30, maxlevel=3},
crumbly = {times={[1]=1.0, [2]=0.4, [3]=0.25}, uses=40, maxlevel=3},
},
damage_groups = {fleshy=4},
damage_groups = {fleshy=5},
},
})
minetest.override_item("obsidianstuff:axe", {
tool_capabilities = {
full_punch_interval = 0.9,
full_punch_interval = 0.8,
max_drop_level=1,
groupcaps={
choppy={times={[1]=2.10, [2]=0.90, [3]=0.50}, uses=30, maxlevel=2},
choppy={times={[1]=2.0, [2]=0.80, [3]=0.45}, uses=40, maxlevel=3},
},
damage_groups = {fleshy=7},
damage_groups = {fleshy=8},
},
})