diff options
| author | root <root@linux-forks.de> | 2018-09-14 16:56:37 +0200 | 
|---|---|---|
| committer | root <root@linux-forks.de> | 2018-09-14 16:56:37 +0200 | 
| commit | 31fe2ff374e72fb8ea44d50cd82d6fc8b9be5463 (patch) | |
| tree | 87768ea1339a0c838716d8bb3418e35a80b00c46 /schematics/bamboo_tree.lua | |
| parent | b32bd2d50b685e9f550f1138d3db1ed0c6504d2c (diff) | |
| parent | 43d62b57428b4738a7e8cee0fae78b1147f9b085 (diff) | |
Merge branch 'master' of https://notabug.org/TenPlus1/ethereal
Diffstat (limited to 'schematics/bamboo_tree.lua')
| -rw-r--r-- | schematics/bamboo_tree.lua | 130 | 
1 files changed, 65 insertions, 65 deletions
diff --git a/schematics/bamboo_tree.lua b/schematics/bamboo_tree.lua index 15709da..b61f045 100644 --- a/schematics/bamboo_tree.lua +++ b/schematics/bamboo_tree.lua @@ -1,79 +1,79 @@ --- bamboo stalk with leaves - -local ai = {name = "air", param1 = 000} -local bt = {name = "ethereal:bamboo", param1 = 255} -local lp = {name = "ethereal:bamboo_leaves", param1 = 255} -local lr = {name = "ethereal:bamboo_leaves", param1 = 100} +local _ = {name = "air", param1 = 000} +local B = {name = "ethereal:bamboo", param1 = 255} +local L = {name = "ethereal:bamboo_leaves", param1 = 255} +local l = {name = "ethereal:bamboo_leaves", param1 = 100}  ethereal.bambootree = {  	size = {x = 3, y = 18, z = 3}, -	data = { +	yslice_prob = { +		{ypos = 0, prob = 127}, +		{ypos = 1, prob = 127}, +		{ypos = 2, prob = 127}, +	}, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		lr, lp, lr, -		ai, lp, ai, -		ai, ai, ai, +	data = { -		ai, bt, ai, -		ai, bt, ai, -		ai, bt, ai, -		ai, bt, ai, -		ai, bt, ai, -		ai, bt, ai, -		ai, bt, ai, -		ai, bt, ai, -		ai, bt, ai, -		ai, bt, ai, -		ai, bt, ai, -		ai, bt, ai, -		ai, bt, ai, -		ai, bt, ai, -		ai, bt, ai, -		lr, lp, lr, -		ai, lp, ai, -		ai, lr, ai, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	l,L,l, +	_,L,_, +	_,_,_, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		ai, ai, ai, -		lr, lp, lr, -		ai, lp, ai, -		ai, ai, ai, +	_,B,_, +	_,B,_, +	_,B,_, +	_,B,_, +	_,B,_, +	_,B,_, +	_,B,_, +	_,B,_, +	_,B,_, +	_,B,_, +	_,B,_, +	_,B,_, +	_,B,_, +	_,B,_, +	_,B,_, +	l,L,l, +	_,L,_, +	_,l,_, -	}, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	_,_,_, +	l,L,l, +	_,L,_, +	_,_,_, -	yslice_prob = { -		{ypos = 3, prob = 127}, -	}, +	}  }  if ethereal.papyruswalk == true then  | 
