This commit is contained in:
Kacper Kostka
2023-02-06 05:22:35 +01:00
parent f62082d9c6
commit 5233a3aa6f
3 changed files with 62 additions and 16 deletions

View File

@@ -12,7 +12,7 @@ minetest.register_item(":", { -- Hand
cracky = {times = {[1] = 1.0, [2] = 0.7, [3] = 0.5}, uses = 20, maxlevel = 1},
flower = {times={[1] = 0, [2] = 0, [3] = 0}, uses = 10, maxlevel=3},
},
damage_groups = {fleshy = 1, snappy = 1, cracky=1},
damage_groups = {fleshy = 0.5, snappy = 1, cracky=1},
}
})
@@ -120,7 +120,7 @@ minetest.register_tool("amogus_items:lightsaber_blue", {
groupcaps={
snappy={times={[1]=0.1, [2]=0.1, [3]=0.1}, uses=0, maxlevel=3},
},
damage_groups = {fleshy=10},
damage_groups = {fleshy=1.01},
},
sound = {breaks = "amogus_sound"},
})
@@ -134,7 +134,7 @@ minetest.register_tool("amogus_items:lightsaber_red", {
groupcaps={
snappy={times={[1]=0.1, [2]=0.1, [3]=0.1}, uses=0, maxlevel=3},
},
damage_groups = {fleshy=10},
damage_groups = {fleshy=1.01},
},
sound = {breaks = "amogus_sound"},
@@ -149,7 +149,7 @@ minetest.register_tool("amogus_items:lightsaber_green", {
groupcaps={
snappy={times={[1]=0.1, [2]=0.1, [3]=0.1}, uses=0, maxlevel=3},
},
damage_groups = {fleshy=10},
damage_groups = {fleshy=1.01},
},
sound = {breaks = "amogus_sound"},
})
@@ -234,7 +234,7 @@ minetest.register_tool("amogus_items:stonepickaxe", {
groupcaps={
stone={times={[1]=2.5, [2]=1.0, [3]=0.50}, uses=30, maxlevel=1},
},
damage_groups = {fleshy=2},
damage_groups = {fleshy=1.0},
},
sound = {breaks = "default_tool_breaks"},
})
@@ -247,7 +247,7 @@ minetest.register_tool("amogus_items:goldenpickaxe", {
groupcaps={
stone={times={[1]=1.3, [2]=0.60, [3]=0.40}, uses=30, maxlevel=1},
},
damage_groups = {fleshy=2},
damage_groups = {fleshy=1.0},
},
sound = {breaks = "default_tool_breaks"},
})
@@ -260,7 +260,7 @@ minetest.register_tool("amogus_items:sussiumpickaxe", {
groupcaps={
stone={times={[0.5]=2.0,[1]=0.85, [2]=0.40, [3]=0.20}, uses=30, maxlevel=1},
},
damage_groups = {fleshy=2},
damage_groups = {fleshy=1.0},
},
sound = {breaks = "default_tool_breaks"},
})
@@ -273,7 +273,7 @@ minetest.register_tool("amogus_items:goldenaxe", {
groupcaps={
choppy={times={[1]=2.50, [2]=1.40, [3]=0.45}, uses=30, maxlevel=2},
},
damage_groups = {fleshy=4},
damage_groups = {fleshy=1.0},
},
groups = {flammable = 2}
})
@@ -286,7 +286,7 @@ minetest.register_tool("amogus_items:stoneaxe", {
groupcaps={
choppy={times={[1]=2.50, [2]=1.40, [3]=0.80}, uses=30, maxlevel=2},
},
damage_groups = {fleshy=4},
damage_groups = {fleshy=1.0},
},
groups = {flammable = 2}
})
@@ -299,7 +299,7 @@ minetest.register_tool("amogus_items:sussiumaxe", {
groupcaps={
choppy={times={[1]=0.90, [2]=0.80, [3]=0.35}, uses=30, maxlevel=2},
},
damage_groups = {fleshy=4},
damage_groups = {fleshy=1.0},
},
groups = {flammable = 2}
@@ -314,7 +314,7 @@ minetest.register_tool("amogus_items:stoneshovel", {
groupcaps={
crumbly={times={[1]=1.5, [2]=1.0, [3]=0.9}, uses=30, maxlevel=2},
},
damage_groups = {fleshy=4},
damage_groups = {fleshy=1.0},
},
groups = {flammable = 2}
})
@@ -329,7 +329,7 @@ minetest.register_tool("amogus_items:goldenshovel", {
groupcaps={
crumbly={times={[1]=1.0, [2]=0.8, [3]=0.6}, uses=30, maxlevel=2},
},
damage_groups = {fleshy=4},
-- damage_groups = {fleshy=1.0},
},
groups = {flammable = 2}
})
@@ -342,7 +342,7 @@ minetest.register_tool("amogus_items:sussiumshovel", {
groupcaps={
crumbly={times={[1]=0.8, [2]=0.6, [3]=0.35}, uses=30, maxlevel=2},
},
damage_groups = {fleshy=4},
--damage_groups = {fleshy=1.0},
},
groups = {flammable = 2}
})
@@ -359,7 +359,7 @@ minetest.register_tool("amogus_items:obsussian_hammer", {
stone={times={[0.5]=1.4,[1]=0.90, [2]=0.40, [3]=0.06}, uses=30, maxlevel=1},
crumbly={times={[1]=0.90, [2]=0.40, [3]=0.06}, uses=30, maxlevel=2},
},
damage_groups = {fleshy=4},
damage_groups = {fleshy=1.0},
},
groups = {flammable = 2}