summaryrefslogtreecommitdiff
path: root/schematics/orange_tree.lua
blob: c7cff9c2cf5d18a13db75cf92727bf44b324adf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

-- orange tree

local ai = {name = "air", param1 = 000}
local lp = {name = "ethereal:orange_leaves", param1 = 255}
local lr = {name = "ethereal:orange_leaves", param1 = 200}
local tr = {name = "default:tree", param1 = 255}
local of = {name = "ethereal:orange", param1 = 100}

ethereal.orangetree = {

	size = {x = 3, y = 6, z = 3},

	data = {

		ai, ai, ai,
		ai, ai, ai,
		ai, ai, ai,
		lr, lr, of,
		lp, lp, lp,
		lr, of, lr,

		ai, tr, ai,
		ai, tr, ai,
		ai, tr, ai,
		lr, tr, lr,
		lp, tr, lp,
		lr, lp, lr,

		ai, ai, ai,
		ai, ai, ai,
		ai, ai, ai,
		of, lr, lr,
		lp, lp, lp,
		lr, lr, lr,

	},

	yslice_prob = {
		{ypos = 1, prob = 127},
	},
}