diff --git a/custom.recipes.lua b/custom.recipes.lua new file mode 100644 index 0000000..0f032af --- /dev/null +++ b/custom.recipes.lua @@ -0,0 +1,67 @@ +-- only alter this file if it's named "custom.recipes.lua" +-- alter the recipes as you please and delete / comment out +-- the recipes you don't want to be available in the game +-- the original versions are in "default/recipes.lua" + +return { + { + output = "rhotator:screwdriver", + recipe = { + {"moreores:mithril_ingot"}, + {"default:mese_crystal_fragment"}, + {"group:stick"}, + }, + }, + { + output = "rhotator:screwdriver_alt", + recipe = { + {"moreores:mithril_ingot", "group:stick", ""}, + {"default:mese_crystal_fragment", "", ""}, + {"group:stick", "", ""}, + }, + }, + { + output = "rhotator:screwdriver_multi", + recipe = { + {"", "group:stick", ""}, + {"group:stick", "moreores:mithril_ingot", "group:stick"}, + {"", "group:stick", "default:mese_crystal_fragment"}, + }, + }, + { + output = "rhotator:memory", + recipe = { + {"group:stick", "", ""}, + {"moreores:mithril_ingot", "default:mese_crystal_fragment", ""}, + {"group:stick", "", ""}, + }, + }, + { + output = "rhotator:cube", + recipe = { + {"group:wool"}, + {"rhotator:screwdriver"}, + }, + }, + { + output = "rhotator:cube", + recipe = { + {"group:wool"}, + {"rhotator:screwdriver_alt"}, + }, + }, + { + output = "rhotator:cube", + recipe = { + {"group:wool"}, + {"rhotator:memory"}, + }, + }, + { + output = "rhotator:cube", + recipe = { + {"group:wool"}, + {"rhotator:screwdriver_multi"}, + }, + }, +} diff --git a/textures/rhotator-alt.png b/textures/rhotator-alt.png index 3e95494..68aef7a 100644 Binary files a/textures/rhotator-alt.png and b/textures/rhotator-alt.png differ diff --git a/textures/rhotator-memory.png b/textures/rhotator-memory.png index 0d2cea8..cc7f5ee 100644 Binary files a/textures/rhotator-memory.png and b/textures/rhotator-memory.png differ diff --git a/textures/rhotator-multi.png b/textures/rhotator-multi.png index d74b961..a87cfb3 100644 Binary files a/textures/rhotator-multi.png and b/textures/rhotator-multi.png differ diff --git a/textures/rhotator.png b/textures/rhotator.png index 825e884..a76fdcc 100644 Binary files a/textures/rhotator.png and b/textures/rhotator.png differ