diff options
author | Jeija <norrepli@googlemail.com> | 2012-08-18 06:52:21 -0700 |
---|---|---|
committer | Jeija <norrepli@googlemail.com> | 2012-08-18 06:52:21 -0700 |
commit | 08095cc32355004f61984bdd2cb4da2bc631b6b3 (patch) | |
tree | b2c82e337a08a45af9ed2fe74d603bc4a0b256b9 | |
parent | c103aa6b2398b221c53533b9ad666ec5dd9effec (diff) | |
parent | a941f4ebd8bb6a1ffeca7a10c1e17670ed129c4a (diff) | |
download | mesecons-08095cc32355004f61984bdd2cb4da2bc631b6b3.tar mesecons-08095cc32355004f61984bdd2cb4da2bc631b6b3.tar.gz mesecons-08095cc32355004f61984bdd2cb4da2bc631b6b3.tar.bz2 mesecons-08095cc32355004f61984bdd2cb4da2bc631b6b3.tar.xz mesecons-08095cc32355004f61984bdd2cb4da2bc631b6b3.zip |
Merge pull request #28 from VanessaE/master
receivers
-rw-r--r-- | mesecons_receiver/init.lua | 48 | ||||
-rw-r--r-- | mesecons_textures/textures/wires_off.png | bin | 272 -> 454 bytes | |||
-rw-r--r-- | mesecons_textures/textures/wires_on.png | bin | 286 -> 492 bytes | |||
-rw-r--r-- | mesecons_textures/textures/wires_vertical_off.png | bin | 320 -> 373 bytes | |||
-rw-r--r-- | mesecons_textures/textures/wires_vertical_on.png | bin | 341 -> 396 bytes |
5 files changed, 46 insertions, 2 deletions
diff --git a/mesecons_receiver/init.lua b/mesecons_receiver/init.lua index dca1e22..fc84bca 100644 --- a/mesecons_receiver/init.lua +++ b/mesecons_receiver/init.lua @@ -1,12 +1,56 @@ +rcvboxes = { + { -3/16, -3/16, -8/16, 3/16, 3/16, -13/32 }, + { -5/32, -5/32, -13/32, 5/32, 5/32, -12/32 }, + {-1/16, -.5, -8/16, 1/16, -.5+1/16, 8/16}, + {-1/16, -.5+1/16, -.5, 1/16, 0, -.5+1/16} +} + minetest.register_node("mesecons_receiver:receiver_on", { - tiles = {"default_wood.png"}, + drawtype = "nodebox", + tiles = { + "wires_on.png", + "wires_on.png", + "wires_vertical_on.png", + "wires_vertical_on.png", + "wires_bump_on.png", + "wires_bump_on.png", + }, + paramtype = "light", + paramtype2 = "facedir", + selection_box = { + type = "fixed", + fixed = { -3/16, -8/16, -8/16, 3/16, 2/16, 8/16 } + }, + node_box = { + type = "fixed", + fixed = rcvboxes + }, groups = {dig_immediate = 3, mesecon = 3, not_in_creative_inventory = 1}, drop = "mesecons:wire_00000000_off", + }) minetest.register_node("mesecons_receiver:receiver_off", { + drawtype = "nodebox", description = "You hacker you", - tiles = {"default_stone.png"}, + tiles = { + "wires_off.png", + "wires_off.png", + "wires_vertical_off.png", + "wires_vertical_off.png", + "wires_bump_off.png", + "wires_bump_off.png", + }, + paramtype = "light", + paramtype2 = "facedir", + selection_box = { + type = "fixed", + fixed = { -3/16, -8/16, -8/16, 3/16, 2/16, 8/16 } + }, + node_box = { + type = "fixed", + fixed = rcvboxes + }, groups = {dig_immediate = 3, mesecon = 3}, drop = "mesecons:wire_00000000_off", }) diff --git a/mesecons_textures/textures/wires_off.png b/mesecons_textures/textures/wires_off.png Binary files differindex 01c3fd8..757d339 100644 --- a/mesecons_textures/textures/wires_off.png +++ b/mesecons_textures/textures/wires_off.png diff --git a/mesecons_textures/textures/wires_on.png b/mesecons_textures/textures/wires_on.png Binary files differindex 8ea4a80..57bb82d 100644 --- a/mesecons_textures/textures/wires_on.png +++ b/mesecons_textures/textures/wires_on.png diff --git a/mesecons_textures/textures/wires_vertical_off.png b/mesecons_textures/textures/wires_vertical_off.png Binary files differindex bd2c9f7..ba8d472 100644 --- a/mesecons_textures/textures/wires_vertical_off.png +++ b/mesecons_textures/textures/wires_vertical_off.png diff --git a/mesecons_textures/textures/wires_vertical_on.png b/mesecons_textures/textures/wires_vertical_on.png Binary files differindex a458f8f..172fa65 100644 --- a/mesecons_textures/textures/wires_vertical_on.png +++ b/mesecons_textures/textures/wires_vertical_on.png |