summaryrefslogtreecommitdiff
path: root/schematics/vinetree.lua
blob: be542762031ed31518e206fa1b42102dacbc3994 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77

local _ = {name = "air", prob = 0}
local T = {name = "default:tree", prob = 255}
local L = {name = "default:leaves", prob = 255}
local u = {name = "ethereal:vine", prob = 255, param2 = 2}
local U = {name = "ethereal:vine", prob = 255, param2 = 3}
local W = {name = "ethereal:vine", prob = 255, param2 = 4}
local w = {name = "ethereal:vine", prob = 255, param2 = 5}

ethereal.vinetree = {

	size = {x = 7, y = 7, z = 7},

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

	data = {

	_,_,_,_,_,_,_,
	_,W,_,_,_,_,_,
	_,W,_,W,_,_,_,
	_,W,_,W,_,_,_,
	_,W,_,_,_,W,_,
	_,W,_,_,_,W,_,
	_,_,_,_,_,_,_,

	_,_,_,_,_,_,_,
	_,_,_,_,W,_,_,
	_,_,_,_,W,_,_,
	_,L,L,L,W,L,_,
	_,L,L,_,L,L,_,
	_,L,L,L,L,L,_,
	_,_,_,_,_,_,_,

	_,_,_,_,_,_,U,
	_,_,_,_,_,_,U,
	_,_,_,_,_,_,U,
	_,L,T,_,T,L,U,
	u,L,L,L,L,_,_,
	_,_,L,L,L,L,_,
	_,_,L,L,L,_,_,

	_,_,_,T,_,_,_,
	_,_,_,T,_,_,_,
	u,_,_,T,_,_,_,
	u,L,_,L,_,L,_,
	u,L,L,L,L,L,_,
	_,L,L,L,L,L,_,
	_,_,L,L,L,_,_,

	_,_,_,_,_,_,_,
	_,_,_,_,_,_,U,
	_,_,_,_,_,_,U,
	_,L,T,_,T,L,U,
	_,L,L,L,L,L,U,
	_,L,L,L,L,L,_,
	_,_,_,L,L,_,_,

	_,_,_,_,_,_,_,
	u,_,_,_,_,_,_,
	u,_,_,_,w,_,_,
	u,L,L,L,w,L,_,
	_,L,L,L,L,_,_,
	_,_,L,L,L,L,_,
	_,_,_,_,_,_,_,

	_,_,_,_,_,_,_,
	_,_,w,_,_,_,_,
	_,_,w,_,_,_,_,
	_,_,w,w,_,_,_,
	_,_,_,w,w,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,

	}
}