mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-01 15:32:39 +00:00
30 lines
874 B
Lua
30 lines
874 B
Lua
-- Flint and Steel
|
|
minetest.register_tool("mcl_fire:flint_and_steel", {
|
|
description = "Flint and Steel",
|
|
inventory_image = "mcl_fire_flint_and_steel.png",
|
|
liquids_pointable = false,
|
|
stack_max = 1,
|
|
groups = { tool = 1 },
|
|
on_use = function(itemstack, user, pointed_thing)
|
|
if pointed_thing.type == "node" then
|
|
if minetest.get_node(pointed_thing.under).name == "mcl_tnt:tnt" then
|
|
tnt.ignite(pointed_thing.under)
|
|
if not minetest.setting_getbool("creative_mode") then
|
|
itemstack:add_wear(65535/65) -- 65 uses
|
|
end
|
|
else
|
|
mcl_fire.set_fire(pointed_thing)
|
|
if not minetest.setting_getbool("creative_mode") then
|
|
itemstack:add_wear(65535/65) -- 65 uses
|
|
end
|
|
end
|
|
end
|
|
return itemstack
|
|
end,
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = 'shapeless',
|
|
output = 'mcl_fire:flint_and_steel',
|
|
recipe = { 'mcl_core:iron_ingot', 'mcl_core:flint'},
|
|
})
|