From 2565108081a72b693c33be866dd71c6004968991 Mon Sep 17 00:00:00 2001 From: acmgit Date: Sat, 30 Jul 2016 19:00:33 +0200 Subject: Added a Parameter for the Imagetyp. --- init.lua | 6 +++--- nodes.lua | 14 +++++++------- textures/Screenshot.jpg | Bin 0 -> 212236 bytes textures/bb_paper_black_orange.jpg | Bin 0 -> 16951 bytes textures/bb_sign_wall_wood_black_yellow.jpg | Bin 0 -> 21930 bytes textures/bb_sign_wall_wood_blue_yellow.jpg | Bin 0 -> 21936 bytes textures/bb_sign_wall_wood_green_blue.jpg | Bin 0 -> 18977 bytes textures/bb_sign_wall_wood_white_white.jpg | Bin 0 -> 31236 bytes textures/bb_sign_wall_wood_yellow_yellow.jpg | Bin 0 -> 28806 bytes 9 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 textures/Screenshot.jpg create mode 100644 textures/bb_paper_black_orange.jpg create mode 100644 textures/bb_sign_wall_wood_black_yellow.jpg create mode 100644 textures/bb_sign_wall_wood_blue_yellow.jpg create mode 100644 textures/bb_sign_wall_wood_green_blue.jpg create mode 100644 textures/bb_sign_wall_wood_white_white.jpg create mode 100644 textures/bb_sign_wall_wood_yellow_yellow.jpg diff --git a/init.lua b/init.lua index 8fda972..76f466f 100644 --- a/init.lua +++ b/init.lua @@ -8,10 +8,10 @@ for i,n in ipairs(bb_boardlist) do drawtype = "signlike", visual_scale = n[4], tiles = { - "bb_"..n[1].."_"..n[2].."_"..n[3]..".png" + "bb_"..n[1].."_"..n[2].."_"..n[3].."."..n[5] }, - inventory_image = "bb_"..n[1].."_"..n[2].."_"..n[3]..".png", - wield_image = "bb_"..n[1].."_"..n[2].."_"..n[3]..".png", + inventory_image = "bb_"..n[1].."_"..n[2].."_"..n[3].."."..n[5], + wield_image = "bb_"..n[1].."_"..n[2].."_"..n[3].."."..n[5], paramtype = "light", paramtype2 = "wallmounted", sunlight_propagates = true, diff --git a/nodes.lua b/nodes.lua index 2a30cf1..c942ed1 100644 --- a/nodes.lua +++ b/nodes.lua @@ -1,10 +1,10 @@ bb_boardlist = { - -- { default:, wool:, wool:, visual_scale } - { "sign_wall_wood", "white", "white", 3.0 }, - { "sign_wall_wood", "yellow", "yellow", 3.0 }, - { "sign_wall_wood", "black", "yellow", 3.5 }, - { "sign_wall_wood", "green", "blue", 3.0 }, - { "sign_wall_wood", "blue", "yellow", 2.0 }, - { "paper", "black", "orange", 2.5 } + -- { default:, wool:, wool:, visual_scale, Imagetyp } + { "sign_wall_wood", "white", "white", 3.0, "jpg" }, + { "sign_wall_wood", "yellow", "yellow", 3.0, "jpg" }, + { "sign_wall_wood", "black", "yellow", 3.5, "jpg" }, + { "sign_wall_wood", "green", "blue", 3.0, "png" }, + { "sign_wall_wood", "blue", "yellow", 2.0, "jpg" }, + { "paper", "black", "orange", 2.5, "jpg" } } diff --git a/textures/Screenshot.jpg b/textures/Screenshot.jpg new file mode 100644 index 0000000..c5bdc84 Binary files /dev/null and b/textures/Screenshot.jpg differ diff --git a/textures/bb_paper_black_orange.jpg b/textures/bb_paper_black_orange.jpg new file mode 100644 index 0000000..9021a8d Binary files /dev/null and b/textures/bb_paper_black_orange.jpg differ diff --git a/textures/bb_sign_wall_wood_black_yellow.jpg b/textures/bb_sign_wall_wood_black_yellow.jpg new file mode 100644 index 0000000..3b17cbb Binary files /dev/null and b/textures/bb_sign_wall_wood_black_yellow.jpg differ diff --git a/textures/bb_sign_wall_wood_blue_yellow.jpg b/textures/bb_sign_wall_wood_blue_yellow.jpg new file mode 100644 index 0000000..582af14 Binary files /dev/null and b/textures/bb_sign_wall_wood_blue_yellow.jpg differ diff --git a/textures/bb_sign_wall_wood_green_blue.jpg b/textures/bb_sign_wall_wood_green_blue.jpg new file mode 100644 index 0000000..8b2355b Binary files /dev/null and b/textures/bb_sign_wall_wood_green_blue.jpg differ diff --git a/textures/bb_sign_wall_wood_white_white.jpg b/textures/bb_sign_wall_wood_white_white.jpg new file mode 100644 index 0000000..6df3aee Binary files /dev/null and b/textures/bb_sign_wall_wood_white_white.jpg differ diff --git a/textures/bb_sign_wall_wood_yellow_yellow.jpg b/textures/bb_sign_wall_wood_yellow_yellow.jpg new file mode 100644 index 0000000..c5f080b Binary files /dev/null and b/textures/bb_sign_wall_wood_yellow_yellow.jpg differ -- cgit v1.2.3