2021-12-22 00:09:12 +01:00
|
|
|
minetest.register_item(":",
|
|
|
|
{
|
|
|
|
type = "none",
|
|
|
|
wield_image = "hand.png",
|
|
|
|
wield_scale = {x=1,y=1,z=3.5},
|
|
|
|
tool_capabilities =
|
|
|
|
{
|
|
|
|
max_drop_level = 0,
|
|
|
|
full_punch_interval = 0.4,
|
|
|
|
|
|
|
|
groupcaps =
|
|
|
|
{
|
|
|
|
oddly_breakable_by_hand = {times={[1]=3.50,[2]=2.00,[3]=0.70}, uses=0},
|
2021-12-22 05:43:14 +01:00
|
|
|
cracky = {times={[1]=12.00}, uses=0, maxlevel=1},
|
2021-12-22 00:09:12 +01:00
|
|
|
crumbly = {times={[2]=4.50, [3]=1.80}, uses=0, maxlevel=1},
|
|
|
|
},
|
2021-12-22 02:55:57 +01:00
|
|
|
damage_groups = {cracky = 1},
|
2021-12-22 00:09:12 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-12-22 03:18:26 +01:00
|
|
|
minetest.register_item("main:drill",
|
2021-12-22 00:09:12 +01:00
|
|
|
{
|
|
|
|
type = "none",
|
2021-12-22 03:18:26 +01:00
|
|
|
wield_image = "main_drill.png",
|
|
|
|
inventory_image = "main_drill.png",
|
2021-12-22 00:09:12 +01:00
|
|
|
tool_capabilities =
|
|
|
|
{
|
|
|
|
max_drop_level = 1,
|
|
|
|
full_punch_interval = 0.8,
|
|
|
|
|
|
|
|
groupcaps =
|
|
|
|
{
|
2021-12-22 03:18:26 +01:00
|
|
|
cracky = {times={[1]=2, [2]=2.00,[3]=1.50}, uses=0, maxlevel=1},
|
2021-12-22 00:09:12 +01:00
|
|
|
},
|
2021-12-22 03:18:26 +01:00
|
|
|
damage_groups = {cracky = 8},
|
2021-12-22 00:09:12 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-12-22 03:18:26 +01:00
|
|
|
minetest.register_item("main:pickaxe_tier2",
|
2021-12-22 00:09:12 +01:00
|
|
|
{
|
|
|
|
type = "none",
|
2021-12-22 03:18:26 +01:00
|
|
|
wield_image = "main_pickaxe_tier2.png",
|
|
|
|
inventory_image = "main_pickaxe_tier2.png",
|
2021-12-22 00:09:12 +01:00
|
|
|
tool_capabilities =
|
|
|
|
{
|
|
|
|
max_drop_level = 1,
|
|
|
|
full_punch_interval = 0.8,
|
|
|
|
|
|
|
|
groupcaps =
|
|
|
|
{
|
2021-12-22 03:18:26 +01:00
|
|
|
cracky = {times={[1]=4, [2]=2.00,[3]=1.50}, uses=0, maxlevel=1},
|
2021-12-22 00:09:12 +01:00
|
|
|
},
|
2021-12-22 03:18:26 +01:00
|
|
|
damage_groups = {cracky = 8},
|
2021-12-22 00:09:12 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-12-22 03:18:26 +01:00
|
|
|
minetest.register_item("main:pickaxe_steel",
|
|
|
|
{
|
|
|
|
type = "none",
|
|
|
|
wield_image = "main_pickaxe_steel.png",
|
|
|
|
inventory_image = "main_pickaxe_steel.png",
|
|
|
|
tool_capabilities =
|
|
|
|
{
|
|
|
|
max_drop_level = 1,
|
|
|
|
full_punch_interval = 0.8,
|
|
|
|
|
|
|
|
groupcaps =
|
|
|
|
{
|
|
|
|
cracky = {times={[1]=6, [2]=2.00,[3]=1.50}, uses=0, maxlevel=1},
|
|
|
|
},
|
|
|
|
damage_groups = {cracky = 8},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_item("main:pickaxe_stone",
|
2021-12-22 00:09:12 +01:00
|
|
|
{
|
|
|
|
type = "none",
|
|
|
|
wield_image = "main_pickaxe_stone.png",
|
2021-12-22 03:18:26 +01:00
|
|
|
inventory_image = "main_pickaxe_stone.png",
|
2021-12-22 00:09:12 +01:00
|
|
|
tool_capabilities =
|
|
|
|
{
|
|
|
|
max_drop_level = 1,
|
2021-12-22 03:18:26 +01:00
|
|
|
full_punch_interval = 0.8,
|
2021-12-22 00:09:12 +01:00
|
|
|
|
|
|
|
groupcaps =
|
|
|
|
{
|
2021-12-22 03:18:26 +01:00
|
|
|
cracky = {times={[1]=8, [2]=2.00,[3]=1.50}, uses=0, maxlevel=1},
|
2021-12-22 00:09:12 +01:00
|
|
|
},
|
2021-12-22 03:18:26 +01:00
|
|
|
damage_groups = {cracky = 5},
|
2021-12-22 00:09:12 +01:00
|
|
|
}
|
|
|
|
})
|
2021-12-22 03:18:26 +01:00
|
|
|
|
2021-12-22 05:43:14 +01:00
|
|
|
minetest.register_item("main:hatchet",
|
|
|
|
{
|
|
|
|
type = "none",
|
|
|
|
wield_image = "main_hatchet.png",
|
|
|
|
inventory_image = "main_hatchet.png",
|
|
|
|
tool_capabilities =
|
|
|
|
{
|
|
|
|
max_drop_level = 1,
|
|
|
|
full_punch_interval = 0.8,
|
|
|
|
|
|
|
|
groupcaps =
|
|
|
|
{
|
|
|
|
cracky = {times={[1]=10, [2]=2.00,[3]=1.50}, uses=0, maxlevel=1},
|
|
|
|
},
|
|
|
|
damage_groups = {cracky = 5},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
|