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