2019-03-07 23:00:09 +00:00
local S = minetest.get_translator ( " mcl_farming " )
2015-07-03 04:57:09 +00:00
local function create_soil ( pos , inv )
2015-06-29 17:55:56 +00:00
if pos == nil then
return false
end
2017-01-05 00:28:43 +00:00
local node = minetest.get_node ( pos )
2015-06-29 17:55:56 +00:00
local name = node.name
2017-01-05 00:28:43 +00:00
local above = minetest.get_node ( { x = pos.x , y = pos.y + 1 , z = pos.z } )
2017-01-10 03:01:53 +00:00
if minetest.get_item_group ( name , " cultivatable " ) == 2 then
2015-06-29 17:55:56 +00:00
if above.name == " air " then
2017-01-31 11:35:59 +00:00
node.name = " mcl_farming:soil "
2017-01-05 00:28:43 +00:00
minetest.set_node ( pos , node )
2017-03-12 01:03:45 +00:00
minetest.sound_play ( " default_dig_crumbly " , { pos = pos , gain = 0.5 } )
2017-01-05 00:28:43 +00:00
return true
end
2017-01-10 03:01:53 +00:00
elseif minetest.get_item_group ( name , " cultivatable " ) == 1 then
2017-01-05 00:28:43 +00:00
if above.name == " air " then
2017-01-31 22:32:56 +00:00
node.name = " mcl_core:dirt "
2017-01-05 00:28:43 +00:00
minetest.set_node ( pos , node )
2017-03-12 01:03:45 +00:00
minetest.sound_play ( " default_dig_crumbly " , { pos = pos , gain = 0.6 } )
2015-06-29 17:55:56 +00:00
return true
end
end
return false
end
2019-03-27 12:07:33 +00:00
local hoe_on_place_function = function ( wear_divisor )
return function ( itemstack , user , pointed_thing )
2017-03-02 17:57:22 +00: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
2019-03-27 12:07:33 +00:00
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
2015-07-03 04:57:09 +00:00
if create_soil ( pointed_thing.under , user : get_inventory ( ) ) then
2017-08-09 14:17:00 +00:00
if not minetest.settings : get_bool ( " creative_mode " ) then
2019-03-27 12:07:33 +00:00
itemstack : add_wear ( 65535 / wear_divisor )
2015-06-29 17:55:56 +00:00
end
return itemstack
end
2019-03-27 12:07:33 +00:00
end
end
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 " ) ,
_doc_items_longdesc = hoe_longdesc ,
_doc_items_usagehelp = hoe_usagehelp ,
_doc_items_hidden = false ,
inventory_image = " farming_tool_woodhoe.png " ,
on_place = hoe_on_place_function ( 60 ) ,
2019-02-25 16:46:13 +00:00
groups = { tool = 1 , hoe = 1 } ,
2017-01-16 23:44:37 +00:00
tool_capabilities = {
full_punch_interval = 1 ,
damage_groups = { fleshy = 1 , }
} ,
2018-02-02 01:33:10 +00:00
_repair_material = " group:wood " ,
2015-06-29 17:55:56 +00:00
} )
minetest.register_craft ( {
2017-01-31 11:35:59 +00:00
output = " mcl_farming:hoe_wood " ,
2015-06-29 17:55:56 +00:00
recipe = {
2017-01-05 03:39:36 +00:00
{ " group:wood " , " group:wood " } ,
2017-01-31 22:32:56 +00:00
{ " " , " mcl_core:stick " } ,
{ " " , " mcl_core:stick " }
2015-06-29 17:55:56 +00:00
}
} )
2017-01-10 00:59:21 +00:00
minetest.register_craft ( {
2017-01-31 11:35:59 +00:00
output = " mcl_farming:hoe_wood " ,
2017-01-10 00:59:21 +00:00
recipe = {
{ " group:wood " , " group:wood " } ,
2017-01-31 22:32:56 +00:00
{ " mcl_core:stick " , " " } ,
{ " mcl_core:stick " , " " }
2017-01-10 00:59:21 +00:00
}
} )
2017-01-10 05:43:07 +00:00
minetest.register_craft ( {
type = " fuel " ,
2017-01-31 11:35:59 +00:00
recipe = " mcl_farming:hoe_wood " ,
2017-01-10 05:43:07 +00:00
burntime = 10 ,
} )
2015-06-29 17:55:56 +00:00
2017-01-31 11:35:59 +00:00
minetest.register_tool ( " mcl_farming:hoe_stone " , {
2019-03-07 23:00:09 +00:00
description = S ( " Stone Hoe " ) ,
2017-03-12 00:55:18 +00:00
_doc_items_longdesc = hoe_longdesc ,
_doc_items_usagehelp = hoe_usagehelp ,
2015-06-29 17:55:56 +00:00
inventory_image = " farming_tool_stonehoe.png " ,
2019-03-27 12:07:33 +00:00
on_place = hoe_on_place_function ( 132 ) ,
2019-02-25 16:46:13 +00:00
groups = { tool = 1 , hoe = 1 } ,
2017-01-16 23:44:37 +00:00
tool_capabilities = {
full_punch_interval = 0.5 ,
damage_groups = { fleshy = 1 , }
} ,
2018-02-02 01:33:10 +00:00
_repair_material = " mcl_core:cobblestone " ,
2015-06-29 17:55:56 +00:00
} )
minetest.register_craft ( {
2017-01-31 11:35:59 +00:00
output = " mcl_farming:hoe_stone " ,
2015-06-29 17:55:56 +00:00
recipe = {
2017-01-31 22:32:56 +00:00
{ " mcl_core:cobble " , " mcl_core:cobble " } ,
{ " " , " mcl_core:stick " } ,
{ " " , " mcl_core:stick " }
2015-06-29 17:55:56 +00:00
}
} )
2017-01-10 00:59:21 +00:00
minetest.register_craft ( {
2017-01-31 11:35:59 +00:00
output = " mcl_farming:hoe_stone " ,
2017-01-10 00:59:21 +00:00
recipe = {
2017-01-31 22:32:56 +00:00
{ " mcl_core:cobble " , " mcl_core:cobble " } ,
{ " mcl_core:stick " , " " } ,
{ " mcl_core:stick " , " " }
2017-01-10 00:59:21 +00:00
}
} )
2015-06-29 17:55:56 +00:00
2017-02-11 20:14:40 +00:00
minetest.register_tool ( " mcl_farming:hoe_iron " , {
2019-03-07 23:00:09 +00:00
description = S ( " Iron Hoe " ) ,
2017-03-12 00:55:18 +00:00
_doc_items_longdesc = hoe_longdesc ,
_doc_items_usagehelp = hoe_usagehelp ,
2015-06-29 17:55:56 +00:00
inventory_image = " farming_tool_steelhoe.png " ,
2019-03-27 12:07:33 +00:00
on_place = hoe_on_place_function ( 251 ) ,
2019-02-25 16:46:13 +00:00
groups = { tool = 1 , hoe = 1 } ,
2017-01-16 23:44:37 +00:00
tool_capabilities = {
-- 1/3
full_punch_interval = 0.33333333 ,
damage_groups = { fleshy = 1 , }
} ,
2018-02-02 01:33:10 +00:00
_repair_material = " mcl_core:iron_ingot " ,
2015-06-29 17:55:56 +00:00
} )
minetest.register_craft ( {
2017-02-11 20:14:40 +00:00
output = " mcl_farming:hoe_iron " ,
2015-06-29 17:55:56 +00:00
recipe = {
2017-02-11 20:14:40 +00:00
{ " mcl_core:iron_ingot " , " mcl_core:iron_ingot " } ,
2017-01-31 22:32:56 +00:00
{ " " , " mcl_core:stick " } ,
{ " " , " mcl_core:stick " }
2015-06-29 17:55:56 +00:00
}
} )
2017-01-10 00:59:21 +00:00
minetest.register_craft ( {
2017-02-11 20:14:40 +00:00
output = " mcl_farming:hoe_iron " ,
2017-01-10 00:59:21 +00:00
recipe = {
2017-02-11 20:14:40 +00:00
{ " mcl_core:iron_ingot " , " mcl_core:iron_ingot " } ,
2017-01-31 22:32:56 +00:00
{ " mcl_core:stick " , " " } ,
{ " mcl_core:stick " , " " }
2017-01-10 00:59:21 +00:00
}
} )
2015-06-29 17:55:56 +00:00
2017-01-04 09:56:38 +00:00
minetest.register_craft ( {
type = " cooking " ,
2017-01-31 22:32:56 +00:00
output = " mcl_core:iron_nugget " ,
2017-02-11 20:14:40 +00:00
recipe = " mcl_farming:hoe_iron " ,
2017-01-04 10:49:05 +00:00
cooktime = 10 ,
2017-01-04 09:56:38 +00:00
} )
2017-01-31 11:35:59 +00:00
minetest.register_tool ( " mcl_farming:hoe_gold " , {
2019-03-07 23:00:09 +00:00
description = S ( " Golden Hoe " ) ,
2017-03-12 00:55:18 +00:00
_doc_items_longdesc = hoe_longdesc ,
_doc_items_usagehelp = hoe_usagehelp ,
2015-06-29 17:55:56 +00:00
inventory_image = " farming_tool_goldhoe.png " ,
2019-03-27 12:07:33 +00:00
on_place = hoe_on_place_function ( 33 ) ,
2019-02-25 16:46:13 +00:00
groups = { tool = 1 , hoe = 1 } ,
2017-01-16 23:44:37 +00:00
tool_capabilities = {
full_punch_interval = 1 ,
damage_groups = { fleshy = 1 , }
} ,
2018-02-02 01:33:10 +00:00
_repair_material = " mcl_core:gold_ingot " ,
2015-06-29 17:55:56 +00:00
} )
minetest.register_craft ( {
2017-01-31 11:35:59 +00:00
output = " mcl_farming:hoe_gold " ,
2015-06-29 17:55:56 +00:00
recipe = {
2017-01-31 22:32:56 +00:00
{ " mcl_core:gold_ingot " , " mcl_core:gold_ingot " } ,
{ " " , " mcl_core:stick " } ,
{ " " , " mcl_core:stick " }
2015-06-29 17:55:56 +00:00
}
} )
2017-01-10 00:59:21 +00:00
minetest.register_craft ( {
2017-01-31 11:35:59 +00:00
output = " mcl_farming:hoe_gold " ,
2017-01-10 00:59:21 +00:00
recipe = {
2017-01-31 22:32:56 +00:00
{ " mcl_core:gold_ingot " , " mcl_core:gold_ingot " } ,
{ " mcl_core:stick " , " " } ,
{ " mcl_core:stick " , " " }
2017-01-10 00:59:21 +00:00
}
} )
2015-06-29 17:55:56 +00:00
2017-01-04 09:56:38 +00:00
minetest.register_craft ( {
type = " cooking " ,
2017-01-31 22:32:56 +00:00
output = " mcl_core:gold_nugget " ,
2017-01-31 11:35:59 +00:00
recipe = " mcl_farming:hoe_gold " ,
2017-01-04 10:49:05 +00:00
cooktime = 10 ,
2017-01-04 09:56:38 +00:00
} )
2017-01-31 11:35:59 +00:00
minetest.register_tool ( " mcl_farming:hoe_diamond " , {
2019-03-07 23:00:09 +00:00
description = S ( " Diamond Hoe " ) ,
2017-03-12 00:55:18 +00:00
_doc_items_longdesc = hoe_longdesc ,
_doc_items_usagehelp = hoe_usagehelp ,
2015-06-29 17:55:56 +00:00
inventory_image = " farming_tool_diamondhoe.png " ,
2019-03-27 12:07:33 +00:00
on_place = hoe_on_place_function ( 1562 ) ,
2019-02-25 16:46:13 +00:00
groups = { tool = 1 , hoe = 1 } ,
2017-01-16 23:44:37 +00:00
tool_capabilities = {
full_punch_interval = 0.25 ,
damage_groups = { fleshy = 1 , }
} ,
2018-02-02 01:33:10 +00:00
_repair_material = " mcl_core:diamond " ,
2015-06-29 17:55:56 +00:00
} )
minetest.register_craft ( {
2017-01-31 11:35:59 +00:00
output = " mcl_farming:hoe_diamond " ,
2015-06-29 17:55:56 +00:00
recipe = {
2017-01-31 22:32:56 +00:00
{ " mcl_core:diamond " , " mcl_core:diamond " } ,
{ " " , " mcl_core:stick " } ,
{ " " , " mcl_core:stick " }
2015-06-29 17:55:56 +00:00
}
} )
2017-01-10 00:59:21 +00:00
minetest.register_craft ( {
2017-01-31 11:35:59 +00:00
output = " mcl_farming:hoe_diamond " ,
2017-01-10 00:59:21 +00:00
recipe = {
2017-01-31 22:32:56 +00:00
{ " mcl_core:diamond " , " mcl_core:diamond " } ,
{ " mcl_core:stick " , " " } ,
{ " mcl_core:stick " , " " }
2017-01-10 00:59:21 +00:00
}
} )