summaryrefslogtreecommitdiff
path: root/technic
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-10-12 07:57:26 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-10-12 07:57:26 -0400
commitef6f6484b05d5b7650bff9a3ecbc7d2d6e6a8d35 (patch)
tree21457e616cdf69fffaa8a50cce15f41750ed8e99 /technic
parent0d094bed13f1700ea2ef1924ecf089c9d96dda83 (diff)
downloaddreambuilder_modpack-ef6f6484b05d5b7650bff9a3ecbc7d2d6e6a8d35.tar
dreambuilder_modpack-ef6f6484b05d5b7650bff9a3ecbc7d2d6e6a8d35.tar.gz
dreambuilder_modpack-ef6f6484b05d5b7650bff9a3ecbc7d2d6e6a8d35.tar.bz2
dreambuilder_modpack-ef6f6484b05d5b7650bff9a3ecbc7d2d6e6a8d35.tar.xz
dreambuilder_modpack-ef6f6484b05d5b7650bff9a3ecbc7d2d6e6a8d35.zip
update bees, coloredwood, digidisplay, farming redo,
moreblocks, technic, travelnet, and unified dyes
Diffstat (limited to 'technic')
-rw-r--r--technic/machines/register/compressor_recipes.lua19
-rw-r--r--technic/machines/register/extractor_recipes.lua20
-rw-r--r--technic/machines/register/grinder_recipes.lua22
3 files changed, 49 insertions, 12 deletions
diff --git a/technic/machines/register/compressor_recipes.lua b/technic/machines/register/compressor_recipes.lua
index a625f1a..acb9eca 100644
--- a/technic/machines/register/compressor_recipes.lua
+++ b/technic/machines/register/compressor_recipes.lua
@@ -11,6 +11,8 @@ end
local recipes = {
{"default:snowblock", "default:ice"},
{"default:sand 2", "default:sandstone"},
+ {"default:desert_sand 2", "default:desert_sandstone"},
+ {"default:silver_sand 2", "default:silver_sandstone"},
{"default:desert_sand", "default:desert_stone"},
{"technic:mixed_metal_ingot", "technic:composite_plate"},
{"default:copper_ingot 5", "technic:copper_plate"},
@@ -21,10 +23,21 @@ local recipes = {
-- defuse the default sandstone recipe, since we have the compressor to take over in a more realistic manner
minetest.clear_craft({
- output = "default:sandstone",
recipe = {
- {'group:sand', 'group:sand'},
- {'group:sand', 'group:sand'}
+ {"default:sand", "default:sand"},
+ {"default:sand", "default:sand"},
+ },
+})
+minetest.clear_craft({
+ recipe = {
+ {"default:desert_sand", "default:desert_sand"},
+ {"default:desert_sand", "default:desert_sand"},
+ },
+})
+minetest.clear_craft({
+ recipe = {
+ {"default:silver_sand", "default:silver_sand"},
+ {"default:silver_sand", "default:silver_sand"},
},
})
diff --git a/technic/machines/register/extractor_recipes.lua b/technic/machines/register/extractor_recipes.lua
index 1de0ba0..54baa61 100644
--- a/technic/machines/register/extractor_recipes.lua
+++ b/technic/machines/register/extractor_recipes.lua
@@ -36,13 +36,21 @@ if minetest.get_modpath("dye") then
-- overwrite the existing crafting recipes
local dyes = {"white", "red", "yellow", "blue", "violet", "orange"}
for _, color in ipairs(dyes) do
+ minetest.clear_craft({
+ type = "shapeless",
+ recipe = {"group:flower,color_"..color},
+ })
minetest.register_craft({
- type = "shapeless",
- output = "dye:"..color.." 1",
- recipe = {"group:flower,color_"..color},
+ type = "shapeless",
+ output = "dye:"..color.." 1",
+ recipe = {"group:flower,color_"..color},
})
-
end
+
+ minetest.clear_craft({
+ type = "shapeless",
+ recipe = {"group:coal"},
+ })
minetest.register_craft({
type = "shapeless",
output = "dye:black 1",
@@ -50,6 +58,10 @@ if minetest.get_modpath("dye") then
})
if unifieddyes then
+ minetest.clear_craft({
+ type = "shapeless",
+ recipe = {"default:cactus"},
+ })
minetest.register_craft({
type = "shapeless",
output = "dye:green 1",
diff --git a/technic/machines/register/grinder_recipes.lua b/technic/machines/register/grinder_recipes.lua
index 1f4047c..8c8e178 100644
--- a/technic/machines/register/grinder_recipes.lua
+++ b/technic/machines/register/grinder_recipes.lua
@@ -23,17 +23,29 @@ local recipes = {
{"technic:sulfur_lump", "technic:sulfur_dust 2"},
{"default:stone", "technic:stone_dust"},
{"default:sand", "technic:stone_dust"},
-
+
-- Other
- {"default:cobble", "default:gravel"},
- {"default:gravel", "default:sand"},
- {"default:sandstone", "default:sand 2"}, -- reverse recipe can be found in the compressor
+ {"default:cobble", "default:gravel"},
+ {"default:gravel", "default:sand"},
+ {"default:sandstone", "default:sand 2"}, -- reverse recipe can be found in the compressor
+ {"default:desert_sandstone", "default:desert_sand 2"}, -- reverse recipe can be found in the compressor
+ {"default:silver_sandstone", "default:silver_sand 2"}, -- reverse recipe can be found in the compressor
}
-- defuse the sandstone -> 4 sand recipe to avoid infinite sand bugs (also consult the inverse compressor recipe)
minetest.clear_craft({
recipe = {
- {'default:sandstone'}
+ {"default:sandstone"}
+ },
+})
+minetest.clear_craft({
+ recipe = {
+ {"default:desert_sandstone"}
+ },
+})
+minetest.clear_craft({
+ recipe = {
+ {"default:silver_sandstone"}
},
})