aboutsummaryrefslogtreecommitdiff
path: root/nodes.lua
diff options
context:
space:
mode:
authoracmgit <undertakers_help@yahoo.com>2016-08-02 20:12:31 +0200
committeracmgit <undertakers_help@yahoo.com>2016-08-02 20:12:31 +0200
commit48dc7b4c929c0596bc710bebafc4ca53cacb1748 (patch)
tree77022a5218375fe3e2952e9522e3c26b1782cd38 /nodes.lua
parentba25a050f3f36d2531536d94bca07baf5d0c5719 (diff)
downloadbillboard-48dc7b4c929c0596bc710bebafc4ca53cacb1748.tar.gz
billboard-48dc7b4c929c0596bc710bebafc4ca53cacb1748.tar.bz2
billboard-48dc7b4c929c0596bc710bebafc4ca53cacb1748.zip
Named Parameter added, Default-Values for Parameter inserted.
Diffstat (limited to 'nodes.lua')
-rw-r--r--nodes.lua82
1 files changed, 72 insertions, 10 deletions
diff --git a/nodes.lua b/nodes.lua
index c191a69..615e2bc 100644
--- a/nodes.lua
+++ b/nodes.lua
@@ -1,11 +1,73 @@
-bb_boardlist = {
+bb_boardlist =
+ {
+--[[
+
+ Description of an Entry:
+
+ {
+ title = Name for the Billboard, default = bb_item1_item2_item3
+
+ Recipe to craft:
+ item1 = First Item for the recipe, default = sign_wall_wood
+ item2 = .. , default = white
+ item3 = .. , default = white
+
+ Size of the Billboard in Blocks
+ scale = number , default = 0
+
+ Typ of the taken Image (must be in textures)
+ imgtyp = "Typ" , default = "png"
+ }
- -- { 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" },
- { "paper", "green", "green", 2.0, "png" }
-}
+--]]
+
+ { title = "Aikido Billboard",
+ item1 = "sign_wall_wood",
+ item2 = "white",
+ item3 = "white",
+ scale = 3.0,
+ imgtyp = "jpg" },
+
+ { title = "Detergen Billboard",
+ item1 = "sign_wall_wood",
+ item2 = "yellow",
+ item3 = "yellow",
+ scale = 3.0,
+ imgtyp = "jpg" },
+
+ { title = "Mesedrink Billboard",
+ item1 = "sign_wall_wood",
+ item2 = "black",
+ item3 = "yellow",
+ scale = 3.5,
+ imgtyp = "jpg" },
+
+ { title = "Meseforte Billboard",
+ item1 = "sign_wall_wood",
+ item2 = "green",
+ item3 = "blue",
+ scale = 3.0,
+ imgtyp = "png" },
+
+ { title = "Mesewave Billboard",
+ item1 = "sign_wall_wood",
+ item2 = "blue",
+ item3 = "yellow",
+ scale = 2.0,
+ imgtyp = "jpg" },
+
+ { title = "Newspaper Billboard",
+ item1 = "paper",
+ item2 = "black",
+ item3 = "orange",
+ scale = 2.5,
+ imgtyp = "jpg" },
+
+ { title = "Army Billboard",
+ item1 = "paper",
+ item2 = "green",
+ item3 = "green",
+ scale = 2.0,
+ imgtyp = "png" }
+
+ }