VoxeLibre/mods/ITEMS/mcl_farming/hoes.lua

276 lines
7.8 KiB
Lua
Raw Normal View History

local S = minetest.get_translator(minetest.get_current_modname())
local function create_soil(pos, inv)
2015-06-29 19:55:56 +02:00
if pos == nil then
return false
end
2017-01-05 01:28:43 +01:00
local node = minetest.get_node(pos)
2015-06-29 19:55:56 +02:00
local name = node.name
2017-01-05 01:28:43 +01:00
local above = minetest.get_node({x=pos.x, y=pos.y+1, z=pos.z})
2017-01-10 04:01:53 +01:00
if minetest.get_item_group(name, "cultivatable") == 2 then
2015-06-29 19:55:56 +02:00
if above.name == "air" then
2017-01-31 12:35:59 +01:00
node.name = "mcl_farming:soil"
2017-01-05 01:28:43 +01:00
minetest.set_node(pos, node)
2020-04-07 00:55:45 +02:00
minetest.sound_play("default_dig_crumbly", { pos = pos, gain = 0.5 }, true)
2017-01-05 01:28:43 +01:00
return true
end
2017-01-10 04:01:53 +01:00
elseif minetest.get_item_group(name, "cultivatable") == 1 then
2017-01-05 01:28:43 +01:00
if above.name == "air" then
2017-01-31 23:32:56 +01:00
node.name = "mcl_core:dirt"
2017-01-05 01:28:43 +01:00
minetest.set_node(pos, node)
2020-04-07 00:55:45 +02:00
minetest.sound_play("default_dig_crumbly", { pos = pos, gain = 0.6 }, true)
2015-06-29 19:55:56 +02:00
return true
end
end
return false
end
local hoe_on_place_function = function(wear_divisor)
return function(itemstack, user, pointed_thing)
2017-03-02 18:57:22 +01:00
-- Call on_rightclick if the pointed node defines it
local node = minetest.get_node(pointed_thing.under)
if user and not user:get_player_control().sneak then
if minetest.registered_nodes[node.name] and minetest.registered_nodes[node.name].on_rightclick then
return minetest.registered_nodes[node.name].on_rightclick(pointed_thing.under, node, user, itemstack) or itemstack
end
end
if minetest.is_protected(pointed_thing.under, user:get_player_name()) then
minetest.record_protection_violation(pointed_thing.under, user:get_player_name())
return itemstack
end
if create_soil(pointed_thing.under, user:get_inventory()) then
2020-07-10 16:08:40 +02:00
if not minetest.is_creative_enabled(user:get_player_name()) then
itemstack:add_wear(65535/wear_divisor)
2015-06-29 19:55:56 +02:00
end
return itemstack
end
end
end
2020-02-19 15:53:51 +01:00
local uses = {
wood = 60,
stone = 132,
iron = 251,
gold = 33,
2020-02-19 04:54:17 +01:00
diamond = 1562,
2020-02-19 15:53:51 +01:00
}
2020-02-19 04:54:17 +01:00
local hoe_tt = S("Turns block into farmland")
local hoe_longdesc = S("Hoes are essential tools for growing crops. They are used to create farmland in order to plant seeds on it. Hoes can also be used as very weak weapons in a pinch.")
local hoe_usagehelp = S("Use the hoe on a cultivatable block (by rightclicking it) to turn it into farmland. Dirt, grass blocks and grass paths are cultivatable blocks. Using a hoe on coarse dirt turns it into dirt.")
minetest.register_tool("mcl_farming:hoe_wood", {
description = S("Wood Hoe"),
2020-02-19 04:54:17 +01:00
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.wood),
_doc_items_longdesc = hoe_longdesc,
_doc_items_usagehelp = hoe_usagehelp,
_doc_items_hidden = false,
inventory_image = "farming_tool_woodhoe.png",
2021-04-05 14:32:48 +02:00
wield_scale = mcl_vars.tool_wield_scale,
2020-02-19 15:53:51 +01:00
on_place = hoe_on_place_function(uses.wood),
2020-11-25 12:47:27 +01:00
groups = { tool=1, hoe=1, enchantability=15 },
2017-01-17 00:44:37 +01:00
tool_capabilities = {
full_punch_interval = 1,
2020-02-19 15:53:51 +01:00
damage_groups = { fleshy = 1, },
punch_attack_uses = uses.wood,
2017-01-17 00:44:37 +01:00
},
_repair_material = "group:wood",
_mcl_toollike_wield = true,
_mcl_diggroups = {
hoey = { speed = 2, level = 1, uses = 60 }
},
2015-06-29 19:55:56 +02:00
})
minetest.register_craft({
2017-01-31 12:35:59 +01:00
output = "mcl_farming:hoe_wood",
2015-06-29 19:55:56 +02:00
recipe = {
2017-01-05 04:39:36 +01:00
{"group:wood", "group:wood"},
2017-01-31 23:32:56 +01:00
{"", "mcl_core:stick"},
{"", "mcl_core:stick"}
2015-06-29 19:55:56 +02:00
}
})
2017-01-10 01:59:21 +01:00
minetest.register_craft({
2017-01-31 12:35:59 +01:00
output = "mcl_farming:hoe_wood",
2017-01-10 01:59:21 +01:00
recipe = {
{"group:wood", "group:wood"},
2017-01-31 23:32:56 +01:00
{"mcl_core:stick", ""},
{"mcl_core:stick", ""}
2017-01-10 01:59:21 +01:00
}
})
2017-01-10 06:43:07 +01:00
minetest.register_craft({
type = "fuel",
2017-01-31 12:35:59 +01:00
recipe = "mcl_farming:hoe_wood",
2017-01-10 06:43:07 +01:00
burntime = 10,
})
2015-06-29 19:55:56 +02:00
2017-01-31 12:35:59 +01:00
minetest.register_tool("mcl_farming:hoe_stone", {
description = S("Stone Hoe"),
2020-02-19 04:54:17 +01:00
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.stone),
2017-03-12 01:55:18 +01:00
_doc_items_longdesc = hoe_longdesc,
_doc_items_usagehelp = hoe_usagehelp,
2015-06-29 19:55:56 +02:00
inventory_image = "farming_tool_stonehoe.png",
2021-04-05 14:32:48 +02:00
wield_scale = mcl_vars.tool_wield_scale,
2020-02-19 15:53:51 +01:00
on_place = hoe_on_place_function(uses.stone),
2020-11-25 12:47:27 +01:00
groups = { tool=1, hoe=1, enchantability=5 },
2017-01-17 00:44:37 +01:00
tool_capabilities = {
full_punch_interval = 0.5,
2020-02-19 15:53:51 +01:00
damage_groups = { fleshy = 1, },
punch_attack_uses = uses.stone,
2017-01-17 00:44:37 +01:00
},
_repair_material = "group:cobble",
_mcl_toollike_wield = true,
_mcl_diggroups = {
hoey = { speed = 4, level = 3, uses = 132 }
},
2015-06-29 19:55:56 +02:00
})
minetest.register_craft({
2017-01-31 12:35:59 +01:00
output = "mcl_farming:hoe_stone",
2015-06-29 19:55:56 +02:00
recipe = {
{"group:cobble", "group:cobble"},
2017-01-31 23:32:56 +01:00
{"", "mcl_core:stick"},
{"", "mcl_core:stick"}
2015-06-29 19:55:56 +02:00
}
})
2017-01-10 01:59:21 +01:00
minetest.register_craft({
2017-01-31 12:35:59 +01:00
output = "mcl_farming:hoe_stone",
2017-01-10 01:59:21 +01:00
recipe = {
{"group:cobble", "group:cobble"},
2017-01-31 23:32:56 +01:00
{"mcl_core:stick", ""},
{"mcl_core:stick", ""}
2017-01-10 01:59:21 +01:00
}
})
2015-06-29 19:55:56 +02:00
2017-02-11 21:14:40 +01:00
minetest.register_tool("mcl_farming:hoe_iron", {
description = S("Iron Hoe"),
2020-02-19 04:54:17 +01:00
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.iron),
2017-03-12 01:55:18 +01:00
_doc_items_longdesc = hoe_longdesc,
_doc_items_usagehelp = hoe_usagehelp,
2015-06-29 19:55:56 +02:00
inventory_image = "farming_tool_steelhoe.png",
2021-04-05 14:32:48 +02:00
wield_scale = mcl_vars.tool_wield_scale,
2020-02-19 15:53:51 +01:00
on_place = hoe_on_place_function(uses.iron),
2020-11-25 12:47:27 +01:00
groups = { tool=1, hoe=1, enchantability=14 },
2017-01-17 00:44:37 +01:00
tool_capabilities = {
-- 1/3
full_punch_interval = 0.33333333,
2020-02-19 15:53:51 +01:00
damage_groups = { fleshy = 1, },
punch_attack_uses = uses.iron,
2017-01-17 00:44:37 +01:00
},
_repair_material = "mcl_core:iron_ingot",
_mcl_toollike_wield = true,
_mcl_diggroups = {
hoey = { speed = 6, level = 4, uses = 251 }
},
2015-06-29 19:55:56 +02:00
})
minetest.register_craft({
2017-02-11 21:14:40 +01:00
output = "mcl_farming:hoe_iron",
2015-06-29 19:55:56 +02:00
recipe = {
2017-02-11 21:14:40 +01:00
{"mcl_core:iron_ingot", "mcl_core:iron_ingot"},
2017-01-31 23:32:56 +01:00
{"", "mcl_core:stick"},
{"", "mcl_core:stick"}
2015-06-29 19:55:56 +02:00
}
})
2017-01-10 01:59:21 +01:00
minetest.register_craft({
2017-02-11 21:14:40 +01:00
output = "mcl_farming:hoe_iron",
2017-01-10 01:59:21 +01:00
recipe = {
2017-02-11 21:14:40 +01:00
{"mcl_core:iron_ingot", "mcl_core:iron_ingot"},
2017-01-31 23:32:56 +01:00
{"mcl_core:stick", ""},
{"mcl_core:stick", ""}
2017-01-10 01:59:21 +01:00
}
})
2015-06-29 19:55:56 +02:00
2017-01-04 10:56:38 +01:00
minetest.register_craft({
type = "cooking",
2017-01-31 23:32:56 +01:00
output = "mcl_core:iron_nugget",
2017-02-11 21:14:40 +01:00
recipe = "mcl_farming:hoe_iron",
2017-01-04 11:49:05 +01:00
cooktime = 10,
2017-01-04 10:56:38 +01:00
})
2017-01-31 12:35:59 +01:00
minetest.register_tool("mcl_farming:hoe_gold", {
description = S("Golden Hoe"),
2020-02-19 04:54:17 +01:00
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.gold),
2017-03-12 01:55:18 +01:00
_doc_items_longdesc = hoe_longdesc,
_doc_items_usagehelp = hoe_usagehelp,
2015-06-29 19:55:56 +02:00
inventory_image = "farming_tool_goldhoe.png",
2021-04-05 14:32:48 +02:00
wield_scale = mcl_vars.tool_wield_scale,
2020-02-19 15:53:51 +01:00
on_place = hoe_on_place_function(uses.gold),
2020-11-25 12:47:27 +01:00
groups = { tool=1, hoe=1, enchantability=22 },
2017-01-17 00:44:37 +01:00
tool_capabilities = {
full_punch_interval = 1,
2020-02-19 15:53:51 +01:00
damage_groups = { fleshy = 1, },
punch_attack_uses = uses.gold,
2017-01-17 00:44:37 +01:00
},
_repair_material = "mcl_core:gold_ingot",
_mcl_toollike_wield = true,
_mcl_diggroups = {
hoey = { speed = 12, level = 2, uses = 33 }
},
2015-06-29 19:55:56 +02:00
})
minetest.register_craft({
2017-01-31 12:35:59 +01:00
output = "mcl_farming:hoe_gold",
2015-06-29 19:55:56 +02:00
recipe = {
2017-01-31 23:32:56 +01:00
{"mcl_core:gold_ingot", "mcl_core:gold_ingot"},
{"", "mcl_core:stick"},
{"", "mcl_core:stick"}
2015-06-29 19:55:56 +02:00
}
})
2017-01-10 01:59:21 +01:00
minetest.register_craft({
2017-01-31 12:35:59 +01:00
output = "mcl_farming:hoe_gold",
2017-01-10 01:59:21 +01:00
recipe = {
2017-01-31 23:32:56 +01:00
{"mcl_core:gold_ingot", "mcl_core:gold_ingot"},
{"mcl_core:stick", ""},
{"mcl_core:stick", ""}
2017-01-10 01:59:21 +01:00
}
})
2015-06-29 19:55:56 +02:00
2017-01-04 10:56:38 +01:00
minetest.register_craft({
type = "cooking",
2017-01-31 23:32:56 +01:00
output = "mcl_core:gold_nugget",
2017-01-31 12:35:59 +01:00
recipe = "mcl_farming:hoe_gold",
2017-01-04 11:49:05 +01:00
cooktime = 10,
2017-01-04 10:56:38 +01:00
})
2017-01-31 12:35:59 +01:00
minetest.register_tool("mcl_farming:hoe_diamond", {
description = S("Diamond Hoe"),
2020-02-19 04:54:17 +01:00
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.diamond),
2017-03-12 01:55:18 +01:00
_doc_items_longdesc = hoe_longdesc,
_doc_items_usagehelp = hoe_usagehelp,
2015-06-29 19:55:56 +02:00
inventory_image = "farming_tool_diamondhoe.png",
2021-04-05 14:32:48 +02:00
wield_scale = mcl_vars.tool_wield_scale,
2020-02-19 15:53:51 +01:00
on_place = hoe_on_place_function(uses.diamond),
2020-11-25 12:47:27 +01:00
groups = { tool=1, hoe=1, enchantability=10 },
2017-01-17 00:44:37 +01:00
tool_capabilities = {
full_punch_interval = 0.25,
2020-02-19 15:53:51 +01:00
damage_groups = { fleshy = 1, },
punch_attack_uses = uses.diamond,
2017-01-17 00:44:37 +01:00
},
_repair_material = "mcl_core:diamond",
_mcl_toollike_wield = true,
_mcl_diggroups = {
hoey = { speed = 8, level = 5, uses = 1562 }
},
2015-06-29 19:55:56 +02:00
})
minetest.register_craft({
2017-01-31 12:35:59 +01:00
output = "mcl_farming:hoe_diamond",
2015-06-29 19:55:56 +02:00
recipe = {
2017-01-31 23:32:56 +01:00
{"mcl_core:diamond", "mcl_core:diamond"},
{"", "mcl_core:stick"},
{"", "mcl_core:stick"}
2015-06-29 19:55:56 +02:00
}
})
2017-01-10 01:59:21 +01:00
minetest.register_craft({
2017-01-31 12:35:59 +01:00
output = "mcl_farming:hoe_diamond",
2017-01-10 01:59:21 +01:00
recipe = {
2017-01-31 23:32:56 +01:00
{"mcl_core:diamond", "mcl_core:diamond"},
{"mcl_core:stick", ""},
{"mcl_core:stick", ""}
2017-01-10 01:59:21 +01:00
}
})