2015-01-11 22:21:33 +01:00
|
|
|
--[[
|
2015-01-12 17:46:22 +01:00
|
|
|
More Blocks: crafting recipes
|
2015-01-11 22:21:33 +01:00
|
|
|
|
2018-11-24 17:36:04 +01:00
|
|
|
Copyright (c) 2011-2018 Hugo Locurcio and contributors.
|
2015-01-11 22:21:33 +01:00
|
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
|
|
--]]
|
2013-07-11 20:33:02 +02:00
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "default:stick",
|
2014-04-30 19:50:59 +02:00
|
|
|
recipe = {{"default:dry_shrub"},}
|
2013-07-11 20:33:02 +02:00
|
|
|
})
|
|
|
|
|
2014-04-30 20:04:26 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "default:stick",
|
2016-12-05 09:50:16 +01:00
|
|
|
recipe = {{"group:sapling"},}
|
2014-04-30 20:04:26 +02:00
|
|
|
})
|
|
|
|
|
2014-04-30 20:16:42 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "default:wood",
|
2014-04-30 20:16:42 +02:00
|
|
|
recipe = {
|
|
|
|
{"default:stick", "default:stick"},
|
|
|
|
{"default:stick", "default:stick"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "default:dirt_with_grass",
|
2014-04-30 19:50:59 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:junglegrass", "default:dirt"},
|
2013-07-11 20:33:02 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "default:mossycobble",
|
2014-04-30 19:50:59 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:junglegrass", "default:cobble"},
|
2013-07-11 20:33:02 +02:00
|
|
|
})
|
|
|
|
|
2018-10-05 19:46:55 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:wood_tile_center 9",
|
|
|
|
recipe = {
|
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
|
|
|
{"group:wood", "moreblocks:wood_tile", "group:wood"},
|
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2013-11-20 20:09:50 +01:00
|
|
|
output = "moreblocks:wood_tile 9",
|
2013-07-11 20:33:02 +02:00
|
|
|
recipe = {
|
2016-12-05 09:50:16 +01:00
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
2013-07-11 20:33:02 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-12-30 00:53:52 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "moreblocks:wood_tile",
|
|
|
|
recipe = {"moreblocks:wood_tile_flipped"}
|
|
|
|
})
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2013-11-20 20:09:50 +01:00
|
|
|
output = "moreblocks:wood_tile_full 4",
|
2013-07-11 20:33:02 +02:00
|
|
|
recipe = {
|
2013-11-20 20:09:50 +01:00
|
|
|
{"moreblocks:wood_tile", "moreblocks:wood_tile"},
|
|
|
|
{"moreblocks:wood_tile", "moreblocks:wood_tile"},
|
2013-07-11 20:33:02 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2017-12-30 00:53:52 +01:00
|
|
|
output = "moreblocks:wood_tile_offset",
|
2013-07-11 20:33:02 +02:00
|
|
|
recipe = {
|
|
|
|
{"default:stick"},
|
2013-11-20 20:09:50 +01:00
|
|
|
{"moreblocks:wood_tile_center"},
|
2013-07-11 20:33:02 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-12-30 00:53:52 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "moreblocks:wood_tile_offset",
|
|
|
|
recipe = {"moreblocks:wood_tile_down"}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "moreblocks:wood_tile_offset",
|
|
|
|
recipe = {"moreblocks:wood_tile_left"}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "moreblocks:wood_tile_offset",
|
|
|
|
recipe = {"moreblocks:wood_tile_right"}
|
|
|
|
})
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2018-02-17 21:08:08 +01:00
|
|
|
output = "moreblocks:circle_stone_bricks 5",
|
2013-07-11 20:33:02 +02:00
|
|
|
recipe = {
|
2018-02-17 21:08:08 +01:00
|
|
|
{"", "default:stone", ""},
|
|
|
|
{"default:stone", "default:coal_lump", "default:stone"},
|
|
|
|
{"", "default:stone", ""},
|
2013-07-11 20:33:02 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:all_faces_tree 8",
|
|
|
|
recipe = {
|
|
|
|
{"default:tree", "default:tree", "default:tree"},
|
|
|
|
{"default:tree", "", "default:tree"},
|
|
|
|
{"default:tree", "default:tree", "default:tree"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:all_faces_jungle_tree 8",
|
|
|
|
recipe = {
|
|
|
|
{"default:jungletree", "default:jungletree", "default:jungletree"},
|
|
|
|
{"default:jungletree", "", "default:jungletree"},
|
|
|
|
{"default:jungletree", "default:jungletree", "default:jungletree"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2016-12-05 21:27:37 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:all_faces_pine_tree 8",
|
|
|
|
recipe = {
|
|
|
|
{"default:pine_tree", "default:pine_tree", "default:pine_tree"},
|
|
|
|
{"default:pine_tree", "", "default:pine_tree"},
|
|
|
|
{"default:pine_tree", "default:pine_tree", "default:pine_tree"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:all_faces_acacia_tree 8",
|
|
|
|
recipe = {
|
|
|
|
{"default:acacia_tree", "default:acacia_tree", "default:acacia_tree"},
|
|
|
|
{"default:acacia_tree", "", "default:acacia_tree"},
|
|
|
|
{"default:acacia_tree", "default:acacia_tree", "default:acacia_tree"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:all_faces_aspen_tree 8",
|
|
|
|
recipe = {
|
|
|
|
{"default:aspen_tree", "default:aspen_tree", "default:aspen_tree"},
|
|
|
|
{"default:aspen_tree", "", "default:aspen_tree"},
|
|
|
|
{"default:aspen_tree", "default:aspen_tree", "default:aspen_tree"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2014-05-05 21:33:24 +02:00
|
|
|
output = "moreblocks:sweeper 4",
|
2013-07-11 20:33:02 +02:00
|
|
|
recipe = {
|
|
|
|
{"default:junglegrass"},
|
|
|
|
{"default:stick"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2018-02-17 21:08:08 +01:00
|
|
|
output = "moreblocks:stone_tile 9",
|
2013-07-11 20:33:02 +02:00
|
|
|
recipe = {
|
2018-02-17 21:08:08 +01:00
|
|
|
{"default:cobble", "default:cobble", "default:cobble"},
|
|
|
|
{"default:cobble", "default:stone", "default:cobble"},
|
|
|
|
{"default:cobble", "default:cobble", "default:cobble"},
|
2013-07-11 20:33:02 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-05 21:33:24 +02:00
|
|
|
output = "moreblocks:split_stone_tile",
|
2013-07-11 20:33:02 +02:00
|
|
|
recipe = {
|
|
|
|
{"moreblocks:stone_tile"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2014-06-27 20:14:08 +02:00
|
|
|
minetest.register_craft({
|
2017-12-30 16:30:40 +01:00
|
|
|
output = "moreblocks:checker_stone_tile",
|
2014-06-27 20:14:08 +02:00
|
|
|
recipe = {
|
|
|
|
{"moreblocks:split_stone_tile"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2016-12-05 23:15:34 +01:00
|
|
|
-- When approaching the below craft, loop back to cobblestone, which can then be used to craft stone tiles again
|
2016-12-05 22:56:48 +01:00
|
|
|
minetest.register_craft({
|
2016-12-05 23:15:34 +01:00
|
|
|
output = "default:cobble",
|
2016-12-05 22:56:48 +01:00
|
|
|
recipe = {
|
2017-12-30 16:30:40 +01:00
|
|
|
{"moreblocks:checker_stone_tile"},
|
2016-12-05 22:56:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2014-06-27 20:14:08 +02:00
|
|
|
minetest.register_craft({
|
2014-06-28 20:44:04 +02:00
|
|
|
output = "moreblocks:grey_bricks 2",
|
2014-06-27 20:14:08 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:stone", "default:brick"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-06-28 20:44:04 +02:00
|
|
|
output = "moreblocks:grey_bricks 2",
|
2014-06-27 20:14:08 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:stonebrick", "default:brick"},
|
|
|
|
})
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2016-12-05 23:15:34 +01:00
|
|
|
output = "moreblocks:empty_shelf",
|
2014-04-30 19:50:59 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"moreblocks:sweeper", "default:bookshelf"},
|
2016-12-03 18:53:07 +01:00
|
|
|
replacements = {{"default:bookshelf", "default:book 3"}},
|
2016-12-05 23:15:34 +01:00
|
|
|
-- When obtaining an empty shelf, return the books used in it as well
|
2013-07-11 20:33:02 +02:00
|
|
|
})
|
|
|
|
|
2016-12-05 22:56:48 +01:00
|
|
|
minetest.register_craft({
|
2016-12-05 23:15:34 +01:00
|
|
|
output = "moreblocks:empty_shelf",
|
2016-12-05 22:56:48 +01:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"moreblocks:sweeper", "vessels:shelf"},
|
2017-12-29 07:06:35 +01:00
|
|
|
replacements = {{"vessels:shelf", "vessels:glass_bottle 3"}},
|
2016-12-05 22:56:48 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "default:bookshelf",
|
2016-12-05 23:15:34 +01:00
|
|
|
recipe = {"moreblocks:empty_shelf", "default:book", "default:book", "default:book"},
|
2016-12-05 22:56:48 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2016-12-05 23:15:34 +01:00
|
|
|
output = "moreblocks:empty_shelf",
|
2016-12-05 22:56:48 +01:00
|
|
|
recipe = {
|
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
|
|
|
{"", "", ""},
|
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2013-11-03 00:41:08 +01:00
|
|
|
minetest.register_craft({
|
2014-05-05 21:33:24 +02:00
|
|
|
output = "moreblocks:coal_stone_bricks 4",
|
2013-11-03 00:41:08 +01:00
|
|
|
recipe = {
|
|
|
|
{"moreblocks:coal_stone", "moreblocks:coal_stone"},
|
|
|
|
{"moreblocks:coal_stone", "moreblocks:coal_stone"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2014-05-05 21:33:24 +02:00
|
|
|
output = "moreblocks:iron_stone_bricks 4",
|
2013-11-03 00:41:08 +01:00
|
|
|
recipe = {
|
|
|
|
{"moreblocks:iron_stone", "moreblocks:iron_stone"},
|
|
|
|
{"moreblocks:iron_stone", "moreblocks:iron_stone"},
|
|
|
|
}
|
2013-07-11 20:33:02 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:plankstone 4",
|
|
|
|
recipe = {
|
2016-12-05 09:50:16 +01:00
|
|
|
{"group:stone", "group:wood"},
|
|
|
|
{"group:wood", "group:stone"},
|
2013-07-11 20:33:02 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:plankstone 4",
|
|
|
|
recipe = {
|
2016-12-05 09:50:16 +01:00
|
|
|
{"group:wood", "group:stone"},
|
|
|
|
{"group:stone", "group:wood"},
|
2013-07-11 20:33:02 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:coal_checker 4",
|
|
|
|
recipe = {
|
|
|
|
{"default:stone", "default:coal_lump"},
|
|
|
|
{"default:coal_lump", "default:stone"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:coal_checker 4",
|
|
|
|
recipe = {
|
|
|
|
{"default:coal_lump", "default:stone"},
|
|
|
|
{"default:stone", "default:coal_lump"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:iron_checker 4",
|
|
|
|
recipe = {
|
|
|
|
{"default:steel_ingot", "default:stone"},
|
|
|
|
{"default:stone", "default:steel_ingot"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:iron_checker 4",
|
|
|
|
recipe = {
|
|
|
|
{"default:stone", "default:steel_ingot"},
|
|
|
|
{"default:steel_ingot", "default:stone"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "default:chest_locked",
|
2013-07-11 20:33:02 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:steel_ingot", "default:chest"},
|
|
|
|
})
|
2014-04-30 19:50:59 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "default:chest_locked",
|
2014-04-30 19:50:59 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:copper_ingot", "default:chest"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "default:chest_locked",
|
2014-04-30 19:50:59 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:bronze_ingot", "default:chest"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "default:chest_locked",
|
2014-04-30 19:50:59 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:gold_ingot", "default:chest"},
|
|
|
|
})
|
2013-07-11 20:33:02 +02:00
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:iron_glass",
|
2013-07-11 20:33:02 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:steel_ingot", "default:glass"},
|
|
|
|
})
|
|
|
|
|
2014-04-30 19:50:59 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "default:glass",
|
2014-04-30 19:50:59 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:coal_lump", "moreblocks:iron_glass"},
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:coal_glass",
|
2013-07-11 20:33:02 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:coal_lump", "default:glass"},
|
|
|
|
})
|
|
|
|
|
2014-04-30 19:50:59 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "default:glass",
|
2014-04-30 19:50:59 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:steel_ingot", "moreblocks:coal_glass"},
|
|
|
|
})
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:clean_glass",
|
2013-07-11 20:33:02 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"moreblocks:sweeper", "default:glass"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:glow_glass",
|
2013-07-11 20:33:02 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:torch", "default:glass"},
|
|
|
|
})
|
|
|
|
|
2013-08-30 00:39:15 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:trap_glow_glass",
|
2013-08-30 00:39:15 +02:00
|
|
|
type = "shapeless",
|
2014-04-30 19:50:59 +02:00
|
|
|
recipe = {"default:mese_crystal_fragment", "default:glass", "default:torch"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:trap_glow_glass",
|
2014-04-30 19:50:59 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "moreblocks:glow_glass"},
|
2013-08-30 00:39:15 +02:00
|
|
|
})
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:super_glow_glass",
|
2013-07-11 20:33:02 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:torch", "default:torch", "default:glass"},
|
|
|
|
})
|
|
|
|
|
2014-04-30 19:50:59 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:super_glow_glass",
|
2014-04-30 19:50:59 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:torch", "moreblocks:glow_glass"},
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:trap_super_glow_glass",
|
2014-04-30 19:50:59 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "default:glass", "default:torch", "default:torch"},
|
|
|
|
})
|
|
|
|
|
2013-08-30 00:39:15 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:trap_super_glow_glass",
|
2013-08-30 00:39:15 +02:00
|
|
|
type = "shapeless",
|
2014-04-30 19:50:59 +02:00
|
|
|
recipe = {"default:mese_crystal_fragment", "moreblocks:super_glow_glass"},
|
2013-08-30 00:39:15 +02:00
|
|
|
})
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:coal_stone",
|
2013-07-11 20:33:02 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:coal_lump", "default:stone"},
|
|
|
|
})
|
|
|
|
|
2014-04-30 19:50:59 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "default:stone",
|
2014-04-30 19:50:59 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:steel_ingot", "moreblocks:coal_stone"},
|
|
|
|
})
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:iron_stone",
|
2013-07-11 20:33:02 +02:00
|
|
|
type = "shapeless",
|
2014-04-30 19:50:59 +02:00
|
|
|
recipe = {"default:steel_ingot", "default:stone"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "default:stone",
|
2014-04-30 19:50:59 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:coal_lump", "moreblocks:iron_stone"},
|
2013-07-11 20:33:02 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:trap_stone",
|
2013-07-11 20:33:02 +02:00
|
|
|
type = "shapeless",
|
2014-04-30 19:50:59 +02:00
|
|
|
recipe = {"default:mese_crystal_fragment", "default:stone"},
|
2013-07-11 20:33:02 +02:00
|
|
|
})
|
|
|
|
|
2017-03-04 22:50:09 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_desert_stone",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "default:desert_stone"},
|
|
|
|
})
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:trap_glass",
|
2013-07-11 20:33:02 +02:00
|
|
|
type = "shapeless",
|
2014-04-30 19:50:59 +02:00
|
|
|
recipe = {"default:mese_crystal_fragment", "default:glass"},
|
2013-07-11 20:33:02 +02:00
|
|
|
})
|
|
|
|
|
2017-03-04 22:50:09 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_obsidian_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "default:obsidian_glass"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_obsidian",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "default:obsidian"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_sandstone",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "default:sandstone"},
|
|
|
|
})
|
|
|
|
|
2013-07-11 20:33:02 +02:00
|
|
|
minetest.register_craft({
|
2014-05-11 09:26:57 +02:00
|
|
|
output = "moreblocks:cactus_brick",
|
2013-07-11 20:33:02 +02:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:cactus", "default:brick"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:cactus_checker 4",
|
|
|
|
recipe = {
|
|
|
|
{"default:cactus", "default:stone"},
|
|
|
|
{"default:stone", "default:cactus"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:cactuschecker 4",
|
|
|
|
recipe = {
|
|
|
|
{"default:stone", "default:cactus"},
|
|
|
|
{"default:cactus", "default:stone"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-04-30 19:50:59 +02:00
|
|
|
output = "moreblocks:rope 3",
|
2013-07-11 20:33:02 +02:00
|
|
|
recipe = {
|
|
|
|
{"default:junglegrass"},
|
|
|
|
{"default:junglegrass"},
|
|
|
|
{"default:junglegrass"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
Add compressed dirt, remove redundant tar
Tar already exists in building_blocks, and the recipe to cook it comes into conflict with what's in streetsmod, where gravel can be cooked into asphalt. However, the texture for it is retained in case it needs to be derived from again in the future.
Dirt can be collected in as much quanitites as cobblestone can be, so in place of tar is a way to pack dirt when so much of it is collected.
The compressed dirt shares most properities with the compressed cobble, except that can be dug by hand, but digging it takes as long as with gravel. Its texture is a recolor of this mod's tar block.
In addition, a function for dirt sound has been added, and compressed dirt makes use of it.
The new node is inspired in part by a counterpart on the Xanadu server, where there is also a counterpart to compressed cobble.
2016-12-06 01:10:25 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:dirt_compressed",
|
|
|
|
recipe = {
|
|
|
|
{'default:dirt', 'default:dirt', 'default:dirt'},
|
|
|
|
{'default:dirt', 'default:dirt', 'default:dirt'},
|
|
|
|
{'default:dirt', 'default:dirt', 'default:dirt'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "default:dirt 9",
|
|
|
|
recipe = {{"moreblocks:dirt_compressed"}},
|
|
|
|
})
|
|
|
|
|
2014-12-14 10:33:57 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:cobble_compressed",
|
|
|
|
recipe = {
|
|
|
|
{"default:cobble", "default:cobble", "default:cobble"},
|
|
|
|
{"default:cobble", "default:cobble", "default:cobble"},
|
|
|
|
{"default:cobble", "default:cobble", "default:cobble"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "default:cobble 9",
|
|
|
|
recipe = {
|
|
|
|
{"moreblocks:cobble_compressed"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-12-29 20:30:05 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking", output = "moreblocks:tar", recipe = "default:pine_tree",
|
|
|
|
})
|
|
|
|
|
2016-05-19 00:02:28 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "moreblocks:copperpatina",
|
2016-12-05 09:50:16 +01:00
|
|
|
recipe = {"group:water_bucket", "default:copperblock"},
|
2016-05-19 00:02:28 +02:00
|
|
|
replacements = {
|
2016-12-05 09:50:16 +01:00
|
|
|
{"group:water_bucket", "bucket:bucket_empty"}
|
2016-05-19 00:02:28 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "default:copper_ingot 9",
|
|
|
|
recipe = {
|
|
|
|
{"moreblocks:copperpatina"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-05-13 04:12:56 +02:00
|
|
|
if minetest.settings:get_bool("moreblocks.circular_saw_crafting") ~= false then -- “If nil or true then”
|
2015-02-22 20:01:23 +01:00
|
|
|
minetest.register_craft({
|
2016-12-15 23:56:45 +01:00
|
|
|
output = "moreblocks:circular_saw",
|
2015-02-22 20:01:23 +01:00
|
|
|
recipe = {
|
|
|
|
{ "", "default:steel_ingot", "" },
|
|
|
|
{ "group:wood", "group:wood", "group:wood"},
|
|
|
|
{ "group:wood", "", "group:wood"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
end
|