2017-02-01 16:31:27 +01:00
-- Flint and Steel
minetest.register_tool ( " mcl_fire:flint_and_steel " , {
description = " Flint and Steel " ,
2017-08-17 19:05:13 +02:00
_doc_items_longdesc = " Flint and steel is a tool to start fires and ignite blocks. " ,
_doc_items_usagehelp = " Rightclick the surface of a block to attempt to light a fire in front of it or ignite the block. A few blocks have an unique reaction when ignited. " ,
2017-02-01 16:31:27 +01:00
inventory_image = " mcl_fire_flint_and_steel.png " ,
liquids_pointable = false ,
stack_max = 1 ,
groups = { tool = 1 } ,
2017-03-11 02:51:31 +01:00
on_place = function ( itemstack , user , pointed_thing )
2017-07-24 19:57:37 +02:00
-- Use pointed node's on_rightclick function first, if present
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
2017-02-19 20:23:33 +01:00
local idef = itemstack : get_definition ( )
2017-02-19 22:58:51 +01:00
minetest.sound_play (
" fire_flint_and_steel " ,
{ pos = pointed_thing.above , gain = 0.5 , max_hear_distance = 8 }
)
2017-05-09 17:49:38 +02:00
local used = false
2017-02-01 16:31:27 +01:00
if pointed_thing.type == " node " then
2017-05-09 17:49:38 +02:00
local nodedef = minetest.registered_nodes [ minetest.get_node ( pointed_thing.under ) . name ]
2017-06-29 13:02:53 +02:00
if nodedef and nodedef._on_ignite then
2017-09-19 15:45:23 +02:00
local overwrite = nodedef._on_ignite ( user , pointed_thing )
if not overwrite then
mcl_fire.set_fire ( pointed_thing )
end
2017-02-01 16:31:27 +01:00
else
2017-02-01 16:43:05 +01:00
mcl_fire.set_fire ( pointed_thing )
2017-02-01 16:31:27 +01:00
end
2017-05-09 17:49:38 +02:00
used = true
2017-02-01 16:31:27 +01:00
end
2017-02-19 20:23:33 +01:00
if itemstack : get_count ( ) == 0 and idef.sound and idef.sound . breaks then
minetest.sound_play ( idef.sound . breaks , { pos = user : getpos ( ) , gain = 0.5 } )
end
2017-08-09 16:17:00 +02:00
if not minetest.settings : get_bool ( " creative_mode " ) and used == true then
2017-05-09 17:49:38 +02:00
itemstack : add_wear ( 65535 / 65 ) -- 65 uses
end
2017-02-01 16:45:49 +01:00
return itemstack
2017-02-01 16:31:27 +01:00
end ,
2017-02-19 20:23:33 +01:00
sound = { breaks = " default_tool_breaks " } ,
2017-02-01 16:31:27 +01:00
} )
minetest.register_craft ( {
type = ' shapeless ' ,
2017-02-01 16:39:51 +01:00
output = ' mcl_fire:flint_and_steel ' ,
2017-02-11 21:14:40 +01:00
recipe = { ' mcl_core:iron_ingot ' , ' mcl_core:flint ' } ,
2017-02-01 16:31:27 +01:00
} )