2015-09-01 17:15:24 +02:00
|
|
|
|
|
|
|
--
|
2017-05-17 17:57:14 +02:00
|
|
|
-- Crafting/creation
|
2015-09-01 17:15:24 +02:00
|
|
|
--
|
|
|
|
|
2017-05-17 17:57:14 +02:00
|
|
|
-- Cooking
|
|
|
|
|
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-17 17:57:14 +02:00
|
|
|
})
|
2015-10-06 19:10:27 +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",
|
|
|
|
recipe = "default:torch_weak",
|
|
|
|
cooktime = 4,
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
2015-10-06 19:10:27 +02:00
|
|
|
|
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-17 17:57:14 +02:00
|
|
|
})
|
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 = "cooking",
|
|
|
|
output = "default:lump_coal",
|
2017-05-17 17:57:14 +02:00
|
|
|
recipe = "group:tree",
|
2015-09-01 17:15:24 +02:00
|
|
|
cooktime = 4,
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
2015-11-26 19:40:24 +01:00
|
|
|
|
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-17 17:57:14 +02:00
|
|
|
})
|
2015-09-01 17:15:24 +02:00
|
|
|
|
2017-05-17 23:04:53 +02:00
|
|
|
-- Metal smelting
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "cooking",
|
2017-05-17 17:57:14 +02:00
|
|
|
output = "default:ingot_wrought_iron",
|
2015-09-01 17:15:24 +02:00
|
|
|
recipe = "default:lump_iron",
|
|
|
|
cooktime = 3,
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
2015-09-01 17:15:24 +02:00
|
|
|
|
2017-05-17 23:04:53 +02:00
|
|
|
minetest.register_craft(
|
|
|
|
{
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:ingot_tin",
|
|
|
|
recipe = "default:lump_tin",
|
|
|
|
cooktime = 3,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft(
|
|
|
|
{
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:ingot_copper",
|
|
|
|
recipe = "default:lump_copper",
|
|
|
|
cooktime = 3,
|
|
|
|
})
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "cooking",
|
2017-05-17 17:57:14 +02:00
|
|
|
output = "default:ingot_bronze",
|
|
|
|
recipe = "default:lump_bronze",
|
|
|
|
cooktime = 6,
|
|
|
|
})
|
2015-09-01 17:15:24 +02:00
|
|
|
|
|
|
|
-- 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,
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
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,
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
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-17 17:57:14 +02:00
|
|
|
})
|
2015-10-18 02:31:07 +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:papyrus",
|
|
|
|
burntime = 2,
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
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,
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
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,
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
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",
|
2017-05-17 17:57:14 +02:00
|
|
|
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:torch",
|
|
|
|
burntime = 7,
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
2015-10-18 02:31:07 +02:00
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.register_craft(
|
2015-09-01 17:15:24 +02:00
|
|
|
{
|
|
|
|
type = "fuel",
|
2017-05-17 17:57:14 +02:00
|
|
|
recipe = "group:sapling",
|
|
|
|
burntime = 4,
|
|
|
|
})
|
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",
|
2017-05-17 17:57:14 +02:00
|
|
|
burntime = 6,
|
|
|
|
})
|
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:cactus",
|
|
|
|
burntime = 10,
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
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",
|
2017-05-17 17:57:14 +02:00
|
|
|
recipe = "group:fence",
|
|
|
|
burntime = 8,
|
|
|
|
})
|
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",
|
2017-05-17 17:57:14 +02:00
|
|
|
burntime = 13,
|
|
|
|
})
|
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,
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
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",
|
2017-05-17 17:57:14 +02:00
|
|
|
burntime = 22,
|
|
|
|
})
|
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",
|
2017-05-17 17:57:14 +02:00
|
|
|
burntime = 25,
|
|
|
|
})
|
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",
|
2017-05-17 17:57:14 +02:00
|
|
|
burntime = 32,
|
|
|
|
})
|
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",
|
2017-05-17 17:57:14 +02:00
|
|
|
burntime = 20,
|
|
|
|
})
|
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",
|
2017-05-17 17:57:14 +02:00
|
|
|
burntime = 180,
|
|
|
|
})
|
2015-09-24 19:59:16 +02:00
|
|
|
|
2017-05-10 20:01:02 +02:00
|
|
|
default.log("crafting", "loaded")
|