From 0ea9f423ca076f42d82059be3f5e4d9ad23ce30b Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Mon, 3 Sep 2018 20:43:00 +0100 Subject: redo schems, add firethorn and igloo, tweak mapgen --- schematics/bush.lua | 49 ++++++++++++++++++++++++------------------------- 1 file changed, 24 insertions(+), 25 deletions(-) (limited to 'schematics/bush.lua') diff --git a/schematics/bush.lua b/schematics/bush.lua index 1395b06..d0a0ed3 100644 --- a/schematics/bush.lua +++ b/schematics/bush.lua @@ -1,39 +1,38 @@ --- bush - -local ai = {name = "air", param1 = 000} -local bp = {name = "ethereal:bush", param1 = 255} -local br = {name = "ethereal:bush", param1 = 100} +local _ = {name = "air", param1 = 0} +local B = {name = "ethereal:bush", param1 = 255} +local b = {name = "ethereal:bush", param1 = 100} ethereal.bush = { size = {x = 5, y = 3, z = 5}, - data = { + yslice_prob = { + {ypos = 0, prob = 127}, + {ypos = 2, prob = 127}, + }, - br, bp, bp, bp, br, - ai, ai, ai, ai, ai, - ai, ai, ai, ai, ai, + data = { - bp, bp, bp, bp, bp, - ai, br, bp, br, ai, - ai, ai, ai, ai, ai, + b,B,B,B,b, + _,_,_,_,_, + _,_,_,_,_, - bp, bp, bp, bp, bp, - ai, bp, bp, bp, ai, - ai, ai, br, ai, ai, + B,B,B,B,B, + _,b,B,b,_, + _,_,_,_,_, - bp, bp, bp, bp, bp, - ai, br, bp, br, ai, - ai, ai, ai, ai, ai, + B,B,B,B,B, + _,B,B,B,_, + _,_,b,_,_, - br, bp, bp, bp, br, - ai, ai, ai, ai, ai, - ai, ai, ai, ai, ai, + B,B,B,B,B, + _,b,B,b,_, + _,_,_,_,_, - }, + b,B,B,B,b, + _,_,_,_,_, + _,_,_,_,_, - yslice_prob = { - {ypos = 1, prob = 127}, - }, + } } -- cgit v1.2.3