summaryrefslogtreecommitdiff
path: root/mesecons/mesecons_random
diff options
context:
space:
mode:
Diffstat (limited to 'mesecons/mesecons_random')
-rw-r--r--mesecons/mesecons_random/depends.txt1
-rw-r--r--mesecons/mesecons_random/doc/ghoststone/description.html1
-rw-r--r--mesecons/mesecons_random/doc/ghoststone/preview.pngbin37157 -> 0 bytes
-rw-r--r--mesecons/mesecons_random/doc/ghoststone/recipe.pngbin23947 -> 0 bytes
-rw-r--r--mesecons/mesecons_random/doc/removestone/description.html1
-rw-r--r--mesecons/mesecons_random/doc/removestone/preview.pngbin90400 -> 0 bytes
-rw-r--r--mesecons/mesecons_random/doc/removestone/recipe.pngbin23165 -> 0 bytes
-rw-r--r--mesecons/mesecons_random/init.lua85
-rw-r--r--mesecons/mesecons_random/textures/jeija_ghoststone.pngbin743 -> 0 bytes
-rw-r--r--mesecons/mesecons_random/textures/jeija_ghoststone_inv.pngbin777 -> 0 bytes
-rw-r--r--mesecons/mesecons_random/textures/jeija_removestone.pngbin743 -> 0 bytes
-rw-r--r--mesecons/mesecons_random/textures/jeija_removestone_inv.pngbin777 -> 0 bytes
12 files changed, 0 insertions, 88 deletions
diff --git a/mesecons/mesecons_random/depends.txt b/mesecons/mesecons_random/depends.txt
deleted file mode 100644
index acaa924..0000000
--- a/mesecons/mesecons_random/depends.txt
+++ /dev/null
@@ -1 +0,0 @@
-mesecons
diff --git a/mesecons/mesecons_random/doc/ghoststone/description.html b/mesecons/mesecons_random/doc/ghoststone/description.html
deleted file mode 100644
index 138a2b3..0000000
--- a/mesecons/mesecons_random/doc/ghoststone/description.html
+++ /dev/null
@@ -1 +0,0 @@
-Ghoststones disappear when powered, just like Removestones. But in contrast to Removestones, they Reappear again when not powered anymore and they are also conductive.
diff --git a/mesecons/mesecons_random/doc/ghoststone/preview.png b/mesecons/mesecons_random/doc/ghoststone/preview.png
deleted file mode 100644
index 4ab33fb..0000000
--- a/mesecons/mesecons_random/doc/ghoststone/preview.png
+++ /dev/null
Binary files differ
diff --git a/mesecons/mesecons_random/doc/ghoststone/recipe.png b/mesecons/mesecons_random/doc/ghoststone/recipe.png
deleted file mode 100644
index 3bd385d..0000000
--- a/mesecons/mesecons_random/doc/ghoststone/recipe.png
+++ /dev/null
Binary files differ
diff --git a/mesecons/mesecons_random/doc/removestone/description.html b/mesecons/mesecons_random/doc/removestone/description.html
deleted file mode 100644
index d540fe9..0000000
--- a/mesecons/mesecons_random/doc/removestone/description.html
+++ /dev/null
@@ -1 +0,0 @@
-Removestones are propably the simplest effectors possible. They simply disappear when powered.
diff --git a/mesecons/mesecons_random/doc/removestone/preview.png b/mesecons/mesecons_random/doc/removestone/preview.png
deleted file mode 100644
index 15caf3f..0000000
--- a/mesecons/mesecons_random/doc/removestone/preview.png
+++ /dev/null
Binary files differ
diff --git a/mesecons/mesecons_random/doc/removestone/recipe.png b/mesecons/mesecons_random/doc/removestone/recipe.png
deleted file mode 100644
index f271963..0000000
--- a/mesecons/mesecons_random/doc/removestone/recipe.png
+++ /dev/null
Binary files differ
diff --git a/mesecons/mesecons_random/init.lua b/mesecons/mesecons_random/init.lua
deleted file mode 100644
index 0136309..0000000
--- a/mesecons/mesecons_random/init.lua
+++ /dev/null
@@ -1,85 +0,0 @@
--- REMOVESTONE
-
-minetest.register_node("mesecons_random:removestone", {
- tiles = {"jeija_removestone.png"},
- inventory_image = minetest.inventorycube("jeija_removestone_inv.png"),
- groups = {cracky=3},
- description="Removestone",
- sounds = default.node_sound_stone_defaults(),
- mesecons = {effector = {
- action_on = function (pos, node)
- minetest.remove_node(pos)
- mesecon.update_autoconnect(pos)
- end
- }}
-})
-
-minetest.register_craft({
- output = 'mesecons_random:removestone 4',
- recipe = {
- {"", "default:cobble", ""},
- {"default:cobble", "group:mesecon_conductor_craftable", "default:cobble"},
- {"", "default:cobble", ""},
- }
-})
-
--- GHOSTSTONE
-
-minetest.register_node("mesecons_random:ghoststone", {
- description="ghoststone",
- tiles = {"jeija_ghoststone.png"},
- is_ground_content = true,
- inventory_image = minetest.inventorycube("jeija_ghoststone_inv.png"),
- groups = {cracky=3},
- sounds = default.node_sound_stone_defaults(),
- mesecons = {conductor = {
- state = mesecon.state.off,
- rules = { --axes
- {x = -1, y = 0, z = 0},
- {x = 1, y = 0, z = 0},
- {x = 0, y = -1, z = 0},
- {x = 0, y = 1, z = 0},
- {x = 0, y = 0, z = -1},
- {x = 0, y = 0, z = 1},
- },
- onstate = "mesecons_random:ghoststone_active"
- }}
-})
-
-minetest.register_node("mesecons_random:ghoststone_active", {
- drawtype = "airlike",
- pointable = false,
- walkable = false,
- diggable = false,
- sunlight_propagates = true,
- paramtype = "light",
- mesecons = {conductor = {
- state = mesecon.state.on,
- rules = {
- {x = -1, y = 0, z = 0},
- {x = 1, y = 0, z = 0},
- {x = 0, y = -1, z = 0},
- {x = 0, y = 1, z = 0},
- {x = 0, y = 0, z = -1},
- {x = 0, y = 0, z = 1},
- },
- offstate = "mesecons_random:ghoststone"
- }},
- on_construct = function(pos)
- --remove shadow
- pos2 = {x = pos.x, y = pos.y + 1, z = pos.z}
- if ( minetest.get_node(pos2).name == "air" ) then
- minetest.dig_node(pos2)
- end
- end
-})
-
-
-minetest.register_craft({
- output = 'mesecons_random:ghoststone 4',
- recipe = {
- {"default:steel_ingot", "default:cobble", "default:steel_ingot"},
- {"default:cobble", "group:mesecon_conductor_craftable", "default:cobble"},
- {"default:steel_ingot", "default:cobble", "default:steel_ingot"},
- }
-})
diff --git a/mesecons/mesecons_random/textures/jeija_ghoststone.png b/mesecons/mesecons_random/textures/jeija_ghoststone.png
deleted file mode 100644
index 1917b7c..0000000
--- a/mesecons/mesecons_random/textures/jeija_ghoststone.png
+++ /dev/null
Binary files differ
diff --git a/mesecons/mesecons_random/textures/jeija_ghoststone_inv.png b/mesecons/mesecons_random/textures/jeija_ghoststone_inv.png
deleted file mode 100644
index c715d7f..0000000
--- a/mesecons/mesecons_random/textures/jeija_ghoststone_inv.png
+++ /dev/null
Binary files differ
diff --git a/mesecons/mesecons_random/textures/jeija_removestone.png b/mesecons/mesecons_random/textures/jeija_removestone.png
deleted file mode 100644
index 1917b7c..0000000
--- a/mesecons/mesecons_random/textures/jeija_removestone.png
+++ /dev/null
Binary files differ
diff --git a/mesecons/mesecons_random/textures/jeija_removestone_inv.png b/mesecons/mesecons_random/textures/jeija_removestone_inv.png
deleted file mode 100644
index c715d7f..0000000
--- a/mesecons/mesecons_random/textures/jeija_removestone_inv.png
+++ /dev/null
Binary files differ