summaryrefslogtreecommitdiff
path: root/mesecons_random
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 21:00:20 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 21:10:04 -0400
commit888b0ebfec8c2eff9015163549a7e47443cb8665 (patch)
tree915080159bfaa6ba6e226087c7ce0e8d5464b518 /mesecons_random
parentda66780a569712c23ae4f2996cfb4608a9f9d69d (diff)
downloaddreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar.gz
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar.bz2
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar.xz
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.zip
"explode" all modpacks into their individual components
(you can't have a modpack buried inside a modpack)
Diffstat (limited to 'mesecons_random')
-rw-r--r--mesecons_random/depends.txt1
-rw-r--r--mesecons_random/doc/ghoststone/description.html1
-rw-r--r--mesecons_random/doc/ghoststone/preview.pngbin0 -> 37157 bytes
-rw-r--r--mesecons_random/doc/ghoststone/recipe.pngbin0 -> 23947 bytes
-rw-r--r--mesecons_random/doc/removestone/description.html1
-rw-r--r--mesecons_random/doc/removestone/preview.pngbin0 -> 90400 bytes
-rw-r--r--mesecons_random/doc/removestone/recipe.pngbin0 -> 23165 bytes
-rw-r--r--mesecons_random/init.lua85
-rw-r--r--mesecons_random/textures/jeija_ghoststone.pngbin0 -> 743 bytes
-rw-r--r--mesecons_random/textures/jeija_ghoststone_inv.pngbin0 -> 777 bytes
-rw-r--r--mesecons_random/textures/jeija_removestone.pngbin0 -> 743 bytes
-rw-r--r--mesecons_random/textures/jeija_removestone_inv.pngbin0 -> 777 bytes
12 files changed, 88 insertions, 0 deletions
diff --git a/mesecons_random/depends.txt b/mesecons_random/depends.txt
new file mode 100644
index 0000000..acaa924
--- /dev/null
+++ b/mesecons_random/depends.txt
@@ -0,0 +1 @@
+mesecons
diff --git a/mesecons_random/doc/ghoststone/description.html b/mesecons_random/doc/ghoststone/description.html
new file mode 100644
index 0000000..138a2b3
--- /dev/null
+++ b/mesecons_random/doc/ghoststone/description.html
@@ -0,0 +1 @@
+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_random/doc/ghoststone/preview.png b/mesecons_random/doc/ghoststone/preview.png
new file mode 100644
index 0000000..4ab33fb
--- /dev/null
+++ b/mesecons_random/doc/ghoststone/preview.png
Binary files differ
diff --git a/mesecons_random/doc/ghoststone/recipe.png b/mesecons_random/doc/ghoststone/recipe.png
new file mode 100644
index 0000000..3bd385d
--- /dev/null
+++ b/mesecons_random/doc/ghoststone/recipe.png
Binary files differ
diff --git a/mesecons_random/doc/removestone/description.html b/mesecons_random/doc/removestone/description.html
new file mode 100644
index 0000000..d540fe9
--- /dev/null
+++ b/mesecons_random/doc/removestone/description.html
@@ -0,0 +1 @@
+Removestones are propably the simplest effectors possible. They simply disappear when powered.
diff --git a/mesecons_random/doc/removestone/preview.png b/mesecons_random/doc/removestone/preview.png
new file mode 100644
index 0000000..15caf3f
--- /dev/null
+++ b/mesecons_random/doc/removestone/preview.png
Binary files differ
diff --git a/mesecons_random/doc/removestone/recipe.png b/mesecons_random/doc/removestone/recipe.png
new file mode 100644
index 0000000..f271963
--- /dev/null
+++ b/mesecons_random/doc/removestone/recipe.png
Binary files differ
diff --git a/mesecons_random/init.lua b/mesecons_random/init.lua
new file mode 100644
index 0000000..0136309
--- /dev/null
+++ b/mesecons_random/init.lua
@@ -0,0 +1,85 @@
+-- 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_random/textures/jeija_ghoststone.png b/mesecons_random/textures/jeija_ghoststone.png
new file mode 100644
index 0000000..1917b7c
--- /dev/null
+++ b/mesecons_random/textures/jeija_ghoststone.png
Binary files differ
diff --git a/mesecons_random/textures/jeija_ghoststone_inv.png b/mesecons_random/textures/jeija_ghoststone_inv.png
new file mode 100644
index 0000000..c715d7f
--- /dev/null
+++ b/mesecons_random/textures/jeija_ghoststone_inv.png
Binary files differ
diff --git a/mesecons_random/textures/jeija_removestone.png b/mesecons_random/textures/jeija_removestone.png
new file mode 100644
index 0000000..1917b7c
--- /dev/null
+++ b/mesecons_random/textures/jeija_removestone.png
Binary files differ
diff --git a/mesecons_random/textures/jeija_removestone_inv.png b/mesecons_random/textures/jeija_removestone_inv.png
new file mode 100644
index 0000000..c715d7f
--- /dev/null
+++ b/mesecons_random/textures/jeija_removestone_inv.png
Binary files differ