diff --git a/custom.recipes.lua b/custom.recipes.lua
new file mode 100644
index 0000000000000000000000000000000000000000..0f032affaa91e0e8701e048e212e109a443b1e80
--- /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 3e954947cafa9466d1be9525155ca633be8cc301..68aef7a53011fa3bf69b0d17f0e0f7e4af385e05 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 0d2cea82108d4be85a3ab5c8e9696981b89fb41d..cc7f5ee92aaab12e0bdde54bac0202d2cf4d0a0d 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 d74b961d76a2147478efe3b98e9a08054a020ee7..a87cfb31df022c732be78abd000f3e9d354a5e31 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 825e88485a16167ad9e70d01f0ad95242fdbbe95..a76fdcca16e70e3d32e7161c720a86582b5e77cf 100644
Binary files a/textures/rhotator.png and b/textures/rhotator.png differ