diff options
author | acmgit <undertakers_help@yahoo.com> | 2016-07-28 22:53:52 +0200 |
---|---|---|
committer | acmgit <undertakers_help@yahoo.com> | 2016-07-28 22:57:19 +0200 |
commit | b5daec2d86bfbbc962669048f660344e1628989c (patch) | |
tree | 00807e3473fd4add957ed1d091f8bb58f27cf2f9 | |
parent | c49a4564605fb2d036852718ccfdb1b770fe9c92 (diff) |
Texturesize and Recipes changed.
-rw-r--r-- | depends.txt | 3 | ||||
-rw-r--r-- | init.lua | 45 | ||||
-rw-r--r-- | textures/bb_white.png | bin | 231769 -> 0 bytes | |||
-rw-r--r-- | textures/bb_white_white.png | bin | 0 -> 227995 bytes | |||
-rw-r--r-- | textures/bb_yellow.png | bin | 254929 -> 0 bytes | |||
-rw-r--r-- | textures/bb_yellow_yellow.png | bin | 0 -> 220503 bytes |
6 files changed, 27 insertions, 21 deletions
diff --git a/depends.txt b/depends.txt new file mode 100644 index 0000000..254bfee --- /dev/null +++ b/depends.txt @@ -0,0 +1,3 @@ +default +wool + @@ -1,10 +1,12 @@ -minetest.register_node("billboard:bb_white", { - description = "Billboard white", +minetest.register_node("billboard:bb_white_white", { + description = "Billboard white_white", drawtype = "signlike", - visual_scale = 5, - tiles = {"bb_white.png"}, - inventory_image = "bb_white.png", - wield_image = "bb_white.png", + visual_scale = 3, + tiles = { + "bb_white_white.png" -- up + }, + inventory_image = "bb_white_white.png", + wield_image = "bb_white_white.png", wield_scale = {x=1, y=1, z=1}, paramtype = "light", paramtype2 = "wallmounted", @@ -21,21 +23,23 @@ minetest.register_node("billboard:bb_white", { }) minetest.register_craft({ - output = "billboard:bb_white", + output = "billboard:bb_white_white", recipe = { - {"group:stick", "group:stick"}, - {"default:sign_wall_wood", "wool:white"}, - {"group:stick", "group:stick"} + {"group:stick", "group:stick", "group:stick"}, + {"default:sign_wall_wood", "wool:white", "wool:white"}, + {"group:stick", "group:stick", "group:stick"} } }) -minetest.register_node("billboard:bb_yellow", { - description = "Billboard yellow", +minetest.register_node("billboard:bb_yellow_yellow", { + description = "Billboard yellow_yellow", drawtype = "signlike", - visual_scale = 5, - tiles = {"bb_yellow.png"}, - inventory_image = "bb_yellow.png", - wield_image = "bb_yellow.png", + visual_scale = 3, + tiles = { + "bb_yellow_yellow.png" -- up + }, + inventory_image = "bb_yellow_yellow.png", + wield_image = "bb_yellow_yellow.png", wield_scale = {x=1, y=1, z=1}, paramtype = "light", paramtype2 = "wallmounted", @@ -50,12 +54,11 @@ minetest.register_node("billboard:bb_yellow", { legacy_wallmounted = true, }) - minetest.register_craft({ - output = "billboard:bb_yellow", + output = "billboard:bb_yellow_yellow", recipe = { - {"group:stick", "group:stick"}, - {"default:sign_wall_wood", "wool:yellow"}, - {"group:stick", "group:stick"} + {"group:stick", "group:stick", "group:stick"}, + {"default:sign_wall_wood", "wool:yellow", "wool:yellow"}, + {"group:stick", "group:stick", "group:stick"} } }) diff --git a/textures/bb_white.png b/textures/bb_white.png Binary files differdeleted file mode 100644 index 37534d4..0000000 --- a/textures/bb_white.png +++ /dev/null diff --git a/textures/bb_white_white.png b/textures/bb_white_white.png Binary files differnew file mode 100644 index 0000000..a57483a --- /dev/null +++ b/textures/bb_white_white.png diff --git a/textures/bb_yellow.png b/textures/bb_yellow.png Binary files differdeleted file mode 100644 index 9d49fef..0000000 --- a/textures/bb_yellow.png +++ /dev/null diff --git a/textures/bb_yellow_yellow.png b/textures/bb_yellow_yellow.png Binary files differnew file mode 100644 index 0000000..7e659de --- /dev/null +++ b/textures/bb_yellow_yellow.png |