2015-01-12 00:21:33 +03:00
|
|
|
--[[
|
2015-01-12 19:46:22 +03:00
|
|
|
More Blocks: crafting recipes
|
2015-01-12 00:21:33 +03:00
|
|
|
|
2020-01-01 06:09:24 +03:00
|
|
|
Copyright © 2011-2020 Hugo Locurcio and contributors.
|
2015-01-12 00:21:33 +03:00
|
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
|
|
--]]
|
2013-07-11 22:33:02 +04:00
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "default:stick",
|
2014-04-30 21:50:59 +04:00
|
|
|
recipe = {{"default:dry_shrub"},}
|
2013-07-11 22:33:02 +04:00
|
|
|
})
|
|
|
|
|
2014-04-30 22:04:26 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "default:stick",
|
2016-12-05 11:50:16 +03:00
|
|
|
recipe = {{"group:sapling"},}
|
2014-04-30 22:04:26 +04:00
|
|
|
})
|
|
|
|
|
2014-04-30 22:16:42 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "default:wood",
|
2014-04-30 22:16:42 +04:00
|
|
|
recipe = {
|
|
|
|
{"default:stick", "default:stick"},
|
|
|
|
{"default:stick", "default:stick"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2013-07-11 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "default:dirt_with_grass",
|
2014-04-30 21:50:59 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:junglegrass", "default:dirt"},
|
2013-07-11 22:33:02 +04:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "default:mossycobble",
|
2014-04-30 21:50:59 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:junglegrass", "default:cobble"},
|
2013-07-11 22:33:02 +04:00
|
|
|
})
|
|
|
|
|
2018-10-05 20:46:55 +03:00
|
|
|
minetest.register_craft({
|
2019-05-22 10:39:06 +03:00
|
|
|
output = "moreblocks:wood_tile 9",
|
2018-10-05 20:46:55 +03:00
|
|
|
recipe = {
|
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
2019-05-22 10:39:06 +03:00
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
2018-10-05 20:46:55 +03:00
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-05-22 10:39:06 +03:00
|
|
|
-- This must be registered after `moreblocks:wood_tile` to avoid recipe conflicts,
|
|
|
|
-- since `moreblocks:wood_tile` is part of `group:wood`
|
2013-07-11 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2019-05-22 10:39:06 +03:00
|
|
|
output = "moreblocks:wood_tile_center 9",
|
2013-07-11 22:33:02 +04:00
|
|
|
recipe = {
|
2016-12-05 11:50:16 +03:00
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
2019-05-22 10:39:06 +03:00
|
|
|
{"group:wood", "moreblocks:wood_tile", "group:wood"},
|
2016-12-05 11:50:16 +03:00
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
2013-07-11 22:33:02 +04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-12-30 02:53:52 +03:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "moreblocks:wood_tile",
|
|
|
|
recipe = {"moreblocks:wood_tile_flipped"}
|
|
|
|
})
|
|
|
|
|
2013-07-11 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2013-11-20 23:09:50 +04:00
|
|
|
output = "moreblocks:wood_tile_full 4",
|
2013-07-11 22:33:02 +04:00
|
|
|
recipe = {
|
2013-11-20 23:09:50 +04:00
|
|
|
{"moreblocks:wood_tile", "moreblocks:wood_tile"},
|
|
|
|
{"moreblocks:wood_tile", "moreblocks:wood_tile"},
|
2013-07-11 22:33:02 +04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2017-12-30 02:53:52 +03:00
|
|
|
output = "moreblocks:wood_tile_offset",
|
2013-07-11 22:33:02 +04:00
|
|
|
recipe = {
|
|
|
|
{"default:stick"},
|
2013-11-20 23:09:50 +04:00
|
|
|
{"moreblocks:wood_tile_center"},
|
2013-07-11 22:33:02 +04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-12-30 02:53:52 +03: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 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2018-02-17 23:08:08 +03:00
|
|
|
output = "moreblocks:circle_stone_bricks 5",
|
2013-07-11 22:33:02 +04:00
|
|
|
recipe = {
|
2018-02-17 23:08:08 +03:00
|
|
|
{"", "default:stone", ""},
|
|
|
|
{"default:stone", "default:coal_lump", "default:stone"},
|
|
|
|
{"", "default:stone", ""},
|
2013-07-11 22:33:02 +04: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 23:27:37 +03: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 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2014-05-05 23:33:24 +04:00
|
|
|
output = "moreblocks:sweeper 4",
|
2013-07-11 22:33:02 +04:00
|
|
|
recipe = {
|
|
|
|
{"default:junglegrass"},
|
|
|
|
{"default:stick"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2018-02-17 23:08:08 +03:00
|
|
|
output = "moreblocks:stone_tile 9",
|
2013-07-11 22:33:02 +04:00
|
|
|
recipe = {
|
2018-02-17 23:08:08 +03:00
|
|
|
{"default:cobble", "default:cobble", "default:cobble"},
|
|
|
|
{"default:cobble", "default:stone", "default:cobble"},
|
|
|
|
{"default:cobble", "default:cobble", "default:cobble"},
|
2013-07-11 22:33:02 +04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-05 23:33:24 +04:00
|
|
|
output = "moreblocks:split_stone_tile",
|
2013-07-11 22:33:02 +04:00
|
|
|
recipe = {
|
|
|
|
{"moreblocks:stone_tile"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2014-06-27 22:14:08 +04:00
|
|
|
minetest.register_craft({
|
2017-12-30 18:30:40 +03:00
|
|
|
output = "moreblocks:checker_stone_tile",
|
2014-06-27 22:14:08 +04:00
|
|
|
recipe = {
|
|
|
|
{"moreblocks:split_stone_tile"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2016-12-06 01:15:34 +03:00
|
|
|
-- When approaching the below craft, loop back to cobblestone, which can then be used to craft stone tiles again
|
2016-12-06 00:56:48 +03:00
|
|
|
minetest.register_craft({
|
2016-12-06 01:15:34 +03:00
|
|
|
output = "default:cobble",
|
2016-12-06 00:56:48 +03:00
|
|
|
recipe = {
|
2017-12-30 18:30:40 +03:00
|
|
|
{"moreblocks:checker_stone_tile"},
|
2016-12-06 00:56:48 +03:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2014-06-27 22:14:08 +04:00
|
|
|
minetest.register_craft({
|
2014-06-28 22:44:04 +04:00
|
|
|
output = "moreblocks:grey_bricks 2",
|
2014-06-27 22:14:08 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:stone", "default:brick"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-06-28 22:44:04 +04:00
|
|
|
output = "moreblocks:grey_bricks 2",
|
2014-06-27 22:14:08 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:stonebrick", "default:brick"},
|
|
|
|
})
|
|
|
|
|
2013-07-11 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2016-12-06 01:15:34 +03:00
|
|
|
output = "moreblocks:empty_shelf",
|
2014-04-30 21:50:59 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"moreblocks:sweeper", "default:bookshelf"},
|
2016-12-03 20:53:07 +03:00
|
|
|
replacements = {{"default:bookshelf", "default:book 3"}},
|
2016-12-06 01:15:34 +03:00
|
|
|
-- When obtaining an empty shelf, return the books used in it as well
|
2013-07-11 22:33:02 +04:00
|
|
|
})
|
|
|
|
|
2016-12-06 00:56:48 +03:00
|
|
|
minetest.register_craft({
|
2016-12-06 01:15:34 +03:00
|
|
|
output = "moreblocks:empty_shelf",
|
2016-12-06 00:56:48 +03:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"moreblocks:sweeper", "vessels:shelf"},
|
2017-12-29 09:06:35 +03:00
|
|
|
replacements = {{"vessels:shelf", "vessels:glass_bottle 3"}},
|
2016-12-06 00:56:48 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "default:bookshelf",
|
2016-12-06 01:15:34 +03:00
|
|
|
recipe = {"moreblocks:empty_shelf", "default:book", "default:book", "default:book"},
|
2016-12-06 00:56:48 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2016-12-06 01:15:34 +03:00
|
|
|
output = "moreblocks:empty_shelf",
|
2016-12-06 00:56:48 +03:00
|
|
|
recipe = {
|
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
|
|
|
{"", "", ""},
|
|
|
|
{"group:wood", "group:wood", "group:wood"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2013-11-03 03:41:08 +04:00
|
|
|
minetest.register_craft({
|
2014-05-05 23:33:24 +04:00
|
|
|
output = "moreblocks:coal_stone_bricks 4",
|
2013-11-03 03:41:08 +04:00
|
|
|
recipe = {
|
|
|
|
{"moreblocks:coal_stone", "moreblocks:coal_stone"},
|
|
|
|
{"moreblocks:coal_stone", "moreblocks:coal_stone"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2013-07-11 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2014-05-05 23:33:24 +04:00
|
|
|
output = "moreblocks:iron_stone_bricks 4",
|
2013-11-03 03:41:08 +04:00
|
|
|
recipe = {
|
|
|
|
{"moreblocks:iron_stone", "moreblocks:iron_stone"},
|
|
|
|
{"moreblocks:iron_stone", "moreblocks:iron_stone"},
|
|
|
|
}
|
2013-07-11 22:33:02 +04:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:plankstone 4",
|
|
|
|
recipe = {
|
2016-12-05 11:50:16 +03:00
|
|
|
{"group:stone", "group:wood"},
|
|
|
|
{"group:wood", "group:stone"},
|
2013-07-11 22:33:02 +04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:plankstone 4",
|
|
|
|
recipe = {
|
2016-12-05 11:50:16 +03:00
|
|
|
{"group:wood", "group:stone"},
|
|
|
|
{"group:stone", "group:wood"},
|
2013-07-11 22:33:02 +04: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 11:26:57 +04:00
|
|
|
output = "default:chest_locked",
|
2013-07-11 22:33:02 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:steel_ingot", "default:chest"},
|
|
|
|
})
|
2014-04-30 21:50:59 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "default:chest_locked",
|
2014-04-30 21:50:59 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:copper_ingot", "default:chest"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "default:chest_locked",
|
2014-04-30 21:50:59 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:bronze_ingot", "default:chest"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "default:chest_locked",
|
2014-04-30 21:50:59 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:gold_ingot", "default:chest"},
|
|
|
|
})
|
2013-07-11 22:33:02 +04:00
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:iron_glass",
|
2013-07-11 22:33:02 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:steel_ingot", "default:glass"},
|
|
|
|
})
|
|
|
|
|
2014-04-30 21:50:59 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "default:glass",
|
2014-04-30 21:50:59 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:coal_lump", "moreblocks:iron_glass"},
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2013-07-11 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:coal_glass",
|
2013-07-11 22:33:02 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:coal_lump", "default:glass"},
|
|
|
|
})
|
|
|
|
|
2014-04-30 21:50:59 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "default:glass",
|
2014-04-30 21:50:59 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:steel_ingot", "moreblocks:coal_glass"},
|
|
|
|
})
|
|
|
|
|
2013-07-11 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:clean_glass",
|
2013-07-11 22:33:02 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"moreblocks:sweeper", "default:glass"},
|
|
|
|
})
|
|
|
|
|
2020-12-14 16:44:21 +03:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_clean_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "moreblocks:clean_glass"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_clean_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"moreblocks:sweeper", "moreblocks:trap_glass"},
|
|
|
|
})
|
|
|
|
|
2013-07-11 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:glow_glass",
|
2013-07-11 22:33:02 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:torch", "default:glass"},
|
|
|
|
})
|
|
|
|
|
2020-12-14 16:44:21 +03:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:clean_glow_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:torch", "moreblocks:clean_glass"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:clean_glow_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"moreblocks:sweeper", "moreblocks:glow_glass"},
|
|
|
|
})
|
|
|
|
|
2013-08-30 02:39:15 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:trap_glow_glass",
|
2013-08-30 02:39:15 +04:00
|
|
|
type = "shapeless",
|
2014-04-30 21:50:59 +04:00
|
|
|
recipe = {"default:mese_crystal_fragment", "default:glass", "default:torch"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:trap_glow_glass",
|
2014-04-30 21:50:59 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "moreblocks:glow_glass"},
|
2013-08-30 02:39:15 +04:00
|
|
|
})
|
|
|
|
|
2020-12-14 16:44:21 +03:00
|
|
|
-- several recipes are possible for the trap+clean+glow, we only present 3 of them
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_clean_glow_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "moreblocks:clean_glow_glass"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_clean_glow_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "moreblocks:clean_glass", "default:torch"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_clean_glow_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"moreblocks:sweeper", "moreblocks:trap_glow_glass" },
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2013-07-11 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:super_glow_glass",
|
2013-07-11 22:33:02 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:torch", "default:torch", "default:glass"},
|
|
|
|
})
|
|
|
|
|
2014-04-30 21:50:59 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:super_glow_glass",
|
2014-04-30 21:50:59 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:torch", "moreblocks:glow_glass"},
|
|
|
|
})
|
|
|
|
|
2020-12-14 16:44:21 +03:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:clean_super_glow_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:torch", "default:torch", "moreblocks:clean_glass"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:clean_super_glow_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:torch", "moreblocks:clean_glow_glass"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:clean_super_glow_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"moreblocks:sweeper", "moreblocks:super_glow_glass"},
|
|
|
|
})
|
|
|
|
|
2014-04-30 21:50:59 +04:00
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:trap_super_glow_glass",
|
2014-04-30 21:50:59 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "default:glass", "default:torch", "default:torch"},
|
|
|
|
})
|
|
|
|
|
2013-08-30 02:39:15 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:trap_super_glow_glass",
|
2013-08-30 02:39:15 +04:00
|
|
|
type = "shapeless",
|
2014-04-30 21:50:59 +04:00
|
|
|
recipe = {"default:mese_crystal_fragment", "moreblocks:super_glow_glass"},
|
2013-08-30 02:39:15 +04:00
|
|
|
})
|
|
|
|
|
2020-12-14 16:44:21 +03:00
|
|
|
-- several recipes are possible for the trap+clean+glow, we only present 4 of them
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_clean_super_glow_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "moreblocks:clean_super_glow_glass"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_clean_super_glow_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "moreblocks:clean_glow_glass", "default:torch"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_clean_super_glow_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "moreblocks:clean_glass", "default:torch", "default:torch"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_clean_super_glow_glass",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"moreblocks:sweeper", "moreblocks:trap_super_glow_glass" },
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2013-07-11 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:coal_stone",
|
2013-07-11 22:33:02 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:coal_lump", "default:stone"},
|
|
|
|
})
|
|
|
|
|
2014-04-30 21:50:59 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "default:stone",
|
2014-04-30 21:50:59 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:steel_ingot", "moreblocks:coal_stone"},
|
|
|
|
})
|
|
|
|
|
2013-07-11 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:iron_stone",
|
2013-07-11 22:33:02 +04:00
|
|
|
type = "shapeless",
|
2014-04-30 21:50:59 +04:00
|
|
|
recipe = {"default:steel_ingot", "default:stone"},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "default:stone",
|
2014-04-30 21:50:59 +04:00
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:coal_lump", "moreblocks:iron_stone"},
|
2013-07-11 22:33:02 +04:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:trap_stone",
|
2013-07-11 22:33:02 +04:00
|
|
|
type = "shapeless",
|
2014-04-30 21:50:59 +04:00
|
|
|
recipe = {"default:mese_crystal_fragment", "default:stone"},
|
2013-07-11 22:33:02 +04:00
|
|
|
})
|
|
|
|
|
2017-03-05 00:50:09 +03:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:trap_desert_stone",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {"default:mese_crystal_fragment", "default:desert_stone"},
|
|
|
|
})
|
|
|
|
|
2013-07-11 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:trap_glass",
|
2013-07-11 22:33:02 +04:00
|
|
|
type = "shapeless",
|
2014-04-30 21:50:59 +04:00
|
|
|
recipe = {"default:mese_crystal_fragment", "default:glass"},
|
2013-07-11 22:33:02 +04:00
|
|
|
})
|
|
|
|
|
2017-03-05 00:50:09 +03: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 22:33:02 +04:00
|
|
|
minetest.register_craft({
|
2014-05-11 11:26:57 +04:00
|
|
|
output = "moreblocks:cactus_brick",
|
2013-07-11 22:33:02 +04: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({
|
2021-11-01 19:33:05 +03:00
|
|
|
output = "moreblocks:cactus_checker 4",
|
2013-07-11 22:33:02 +04:00
|
|
|
recipe = {
|
|
|
|
{"default:stone", "default:cactus"},
|
|
|
|
{"default:cactus", "default:stone"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2014-04-30 21:50:59 +04:00
|
|
|
output = "moreblocks:rope 3",
|
2013-07-11 22:33:02 +04: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 03:10:25 +03: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 12:33:57 +03: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"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-06-07 15:25:19 +03:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:desert_cobble_compressed",
|
|
|
|
recipe = {
|
|
|
|
{"default:desert_cobble", "default:desert_cobble", "default:desert_cobble"},
|
|
|
|
{"default:desert_cobble", "default:desert_cobble", "default:desert_cobble"},
|
|
|
|
{"default:desert_cobble", "default:desert_cobble", "default:desert_cobble"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "default:desert_cobble 9",
|
|
|
|
recipe = {
|
|
|
|
{"moreblocks:desert_cobble_compressed"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-12-29 22:30:05 +03:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking", output = "moreblocks:tar", recipe = "default:pine_tree",
|
|
|
|
})
|
|
|
|
|
2016-05-19 01:02:28 +03:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "moreblocks:copperpatina",
|
2016-12-05 11:50:16 +03:00
|
|
|
recipe = {"group:water_bucket", "default:copperblock"},
|
2016-05-19 01:02:28 +03:00
|
|
|
replacements = {
|
2016-12-05 11:50:16 +03:00
|
|
|
{"group:water_bucket", "bucket:bucket_empty"}
|
2016-05-19 01:02:28 +03:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "default:copper_ingot 9",
|
|
|
|
recipe = {
|
|
|
|
{"moreblocks:copperpatina"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-05-13 05:12:56 +03:00
|
|
|
if minetest.settings:get_bool("moreblocks.circular_saw_crafting") ~= false then -- “If nil or true then”
|
2015-02-22 22:01:23 +03:00
|
|
|
minetest.register_craft({
|
2016-12-16 01:56:45 +03:00
|
|
|
output = "moreblocks:circular_saw",
|
2015-02-22 22:01:23 +03:00
|
|
|
recipe = {
|
|
|
|
{ "", "default:steel_ingot", "" },
|
|
|
|
{ "group:wood", "group:wood", "group:wood"},
|
|
|
|
{ "group:wood", "", "group:wood"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
end
|
2024-07-04 10:44:52 +03:00
|
|
|
|
|
|
|
-- add gravel
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:gravel_stonebrick 2",
|
|
|
|
recipe = {
|
|
|
|
{ "default:gravel" },
|
|
|
|
{ "default:stonebrick"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:gravel_slope 6",
|
|
|
|
recipe = {
|
|
|
|
{ "","","" },
|
|
|
|
{ "","","default:gravel", },
|
|
|
|
{ "", "default:gravel", "default:gravel" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:gravel_slope_2a 12",
|
|
|
|
recipe = {
|
|
|
|
{ "","","" },
|
|
|
|
{ "","","", },
|
|
|
|
{ "", "default:gravel", "default:gravel" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:gravel_slope_2b 4",
|
|
|
|
recipe = {
|
|
|
|
{ "","","default:gravel", },
|
|
|
|
{ "","","" },
|
|
|
|
{ "", "default:gravel", "default:gravel" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:gravel_slope_3a 18",
|
|
|
|
recipe = {
|
|
|
|
{ "","","" },
|
|
|
|
{ "","","", },
|
|
|
|
{ "default:gravel", "default:gravel", "default:gravel" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:gravel_slope_3b 8",
|
|
|
|
recipe = {
|
|
|
|
{ "","","" },
|
|
|
|
{ "","","default:gravel", },
|
|
|
|
{ "default:gravel", "default:gravel", "default:gravel" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:gravel_slope_3c 8",
|
|
|
|
recipe = {
|
|
|
|
{ "","","default:gravel", },
|
|
|
|
{ "","default:gravel","" },
|
|
|
|
{ "default:gravel", "default:gravel", "default:gravel" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
-- End gravel slope
|
|
|
|
|
|
|
|
-- Песок начало sand --
|
2024-07-04 13:10:51 +03:00
|
|
|
-- 45 градусов
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:sand_slope 6",
|
|
|
|
recipe = {
|
|
|
|
{ "","","" },
|
|
|
|
{ "","","default:sand", },
|
|
|
|
{ "", "default:sand", "default:sand" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
-- 45 end --
|
|
|
|
|
|
|
|
-- 2 объекта уклона --
|
2024-07-04 10:44:52 +03:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:sand_slope_2a 12",
|
|
|
|
recipe = {
|
|
|
|
{ "","","" },
|
|
|
|
{ "","","", },
|
|
|
|
{ "", "default:sand", "default:sand" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:sand_slope_2b 4",
|
|
|
|
recipe = {
|
|
|
|
{ "","","default:sand", },
|
|
|
|
{ "","","" },
|
|
|
|
{ "", "default:sand", "default:sand" },
|
|
|
|
}
|
|
|
|
})
|
2024-07-04 13:10:51 +03:00
|
|
|
-- 2 end
|
2024-07-04 10:44:52 +03:00
|
|
|
|
2024-07-04 13:10:51 +03:00
|
|
|
--- 3 объекта уклона --
|
2024-07-04 10:44:52 +03:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:sand_slope_3a 18",
|
|
|
|
recipe = {
|
|
|
|
{ "","","" },
|
|
|
|
{ "","","", },
|
|
|
|
{ "default:sand", "default:sand", "default:sand" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:sand_slope_3b 8",
|
|
|
|
recipe = {
|
|
|
|
{ "","","" },
|
|
|
|
{ "","","default:sand", },
|
|
|
|
{ "default:sand", "default:sand", "default:sand" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:sand_slope_3c 8",
|
|
|
|
recipe = {
|
|
|
|
{ "","","default:sand", },
|
|
|
|
{ "","default:sand","" },
|
|
|
|
{ "default:sand", "default:sand", "default:sand" },
|
|
|
|
}
|
|
|
|
})
|
2024-07-04 13:10:51 +03:00
|
|
|
--- 3 end --
|
|
|
|
|
2024-07-04 10:44:52 +03:00
|
|
|
-- Хвойная земля
|
2024-07-04 13:10:51 +03:00
|
|
|
-- 2 объекта уклона --
|
2024-07-04 10:44:52 +03:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:dirt_with_coniferous_litter_slope_2a 12",
|
|
|
|
recipe = {
|
|
|
|
{ "","","" },
|
|
|
|
{ "","","", },
|
|
|
|
{ "", "default:dirt_with_coniferous_litter", "default:dirt_with_coniferous_litter" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:dirt_with_coniferous_litter_slope_2b 4",
|
|
|
|
recipe = {
|
|
|
|
{ "","","default:dirt_with_coniferous_litter", },
|
|
|
|
{ "","","" },
|
|
|
|
{ "", "default:dirt_with_coniferous_litter", "default:dirt_with_coniferous_litter" },
|
|
|
|
}
|
|
|
|
})
|
2024-07-04 13:10:51 +03:00
|
|
|
-- 2 end
|
2024-07-04 10:44:52 +03:00
|
|
|
|
2024-07-04 13:10:51 +03:00
|
|
|
--- 3 объекта уклона --
|
2024-07-04 10:44:52 +03:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:dirt_with_coniferous_litter_slope_3a 18",
|
|
|
|
recipe = {
|
|
|
|
{ "","","" },
|
|
|
|
{ "","","", },
|
|
|
|
{ "default:dirt_with_coniferous_litter", "default:dirt_with_coniferous_litter", "default:dirt_with_coniferous_litter" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:dirt_with_coniferous_litter_slope_3b 8",
|
|
|
|
recipe = {
|
|
|
|
{ "","","" },
|
|
|
|
{ "","","default:dirt_with_coniferous_litter", },
|
|
|
|
{ "default:dirt_with_coniferous_litter", "default:dirt_with_coniferous_litter", "default:dirt_with_coniferous_litter" },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "moreblocks:dirt_with_coniferous_litter_slope_3c 8",
|
|
|
|
recipe = {
|
|
|
|
{ "","","default:dirt_with_coniferous_litter", },
|
|
|
|
{ "","default:dirt_with_coniferous_litter","" },
|
|
|
|
{ "default:dirt_with_coniferous_litter", "default:dirt_with_coniferous_litter", "default:dirt_with_coniferous_litter" },
|
|
|
|
}
|
|
|
|
})
|
2024-07-04 13:10:51 +03:00
|
|
|
--- 3 end
|
2024-07-04 10:44:52 +03:00
|
|
|
|
2024-07-04 13:10:51 +03:00
|
|
|
-- Песок конец sand и хвоя ----
|
2024-07-04 10:44:52 +03:00
|
|
|
|