2015-09-01 17:15:24 +02:00
|
|
|
|
|
|
|
--
|
2015-10-04 02:07:04 +02:00
|
|
|
-- Cooking
|
2015-09-01 17:15:24 +02:00
|
|
|
--
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-10-06 19:10:27 +02:00
|
|
|
{
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:torch_weak",
|
|
|
|
recipe = "default:torch_dead",
|
|
|
|
cooktime = 1,
|
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-10-06 19:10:27 +02:00
|
|
|
{
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:torch",
|
|
|
|
recipe = "default:torch_weak",
|
|
|
|
cooktime = 4,
|
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:glass",
|
|
|
|
recipe = "default:sand",
|
|
|
|
cooktime = 3,
|
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:lump_coal",
|
|
|
|
recipe = "default:tree",
|
|
|
|
cooktime = 4,
|
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-11-26 19:40:24 +01:00
|
|
|
{
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:lump_coal",
|
|
|
|
recipe = "default:tree_oak",
|
|
|
|
cooktime = 5,
|
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-11-26 19:40:24 +01:00
|
|
|
{
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:lump_coal",
|
|
|
|
recipe = "default:tree_birch",
|
|
|
|
cooktime = 5,
|
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:stone",
|
|
|
|
recipe = "default:cobble",
|
|
|
|
cooktime = 6,
|
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:ingot_steel",
|
|
|
|
recipe = "default:lump_iron",
|
|
|
|
cooktime = 3,
|
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:ingot_carbonsteel",
|
|
|
|
recipe = "default:dust_carbonsteel",
|
|
|
|
cooktime = 5,
|
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:lump_sugar",
|
|
|
|
recipe = "default:papyrus",
|
|
|
|
cooktime = 7,
|
|
|
|
})
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Fuels
|
|
|
|
--
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "group:leaves",
|
|
|
|
burntime = 1,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:dry_grass",
|
|
|
|
burntime = 1,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-10-18 02:31:07 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fern",
|
|
|
|
burntime = 2,
|
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:papyrus",
|
|
|
|
burntime = 2,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:apple",
|
|
|
|
burntime = 3,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:ladder",
|
|
|
|
burntime = 5,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:rope",
|
|
|
|
burntime = 5,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "group:planks",
|
|
|
|
burntime = 5,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:torch",
|
|
|
|
burntime = 5,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "group:sapling",
|
|
|
|
burntime = 7,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-10-18 02:31:07 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fertilizer",
|
|
|
|
burntime = 8,
|
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "group:planks",
|
|
|
|
burntime = 9,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:sign",
|
2015-09-01 17:15:24 +02:00
|
|
|
burntime = 10,
|
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:cactus",
|
|
|
|
burntime = 10,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:fence",
|
|
|
|
burntime = 10,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:fence_oak",
|
|
|
|
burntime = 11,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:fence_birch",
|
|
|
|
burntime = 11,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:planks_oak",
|
|
|
|
burntime = 12,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:planks_birch",
|
|
|
|
burntime = 12,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:frame",
|
|
|
|
burntime = 12,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "default:reinforced_frame",
|
|
|
|
burntime = 17,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2015-10-04 02:07:04 +02:00
|
|
|
recipe = "group:tree",
|
|
|
|
burntime = 20,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
2015-10-04 02:07:04 +02:00
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:chest",
|
|
|
|
burntime = 24,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
2015-10-04 02:07:04 +02:00
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:bookshelf",
|
|
|
|
burntime = 30,
|
2015-09-01 17:15:24 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-24 19:59:16 +02:00
|
|
|
{
|
2015-10-04 02:07:04 +02:00
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:lump_coal",
|
|
|
|
burntime = 30,
|
2015-09-24 19:59:16 +02:00
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-24 19:59:16 +02:00
|
|
|
{
|
2015-10-04 02:07:04 +02:00
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:block_coal",
|
|
|
|
burntime = 270,
|
2015-09-24 19:59:16 +02:00
|
|
|
})
|
|
|
|
|
2017-05-10 20:01:02 +02:00
|
|
|
default.log("crafting", "loaded")
|