2017-02-26 18:44:48 +01:00
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:pick_wood",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
|
|
|
{"", "mcl_core:stick", ""},
|
|
|
|
{"", "mcl_core:stick", ""},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:pick_stone",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:cobble", "mcl_core:cobble", "mcl_core:cobble"},
|
|
|
|
{"", "mcl_core:stick", ""},
|
|
|
|
{"", "mcl_core:stick", ""},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:pick_iron",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:iron_ingot", "mcl_core:iron_ingot", "mcl_core:iron_ingot"},
|
|
|
|
{"", "mcl_core:stick", ""},
|
|
|
|
{"", "mcl_core:stick", ""},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:pick_gold",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:gold_ingot", "mcl_core:gold_ingot", "mcl_core:gold_ingot"},
|
|
|
|
{"", "mcl_core:stick", ""},
|
|
|
|
{"", "mcl_core:stick", ""},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:pick_diamond",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:diamond", "mcl_core:diamond", "mcl_core:diamond"},
|
|
|
|
{"", "mcl_core:stick", ""},
|
|
|
|
{"", "mcl_core:stick", ""},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:shovel_wood",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"group:wood"},
|
|
|
|
{"mcl_core:stick"},
|
|
|
|
{"mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:shovel_stone",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:cobble"},
|
|
|
|
{"mcl_core:stick"},
|
|
|
|
{"mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:shovel_iron",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:iron_ingot"},
|
|
|
|
{"mcl_core:stick"},
|
|
|
|
{"mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:shovel_gold",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:gold_ingot"},
|
|
|
|
{"mcl_core:stick"},
|
|
|
|
{"mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:shovel_diamond",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:diamond"},
|
|
|
|
{"mcl_core:stick"},
|
|
|
|
{"mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:axe_wood",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"group:wood", "group:wood"},
|
|
|
|
{"group:wood", "mcl_core:stick"},
|
|
|
|
{"", "mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:axe_wood",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"group:wood", "group:wood"},
|
|
|
|
{"mcl_core:stick", "group:wood"},
|
|
|
|
{"mcl_core:stick", ""},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:axe_stone",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:cobble", "mcl_core:cobble"},
|
|
|
|
{"mcl_core:cobble", "mcl_core:stick"},
|
|
|
|
{"", "mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:axe_stone",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:cobble", "mcl_core:cobble"},
|
|
|
|
{"mcl_core:stick", "mcl_core:cobble"},
|
|
|
|
{"mcl_core:stick", ""},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:axe_iron",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:iron_ingot", "mcl_core:iron_ingot"},
|
|
|
|
{"mcl_core:iron_ingot", "mcl_core:stick"},
|
|
|
|
{"", "mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:axe_iron",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:iron_ingot", "mcl_core:iron_ingot"},
|
|
|
|
{"mcl_core:stick", "mcl_core:iron_ingot"},
|
|
|
|
{"mcl_core:stick", ""},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:axe_gold",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:gold_ingot", "mcl_core:gold_ingot"},
|
|
|
|
{"mcl_core:gold_ingot", "mcl_core:stick"},
|
|
|
|
{"", "mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:axe_gold",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:gold_ingot", "mcl_core:gold_ingot"},
|
|
|
|
{"mcl_core:stick", "mcl_core:gold_ingot"},
|
|
|
|
{"mcl_core:stick", ""},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:axe_diamond",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:diamond", "mcl_core:diamond"},
|
|
|
|
{"mcl_core:diamond", "mcl_core:stick"},
|
|
|
|
{"", "mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:axe_diamond",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:diamond", "mcl_core:diamond"},
|
|
|
|
{"mcl_core:stick", "mcl_core:diamond"},
|
|
|
|
{"mcl_core:stick", ""},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:sword_wood",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"group:wood"},
|
|
|
|
{"group:wood"},
|
|
|
|
{"mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:sword_stone",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:cobble"},
|
|
|
|
{"mcl_core:cobble"},
|
|
|
|
{"mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:sword_iron",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:iron_ingot"},
|
|
|
|
{"mcl_core:iron_ingot"},
|
|
|
|
{"mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:sword_gold",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:gold_ingot"},
|
|
|
|
{"mcl_core:gold_ingot"},
|
|
|
|
{"mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:sword_diamond",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{"mcl_core:diamond"},
|
|
|
|
{"mcl_core:diamond"},
|
|
|
|
{"mcl_core:stick"},
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:shears",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{ "mcl_core:iron_ingot", "" },
|
|
|
|
{ "", "mcl_core:iron_ingot", },
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
2021-05-29 16:12:33 +02:00
|
|
|
output = "mcl_tools:shears",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = {
|
2021-05-29 16:12:33 +02:00
|
|
|
{ "", "mcl_core:iron_ingot" },
|
|
|
|
{ "mcl_core:iron_ingot", "" },
|
2017-02-26 18:44:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "mcl_tools:pick_wood",
|
|
|
|
burntime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "mcl_tools:shovel_wood",
|
|
|
|
burntime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "mcl_tools:sword_wood",
|
|
|
|
burntime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "mcl_tools:axe_wood",
|
|
|
|
burntime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
2017-02-27 20:25:56 +01:00
|
|
|
output = "mcl_core:gold_nugget",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = "mcl_tools:sword_gold",
|
|
|
|
cooktime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
2017-02-27 20:25:56 +01:00
|
|
|
output = "mcl_core:gold_nugget",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = "mcl_tools:axe_gold",
|
|
|
|
cooktime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
2017-02-27 20:25:56 +01:00
|
|
|
output = "mcl_core:gold_nugget",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = "mcl_tools:shovel_gold",
|
|
|
|
cooktime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
2017-02-27 20:25:56 +01:00
|
|
|
output = "mcl_core:gold_nugget",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = "mcl_tools:pick_gold",
|
|
|
|
cooktime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
2017-02-27 20:25:56 +01:00
|
|
|
output = "mcl_core:iron_nugget",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = "mcl_tools:sword_iron",
|
|
|
|
cooktime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
2017-02-27 20:25:56 +01:00
|
|
|
output = "mcl_core:iron_nugget",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = "mcl_tools:axe_iron",
|
|
|
|
cooktime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
2017-02-27 20:25:56 +01:00
|
|
|
output = "mcl_core:iron_nugget",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = "mcl_tools:shovel_iron",
|
|
|
|
cooktime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
2017-02-27 20:25:56 +01:00
|
|
|
output = "mcl_core:iron_nugget",
|
2017-02-26 18:44:48 +01:00
|
|
|
recipe = "mcl_tools:pick_iron",
|
|
|
|
cooktime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "mcl_tools:pick_wood",
|
|
|
|
burntime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "mcl_tools:shovel_wood",
|
|
|
|
burntime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "mcl_tools:sword_wood",
|
|
|
|
burntime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "mcl_tools:axe_wood",
|
|
|
|
burntime = 10,
|
|
|
|
})
|