File: banana_tree.lua

package info (click to toggle)
minetest-mod-ethereal 20210923-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,504 kB
  • sloc: makefile: 2
file content (85 lines) | stat: -rw-r--r-- 1,387 bytes parent folder | download
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
78
79
80
81
82
83
84
85

local _ = {name = "air", param1 = 0}
local T = {name = "ethereal:banana_trunk", param1 = 255}
local L = {name = "ethereal:bananaleaves", param1 = 255}
local l = {name = "ethereal:bananaleaves", param1 = 180}
local B = {name = "ethereal:banana", param1 = 255}
local b = {name = "ethereal:banana", param1 = 070}

ethereal.bananatree = {

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

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

	data = {

	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,l,_,_,_,

	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,l,_,_,_,
	_,_,_,L,_,_,_,

	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,b,_,_,_,
	_,_,_,B,_,_,_,
	_,_,_,L,_,_,_,
	_,_,_,_,_,_,_,

	_,_,_,T,_,_,_,
	_,_,_,T,_,_,_,
	_,_,_,T,_,_,_,
	_,_,_,T,_,_,_,
	_,_,b,T,b,_,_,
	_,_,B,T,B,_,_,
	_,L,L,L,L,L,_,
	l,l,_,L,_,l,l,

	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,b,_,_,_,
	_,_,_,B,_,_,_,
	_,_,_,L,_,_,_,
	_,_,_,_,_,_,_,

	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,L,_,_,_,
	_,_,_,l,_,_,_,

	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,_,_,_,_,
	_,_,_,l,_,_,_,

	}
}