Add ferns and enchanted axe

This commit is contained in:
IamPyu
2024-10-19 14:57:29 -06:00
parent 6df3b2ad20
commit b53ac766f1
11 changed files with 46 additions and 18 deletions

View File

@@ -71,9 +71,9 @@ PyuTest.make_tool("pyutest_tools:wooden_axe", "Wooden Axe", {}, "pyutest-wooden-
groupcaps = {
choppy = {
times = {
[PyuTest.BLOCK_FAST] = 1.1,
[PyuTest.BLOCK_NORMAL] = 1.6,
[PyuTest.BLOCK_SLOW] = 2.2
[PyuTest.BLOCK_FAST] = 1.2,
[PyuTest.BLOCK_NORMAL] = 1.4,
[PyuTest.BLOCK_SLOW] = 1.6
}
}
}
@@ -88,9 +88,9 @@ PyuTest.make_tool("pyutest_tools:stone_axe", "Stone Axe", {}, "pyutest-stone-axe
groupcaps = {
choppy = {
times = {
[PyuTest.BLOCK_FAST] = 0.98,
[PyuTest.BLOCK_NORMAL] = 1.23,
[PyuTest.BLOCK_SLOW] = 2
[PyuTest.BLOCK_FAST] = 1,
[PyuTest.BLOCK_NORMAL] = 1.2,
[PyuTest.BLOCK_SLOW] = 1.4
}
}
}
@@ -105,9 +105,9 @@ PyuTest.make_tool("pyutest_tools:iron_axe", "Iron Axe", {}, "pyutest-iron-axe.pn
groupcaps = {
choppy = {
times = {
[PyuTest.BLOCK_FAST] = 0.4,
[PyuTest.BLOCK_NORMAL] = 0.6,
[PyuTest.BLOCK_SLOW] = 1.8
[PyuTest.BLOCK_FAST] = 0.8,
[PyuTest.BLOCK_NORMAL] = 1,
[PyuTest.BLOCK_SLOW] = 1.2
}
}
}
@@ -122,9 +122,9 @@ PyuTest.make_tool("pyutest_tools:diamond_axe", "Diamond Axe", {}, "pyutest-diamo
groupcaps = {
choppy = {
times = {
[PyuTest.BLOCK_FAST] = 0.3,
[PyuTest.BLOCK_NORMAL] = 0.4,
[PyuTest.BLOCK_SLOW] = 1.4
[PyuTest.BLOCK_FAST] = 0.6,
[PyuTest.BLOCK_NORMAL] = 0.8,
[PyuTest.BLOCK_SLOW] = 1
}
}
}