diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-09-03 20:43:00 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-09-03 20:43:00 +0100 |
commit | 0ea9f423ca076f42d82059be3f5e4d9ad23ce30b (patch) | |
tree | 3609352df74f57b0e16ab592fc4127f4a6213323 /schematics/vinetree.lua | |
parent | 9ae811465ea37703f9ee85dfd97f7082190e60ea (diff) |
redo schems, add firethorn and igloo, tweak mapgen
Diffstat (limited to 'schematics/vinetree.lua')
-rw-r--r-- | schematics/vinetree.lua | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/schematics/vinetree.lua b/schematics/vinetree.lua new file mode 100644 index 0000000..be54276 --- /dev/null +++ b/schematics/vinetree.lua @@ -0,0 +1,77 @@ + +local _ = {name = "air", prob = 0} +local T = {name = "default:tree", prob = 255} +local L = {name = "default:leaves", prob = 255} +local u = {name = "ethereal:vine", prob = 255, param2 = 2} +local U = {name = "ethereal:vine", prob = 255, param2 = 3} +local W = {name = "ethereal:vine", prob = 255, param2 = 4} +local w = {name = "ethereal:vine", prob = 255, param2 = 5} + +ethereal.vinetree = { + + size = {x = 7, y = 7, z = 7}, + + yslice_prob = { + {ypos = 0, prob = 127}, + }, + + data = { + + _,_,_,_,_,_,_, + _,W,_,_,_,_,_, + _,W,_,W,_,_,_, + _,W,_,W,_,_,_, + _,W,_,_,_,W,_, + _,W,_,_,_,W,_, + _,_,_,_,_,_,_, + + _,_,_,_,_,_,_, + _,_,_,_,W,_,_, + _,_,_,_,W,_,_, + _,L,L,L,W,L,_, + _,L,L,_,L,L,_, + _,L,L,L,L,L,_, + _,_,_,_,_,_,_, + + _,_,_,_,_,_,U, + _,_,_,_,_,_,U, + _,_,_,_,_,_,U, + _,L,T,_,T,L,U, + u,L,L,L,L,_,_, + _,_,L,L,L,L,_, + _,_,L,L,L,_,_, + + _,_,_,T,_,_,_, + _,_,_,T,_,_,_, + u,_,_,T,_,_,_, + u,L,_,L,_,L,_, + u,L,L,L,L,L,_, + _,L,L,L,L,L,_, + _,_,L,L,L,_,_, + + _,_,_,_,_,_,_, + _,_,_,_,_,_,U, + _,_,_,_,_,_,U, + _,L,T,_,T,L,U, + _,L,L,L,L,L,U, + _,L,L,L,L,L,_, + _,_,_,L,L,_,_, + + _,_,_,_,_,_,_, + u,_,_,_,_,_,_, + u,_,_,_,w,_,_, + u,L,L,L,w,L,_, + _,L,L,L,L,_,_, + _,_,L,L,L,L,_, + _,_,_,_,_,_,_, + + _,_,_,_,_,_,_, + _,_,w,_,_,_,_, + _,_,w,_,_,_,_, + _,_,w,w,_,_,_, + _,_,_,w,w,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + + } +} |