Mineclonia/mods/ITEMS/mcl_core/tools.lua

405 lines
10 KiB
Lua
Raw Normal View History

2015-06-29 17:55:56 +00:00
-- mods/default/tools.lua
--
-- Tool definition
--
2017-02-24 16:01:56 +00:00
--[[ Maximum drop level definitions:
- 0: Hand
- 1: Wood / Shears
- 2: Gold
- 3: Stone
- 4: Iron
- 5: Diamond
]]
-- Table for tool digging times, everything from 0 to 250
-- Minecraft digging times are always multiples of 0.05
local tooltimes = {}
for i=1,5000 do
local time
if i == 1 then
time = 0
else
time = i*0.05
end
table.insert(tooltimes, time)
end
-- TODO: Add legacy support for Minetest Game groups like crumbly, snappy, cracky, etc. for all tools
2015-06-29 17:55:56 +00:00
-- The hand
2017-01-17 00:36:45 +00:00
local groupcaps
if minetest.setting_getbool("creative_mode") then
groupcaps = {
creative_breakable = {times={[1]=0}, uses=0},
2017-01-17 00:36:45 +00:00
}
else
groupcaps = {
handy_dig = {times=tooltimes, uses=0},
2017-01-17 00:36:45 +00:00
}
end
2015-06-29 17:55:56 +00:00
minetest.register_item(":", {
type = "none",
wield_image = "wieldhand.png",
wield_scale = {x=1,y=1,z=2.5},
2017-02-22 19:10:06 +00:00
range = 3.975,
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
full_punch_interval = 0.25,
2015-06-29 17:55:56 +00:00
max_drop_level = 0,
2017-01-17 00:36:45 +00:00
groupcaps = groupcaps,
2015-06-29 17:55:56 +00:00
damage_groups = {fleshy=1},
}
})
-- Picks
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:pick_wood", {
2015-06-29 17:55:56 +00:00
description = "Wooden Pickaxe",
inventory_image = "default_tool_woodpick.png",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
-- 1/1.2
full_punch_interval = 0.83333333,
2017-02-24 16:01:56 +00:00
max_drop_level=1,
2015-06-29 17:55:56 +00:00
groupcaps={
pickaxey_dig_wood = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
damage_groups = {fleshy=2},
},
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:pick_stone", {
2015-06-29 17:55:56 +00:00
description = "Stone Pickaxe",
inventory_image = "default_tool_stonepick.png",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
-- 1/1.2
full_punch_interval = 0.83333333,
2017-02-24 16:01:56 +00:00
max_drop_level=3,
2015-06-29 17:55:56 +00:00
groupcaps={
pickaxey_dig_stone = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
damage_groups = {fleshy=3},
},
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-02-11 20:14:40 +00:00
minetest.register_tool("mcl_core:pick_iron", {
2017-01-04 04:29:55 +00:00
description = "Iron Pickaxe",
2015-06-29 17:55:56 +00:00
inventory_image = "default_tool_steelpick.png",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
-- 1/1.2
full_punch_interval = 0.83333333,
2017-02-24 16:01:56 +00:00
max_drop_level=4,
2015-06-29 17:55:56 +00:00
groupcaps={
pickaxey_dig_iron = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
damage_groups = {fleshy=4},
},
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:pick_gold", {
description = "Golden Pickaxe",
2015-06-29 17:55:56 +00:00
inventory_image = "default_tool_goldpick.png",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
-- 1/1.2
full_punch_interval = 0.83333333,
2017-02-24 16:01:56 +00:00
max_drop_level=2,
2015-06-29 17:55:56 +00:00
groupcaps={
pickaxey_dig_gold = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
2017-01-16 23:37:15 +00:00
damage_groups = {fleshy=2},
2015-06-29 17:55:56 +00:00
},
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:pick_diamond", {
2015-06-29 17:55:56 +00:00
description = "Diamond Pickaxe",
inventory_image = "default_tool_diamondpick.png",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
-- 1/1.2
full_punch_interval = 0.83333333,
2017-02-24 16:01:56 +00:00
max_drop_level=5,
2015-06-29 17:55:56 +00:00
groupcaps={
pickaxey_dig_diamond = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
damage_groups = {fleshy=5},
},
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-02-06 18:25:15 +00:00
local make_grass_path = function(itemstack, placer, pointed_thing)
if minetest.get_node(pointed_thing.under).name == "mcl_core:dirt_with_grass" and pointed_thing.above.y == pointed_thing.under.y then
local above = table.copy(pointed_thing.under)
above.y = above.y + 1
if minetest.get_node(above).name == "air" then
if not minetest.setting_getbool("creative_mode") then
-- Add wear, as if digging a level 0 crumbly node
local def = minetest.registered_items[itemstack:get_name()]
local base_uses = def.tool_capabilities.groupcaps.crumbly.uses
local maxlevel = def.tool_capabilities.groupcaps.crumbly.maxlevel
local uses = base_uses * math.pow(3, maxlevel)
local wear = math.ceil(65535 / uses)
itemstack:add_wear(wear)
end
2017-02-06 18:29:11 +00:00
minetest.sound_play({name="default_grass_footstep", gain=1}, {pos = above})
2017-02-06 18:25:15 +00:00
minetest.swap_node(pointed_thing.under, {name="mcl_core:grass_path"})
end
end
return itemstack
end
2015-06-29 17:55:56 +00:00
-- Shovels
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:shovel_wood", {
2015-06-29 17:55:56 +00:00
description = "Wooden Shovel",
inventory_image = "default_tool_woodshovel.png",
wield_image = "default_tool_woodshovel.png^[transformR90",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
full_punch_interval = 1,
2017-02-24 16:01:56 +00:00
max_drop_level=1,
2015-06-29 17:55:56 +00:00
groupcaps={
shovely_dig_wood = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
damage_groups = {fleshy=2},
},
2017-02-06 18:25:15 +00:00
on_place = make_grass_path,
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:shovel_stone", {
2015-06-29 17:55:56 +00:00
description = "Stone Shovel",
inventory_image = "default_tool_stoneshovel.png",
wield_image = "default_tool_stoneshovel.png^[transformR90",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
full_punch_interval = 1,
2017-02-24 16:01:56 +00:00
max_drop_level=3,
2015-06-29 17:55:56 +00:00
groupcaps={
shovely_dig_stone = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
2017-01-16 23:37:15 +00:00
damage_groups = {fleshy=3},
2015-06-29 17:55:56 +00:00
},
2017-02-06 18:25:15 +00:00
on_place = make_grass_path,
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-02-11 20:14:40 +00:00
minetest.register_tool("mcl_core:shovel_iron", {
2017-01-04 04:29:55 +00:00
description = "Iron Shovel",
2015-06-29 17:55:56 +00:00
inventory_image = "default_tool_steelshovel.png",
wield_image = "default_tool_steelshovel.png^[transformR90",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
full_punch_interval = 1,
2017-02-24 16:01:56 +00:00
max_drop_level=4,
2015-06-29 17:55:56 +00:00
groupcaps={
shovely_dig_iron= {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
2017-01-16 23:37:15 +00:00
damage_groups = {fleshy=4},
2015-06-29 17:55:56 +00:00
},
2017-02-06 18:25:15 +00:00
on_place = make_grass_path,
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:shovel_gold", {
description = "Golden Shovel",
2015-06-29 17:55:56 +00:00
inventory_image = "default_tool_goldshovel.png",
wield_image = "default_tool_goldshovel.png^[transformR90",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
full_punch_interval = 1,
2017-02-24 16:01:56 +00:00
max_drop_level=2,
2015-06-29 17:55:56 +00:00
groupcaps={
shovely_dig_gold = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
damage_groups = {fleshy=2},
},
2017-02-06 18:25:15 +00:00
on_place = make_grass_path,
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:shovel_diamond", {
2015-06-29 17:55:56 +00:00
description = "Diamond Shovel",
inventory_image = "default_tool_diamondshovel.png",
wield_image = "default_tool_diamondshovel.png^[transformR90",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
full_punch_interval = 1,
2017-02-24 16:01:56 +00:00
max_drop_level=5,
2015-06-29 17:55:56 +00:00
groupcaps={
shovely_dig_diamond = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
2017-01-16 23:37:15 +00:00
damage_groups = {fleshy=5},
2015-06-29 17:55:56 +00:00
},
2017-02-06 18:25:15 +00:00
on_place = make_grass_path,
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
-- Axes
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:axe_wood", {
2015-06-29 17:55:56 +00:00
description = "Wooden Axe",
inventory_image = "default_tool_woodaxe.png",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
full_punch_interval = 1.25,
2017-02-24 16:01:56 +00:00
max_drop_level=1,
2015-06-29 17:55:56 +00:00
groupcaps={
axey_dig_wood = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
2017-01-16 23:37:15 +00:00
damage_groups = {fleshy=7},
2015-06-29 17:55:56 +00:00
},
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:axe_stone", {
2015-06-29 17:55:56 +00:00
description = "Stone Axe",
inventory_image = "default_tool_stoneaxe.png",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
full_punch_interval = 1.25,
2017-02-24 16:01:56 +00:00
max_drop_level=3,
2015-06-29 17:55:56 +00:00
groupcaps={
axey_dig_stone = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
2017-01-16 23:37:15 +00:00
damage_groups = {fleshy=9},
2015-06-29 17:55:56 +00:00
},
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-02-11 20:14:40 +00:00
minetest.register_tool("mcl_core:axe_iron", {
2017-01-04 04:29:55 +00:00
description = "Iron Axe",
2015-06-29 17:55:56 +00:00
inventory_image = "default_tool_steelaxe.png",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
-- 1/0.9
full_punch_interval = 1.11111111,
2017-02-24 16:01:56 +00:00
max_drop_level=4,
2015-06-29 17:55:56 +00:00
groupcaps={
axey_dig_iron = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
2017-01-16 23:37:15 +00:00
damage_groups = {fleshy=9},
2015-06-29 17:55:56 +00:00
},
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:axe_gold", {
description = "Golden Axe",
2015-06-29 17:55:56 +00:00
inventory_image = "default_tool_goldaxe.png",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
full_punch_interval = 1.0,
2017-02-24 16:01:56 +00:00
max_drop_level=2,
2015-06-29 17:55:56 +00:00
groupcaps={
axey_dig_gold = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
2017-01-16 23:37:15 +00:00
damage_groups = {fleshy=7},
2015-06-29 17:55:56 +00:00
},
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:axe_diamond", {
2015-06-29 17:55:56 +00:00
description = "Diamond Axe",
inventory_image = "default_tool_diamondaxe.png",
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-16 23:37:15 +00:00
full_punch_interval = 1.0,
2017-02-24 16:01:56 +00:00
max_drop_level=5,
2015-06-29 17:55:56 +00:00
groupcaps={
axey_dig_diamond = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
2017-01-16 23:37:15 +00:00
damage_groups = {fleshy=9},
2015-06-29 17:55:56 +00:00
},
2017-02-19 18:59:18 +00:00
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
-- Swords
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:sword_wood", {
2015-06-29 17:55:56 +00:00
description = "Wooden Sword",
inventory_image = "default_tool_woodsword.png",
groups = { weapon=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-04 11:03:04 +00:00
full_punch_interval = 0.625,
2017-02-24 16:01:56 +00:00
max_drop_level=1,
2015-06-29 17:55:56 +00:00
groupcaps={
swordy_dig = {times=tooltimes, uses=0},
swordy_cobweb_dig = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
2017-01-04 11:03:04 +00:00
damage_groups = {fleshy=4},
2017-02-19 18:59:18 +00:00
},
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:sword_stone", {
2015-06-29 17:55:56 +00:00
description = "Stone Sword",
inventory_image = "default_tool_stonesword.png",
groups = { weapon=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-04 11:03:04 +00:00
full_punch_interval = 0.625,
2017-02-24 16:01:56 +00:00
max_drop_level=3,
2015-06-29 17:55:56 +00:00
groupcaps={
swordy_dig = {times=tooltimes, uses=0},
swordy_cobweb_dig = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
2017-01-04 11:03:04 +00:00
damage_groups = {fleshy=5},
2017-02-19 18:59:18 +00:00
},
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-02-11 20:14:40 +00:00
minetest.register_tool("mcl_core:sword_iron", {
2017-01-04 04:29:55 +00:00
description = "Iron Sword",
2015-06-29 17:55:56 +00:00
inventory_image = "default_tool_steelsword.png",
groups = { weapon=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-04 11:03:04 +00:00
full_punch_interval = 0.625,
2017-02-24 16:01:56 +00:00
max_drop_level=4,
2015-06-29 17:55:56 +00:00
groupcaps={
swordy_dig = {times=tooltimes, uses=0},
swordy_cobweb_dig = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
damage_groups = {fleshy=6},
2017-02-19 18:59:18 +00:00
},
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:sword_gold", {
description = "Golden Sword",
2015-06-29 17:55:56 +00:00
inventory_image = "default_tool_goldsword.png",
groups = { weapon=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-04 11:03:04 +00:00
full_punch_interval = 0.625,
2017-02-24 16:01:56 +00:00
max_drop_level=2,
2015-06-29 17:55:56 +00:00
groupcaps={
swordy_dig = {times=tooltimes, uses=0},
swordy_cobweb_dig = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
2017-01-16 23:37:15 +00:00
damage_groups = {fleshy=4},
2017-02-19 18:59:18 +00:00
},
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:sword_diamond", {
2015-06-29 17:55:56 +00:00
description = "Diamond Sword",
inventory_image = "default_tool_diamondsword.png",
groups = { weapon=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
2017-01-04 11:03:04 +00:00
full_punch_interval = 0.625,
2017-02-24 16:01:56 +00:00
max_drop_level=5,
2015-06-29 17:55:56 +00:00
groupcaps={
swordy_dig = {times=tooltimes, uses=0},
swordy_cobweb_dig = {times=tooltimes, uses=0},
2015-06-29 17:55:56 +00:00
},
2017-01-04 11:03:04 +00:00
damage_groups = {fleshy=7},
2017-02-19 18:59:18 +00:00
},
sound = { breaks = "default_tool_breaks" },
2015-06-29 17:55:56 +00:00
})
--Shears
2017-01-31 22:32:56 +00:00
minetest.register_tool("mcl_core:shears", {
2015-06-29 17:55:56 +00:00
description = "Shears",
inventory_image = "default_tool_shears.png",
wield_image = "default_tool_shears.png",
stack_max = 1,
groups = { tool=1 },
2015-06-29 17:55:56 +00:00
tool_capabilities = {
full_punch_interval = 0.5,
max_drop_level=1,
groupcaps={
shearsy_dig = {times=tooltimes, uses=0},
shearsy_wool_dig = {times=tooltimes, uses=0},
2017-02-19 18:59:18 +00:00
}
},
sound = { breaks = "default_tool_breaks" },
2017-01-04 04:29:55 +00:00
})
2017-01-04 10:26:35 +00:00
2017-01-16 22:11:04 +00:00