2017-01-23 23:46:06 +01:00
|
|
|
--Groups = aetherstone, aetherdirt, aethertemple
|
2017-01-23 23:11:30 +01:00
|
|
|
|
|
|
|
--Skyroot
|
|
|
|
minetest.register_tool("aether2:pick_skyroot", {
|
|
|
|
description = "Skyroot Pickaxe",
|
|
|
|
inventory_image = "skyroot_pickaxe.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aetherstone = {times={[1]=1.25}, uses=60}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_tool("aether2:axe_skyroot", {
|
|
|
|
description = "Skyroot Axe",
|
|
|
|
inventory_image = "skyroot_axe.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aethertree = {times={[1]=1.25}, uses=60}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_tool("aether2:shovel_skyroot", {
|
|
|
|
description = "Skyroot Shovel",
|
|
|
|
inventory_image = "skyroot_shovel.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aetherdirt = {times={[1]=1.25}, uses=60}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--Hollystone
|
2017-01-23 22:44:37 +01:00
|
|
|
minetest.register_tool("aether2:pick_hollystone", {
|
2017-01-23 20:20:03 +01:00
|
|
|
description = "Hollystone Pickaxe",
|
2017-01-23 22:44:37 +01:00
|
|
|
inventory_image = "holystone_pickaxe.png",
|
2017-01-23 20:20:03 +01:00
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aetherstone = {times={[1]=1, [2]=1.5, [3]=1.75}, uses=132}
|
2017-01-23 22:44:37 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_tool("aether2:axe_hollystone", {
|
|
|
|
description = "Hollystone Axe",
|
|
|
|
inventory_image = "holystone_axe.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aethertree = {times={[1]=1, [2]=1.5, [3]=1.75}, uses=132}
|
2017-01-23 20:20:03 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
2017-01-23 23:11:30 +01:00
|
|
|
|
|
|
|
minetest.register_tool("aether2:shovel_hollystone", {
|
|
|
|
description = "Hollystone Shovel",
|
|
|
|
inventory_image = "holystone_shovel.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aetherdirt = {times={[1]=1, [2]=1.5, [3]=1.75}, uses=132}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--Zanite
|
|
|
|
minetest.register_tool("aether2:pick_zanite", {
|
|
|
|
description = "Zanite Pickaxe",
|
|
|
|
inventory_image = "zanite_pickaxe.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aetherstone = {times={[1]=.75, [2]=1, [3]=1.5}, uses=251}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_tool("aether2:axe_zanite", {
|
|
|
|
description = "Zanite Axe",
|
|
|
|
inventory_image = "zanite_axe.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aethertree = {times={[1]=.75, [2]=1, [3]=1.5}, uses=251}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_tool("aether2:shovel_zanite", {
|
|
|
|
description = "Zanite Shovel",
|
|
|
|
inventory_image = "zanite_shovel.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aetherdirt = {times={[1]=.75, [2]=1, [3]=1.5}, uses=251}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--Gravitite
|
|
|
|
minetest.register_tool("aether2:pick_gavitite", {
|
|
|
|
description = "Gravitite Pickaxe",
|
|
|
|
inventory_image = "gravitite_pickaxe.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aetherstone = {times={[1]=.25, [2]=.5, [3]=1}, uses=1562}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_tool("aether2:axe_gavitite", {
|
|
|
|
description = "Gravitite Axe",
|
|
|
|
inventory_image = "gravitite_axe.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aethertree = {times={[1]=.25, [2]=.5, [3]=1}, uses=1562}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_tool("aether2:shovel_gavitite", {
|
|
|
|
description = "Gravitite Shovel",
|
|
|
|
inventory_image = "gravitite_shovel.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aetherdirt = {times={[1]=.25, [2]=.5, [3]=1}, uses=1562}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--Valkyrie
|
|
|
|
minetest.register_tool("aether2:pick_valkyrie", {
|
|
|
|
description = "Valkyrie Pickaxe",
|
|
|
|
inventory_image = "valkyrie_pickaxe.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aetherstone = {times={[1]=.25, [2]=.5, [3]=1}, uses=1562}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_tool("aether2:axe_valkyrie", {
|
|
|
|
description = "Valkyrie Axe",
|
|
|
|
inventory_image = "valkyrie_axe.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aethertree = {times={[1]=.25, [2]=.5, [3]=1}, uses=1562}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_tool("aether2:shovel_valkyrie", {
|
|
|
|
description = "Valkyrie Shovel",
|
|
|
|
inventory_image = "valkyrie_shovel.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aetherdirt = {times={[1]=.25, [2]=.5, [3]=1}, uses=1562}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--Arkenium
|
|
|
|
minetest.register_tool("aether2:pick_arkenium", {
|
|
|
|
description = "Arkenium Pickaxe",
|
|
|
|
inventory_image = "arkenium_pickaxe.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
|
|
|
aetherstone = {times={[1]=.75, [2]=2.0, [3]=1.00}, uses=132}
|
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_tool("aether2:axe_arkenium", {
|
|
|
|
description = "Arkenium Axe",
|
|
|
|
inventory_image = "arkenium_axe.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aethertree = {times={[1]=.75, [2]=2.0, [3]=1.00}, uses=132}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_tool("aether2:shovel_arkenium", {
|
|
|
|
description = "Arkenium Shovel",
|
|
|
|
inventory_image = "arkenium_shovel.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.3,
|
|
|
|
max_drop_level =0,
|
|
|
|
groupcaps={
|
2017-01-23 23:46:06 +01:00
|
|
|
aetherdirt = {times={[1]=.75, [2]=2.0, [3]=1.00}, uses=132}
|
2017-01-23 23:11:30 +01:00
|
|
|
},
|
|
|
|
damage_groups = {fleshy=3},
|
|
|
|
}
|
|
|
|
})
|