summaryrefslogtreecommitdiff
path: root/mesecons_blinkyplant
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_blinkyplant
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_blinkyplant')
-rw-r--r--mesecons_blinkyplant/depends.txt1
-rw-r--r--mesecons_blinkyplant/doc/blinkyplant/description.html1
-rwxr-xr-xmesecons_blinkyplant/doc/blinkyplant/preview.pngbin0 -> 66763 bytes
-rw-r--r--mesecons_blinkyplant/doc/blinkyplant/recipe.pngbin0 -> 2922 bytes
-rw-r--r--mesecons_blinkyplant/init.lua51
-rw-r--r--mesecons_blinkyplant/textures/jeija_blinky_plant_off.pngbin0 -> 454 bytes
-rw-r--r--mesecons_blinkyplant/textures/jeija_blinky_plant_on.pngbin0 -> 463 bytes
7 files changed, 53 insertions, 0 deletions
diff --git a/mesecons_blinkyplant/depends.txt b/mesecons_blinkyplant/depends.txt
new file mode 100644
index 0000000..acaa924
--- /dev/null
+++ b/mesecons_blinkyplant/depends.txt
@@ -0,0 +1 @@
+mesecons
diff --git a/mesecons_blinkyplant/doc/blinkyplant/description.html b/mesecons_blinkyplant/doc/blinkyplant/description.html
new file mode 100644
index 0000000..2a7db48
--- /dev/null
+++ b/mesecons_blinkyplant/doc/blinkyplant/description.html
@@ -0,0 +1 @@
+The blinky plants toggles between on and off state every three seconds. Can be used to make clocks. Also works after having restarted the game.
diff --git a/mesecons_blinkyplant/doc/blinkyplant/preview.png b/mesecons_blinkyplant/doc/blinkyplant/preview.png
new file mode 100755
index 0000000..40ce5b5
--- /dev/null
+++ b/mesecons_blinkyplant/doc/blinkyplant/preview.png
Binary files differ
diff --git a/mesecons_blinkyplant/doc/blinkyplant/recipe.png b/mesecons_blinkyplant/doc/blinkyplant/recipe.png
new file mode 100644
index 0000000..6f1e148
--- /dev/null
+++ b/mesecons_blinkyplant/doc/blinkyplant/recipe.png
Binary files differ
diff --git a/mesecons_blinkyplant/init.lua b/mesecons_blinkyplant/init.lua
new file mode 100644
index 0000000..8d2aa6e
--- /dev/null
+++ b/mesecons_blinkyplant/init.lua
@@ -0,0 +1,51 @@
+-- The BLINKY_PLANT
+
+local toggle_timer = function (pos)
+ local timer = minetest.get_node_timer(pos)
+ if timer:is_started() then
+ timer:stop()
+ else
+ timer:start(mesecon.setting("blinky_plant_interval", 3))
+ end
+end
+
+local on_timer = function (pos)
+ local node = minetest.get_node(pos)
+ if(mesecon.flipstate(pos, node) == "on") then
+ mesecon.receptor_on(pos)
+ else
+ mesecon.receptor_off(pos)
+ end
+ toggle_timer(pos)
+end
+
+mesecon.register_node("mesecons_blinkyplant:blinky_plant", {
+ description="Blinky Plant",
+ drawtype = "plantlike",
+ inventory_image = "jeija_blinky_plant_off.png",
+ paramtype = "light",
+ walkable = false,
+ sounds = default.node_sound_leaves_defaults(),
+ selection_box = {
+ type = "fixed",
+ fixed = {-0.3, -0.5, -0.3, 0.3, -0.5+0.7, 0.3},
+ },
+ on_timer = on_timer,
+ on_rightclick = toggle_timer,
+ on_construct = toggle_timer
+},{
+ tiles = {"jeija_blinky_plant_off.png"},
+ groups = {dig_immediate=3},
+ mesecons = {receptor = { state = mesecon.state.off }}
+},{
+ tiles = {"jeija_blinky_plant_on.png"},
+ groups = {dig_immediate=3, not_in_creative_inventory=1},
+ mesecons = {receptor = { state = mesecon.state.on }}
+})
+
+minetest.register_craft({
+ output = "mesecons_blinkyplant:blinky_plant_off 1",
+ recipe = { {"","group:mesecon_conductor_craftable",""},
+ {"","group:mesecon_conductor_craftable",""},
+ {"group:sapling","group:sapling","group:sapling"}}
+})
diff --git a/mesecons_blinkyplant/textures/jeija_blinky_plant_off.png b/mesecons_blinkyplant/textures/jeija_blinky_plant_off.png
new file mode 100644
index 0000000..4f507da
--- /dev/null
+++ b/mesecons_blinkyplant/textures/jeija_blinky_plant_off.png
Binary files differ
diff --git a/mesecons_blinkyplant/textures/jeija_blinky_plant_on.png b/mesecons_blinkyplant/textures/jeija_blinky_plant_on.png
new file mode 100644
index 0000000..f77a134
--- /dev/null
+++ b/mesecons_blinkyplant/textures/jeija_blinky_plant_on.png
Binary files differ