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/volcanom.lua | |
parent | 9ae811465ea37703f9ee85dfd97f7082190e60ea (diff) |
redo schems, add firethorn and igloo, tweak mapgen
Diffstat (limited to 'schematics/volcanom.lua')
-rw-r--r-- | schematics/volcanom.lua | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/schematics/volcanom.lua b/schematics/volcanom.lua new file mode 100644 index 0000000..346126b --- /dev/null +++ b/schematics/volcanom.lua @@ -0,0 +1,36 @@ + +local _ = {name = "air", prob = 0} +local l = {name = "default:lava_source", prob = 225} +local s = {name = "default:stone", prob = 255} +local d = {name = "ethereal:fiery_dirt", prob = 255} + +ethereal.volcanom = { + + size = {x = 6, y = 2, z = 6}, + + yslice_prob = { + {ypos = 0, prob = 127}, + }, + + data = { + + _,_,s,_,_,_, + _,_,_,_,_,_, + + _,s,l,s,_,_, + _,_,s,d,_,_, + + _,s,l,l,s,_, + _,s,_,_,s,_, + + s,l,l,l,s,_, + _,s,_,_,d,_, + + _,d,l,l,d,d, + _,_,s,d,_,_, + + _,_,d,d,d,_, + _,_,_,_,_,_, + + } +} |