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/pinetree.lua | |
parent | 9ae811465ea37703f9ee85dfd97f7082190e60ea (diff) |
redo schems, add firethorn and igloo, tweak mapgen
Diffstat (limited to 'schematics/pinetree.lua')
-rw-r--r-- | schematics/pinetree.lua | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/schematics/pinetree.lua b/schematics/pinetree.lua new file mode 100644 index 0000000..f216c5b --- /dev/null +++ b/schematics/pinetree.lua @@ -0,0 +1,81 @@ + +local _ = {name = "air", prob = 0} +local L = {name = "ethereal:pineleaves", prob = 255} +local T = {name = "default:pinetree", prob = 255} + +ethereal.pinetree = { + + size = {x = 7, y = 8, z = 7}, + + yslice_prob = { + {ypos = 0, prob = 127}, + {ypos = 4, prob = 127}, + }, + + data = { + + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,_,L,_,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,L,L,L,_,_, + _,_,_,_,_,_,_, + _,_,_,L,_,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,_,L,_,_,_, + _,L,L,L,L,L,_, + _,_,_,L,_,_,_, + _,_,L,L,L,_,_, + _,_,_,L,_,_,_, + _,_,_,_,_,_,_, + + _,_,_,T,_,_,_, + _,_,_,T,_,_,_, + _,_,L,T,L,_,_, + L,L,L,T,L,L,L, + _,_,L,T,L,_,_, + _,L,L,T,L,L,_, + _,_,L,T,L,_,_, + _,_,_,L,_,_,_, + + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,_,L,_,_,_, + _,L,L,L,L,L,_, + _,_,_,L,_,_,_, + _,_,L,L,L,_,_, + _,_,_,L,_,_,_, + _,_,_,_,_,_,_, + + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,L,L,L,_,_, + _,_,_,_,_,_,_, + _,_,_,L,_,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,_,L,_,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + _,_,_,_,_,_,_, + + } +} |