Mineclonia/mods/ITEMS/mcl_fire/flint_and_steel.lua

42 lines
1.5 KiB
Lua
Raw Normal View History

2017-02-01 15:31:27 +00:00
-- Flint and Steel
minetest.register_tool("mcl_fire:flint_and_steel", {
description = "Flint and Steel",
_doc_items_longdesc = "Flint and steel is a tool to start fires and ignite blocks.",
2017-05-09 16:18:59 +00:00
_doc_items_usagehelp = "Rightclick the surface of a block to attempt to light a fire in front of it. On netherrack it will start an eternal fire. Using it on TNT will ignite it.",
2017-02-01 15:31:27 +00:00
inventory_image = "mcl_fire_flint_and_steel.png",
liquids_pointable = false,
stack_max = 1,
groups = { tool = 1 },
on_place = function(itemstack, user, pointed_thing)
local idef = itemstack:get_definition()
2017-02-19 21:58:51 +00:00
minetest.sound_play(
"fire_flint_and_steel",
{pos = pointed_thing.above, gain = 0.5, max_hear_distance = 8}
)
local used = false
2017-02-01 15:31:27 +00:00
if pointed_thing.type == "node" then
local nodedef = minetest.registered_nodes[minetest.get_node(pointed_thing.under).name]
if nodedef and nodedef._on_ignite then
nodedef._on_ignite(pointed_thing.under, user)
2017-02-01 15:31:27 +00:00
else
2017-02-01 15:43:05 +00:00
mcl_fire.set_fire(pointed_thing)
2017-02-01 15:31:27 +00:00
end
used = true
2017-02-01 15:31:27 +00:00
end
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
if not minetest.setting_getbool("creative_mode") and used == true then
itemstack:add_wear(65535/65) -- 65 uses
end
return itemstack
2017-02-01 15:31:27 +00:00
end,
sound = { breaks = "default_tool_breaks" },
2017-02-01 15:31:27 +00:00
})
minetest.register_craft({
type = 'shapeless',
2017-02-01 15:39:51 +00:00
output = 'mcl_fire:flint_and_steel',
2017-02-11 20:14:40 +00:00
recipe = { 'mcl_core:iron_ingot', 'mcl_core:flint'},
2017-02-01 15:31:27 +00:00
})