File: volcanom.lua

package info (click to toggle)
minetest-mod-ethereal 20181016-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,072 kB
  • sloc: makefile: 2
file content (36 lines) | stat: -rw-r--r-- 483 bytes parent folder | download | duplicates (3)
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

local _ = {name = "air", prob = 0}
local l = {name = "default:lava_source", prob = 225}
local s = {name = "default:stone", prob = 255}
local d = {name = "ethereal:fiery_dirt", prob = 255}

ethereal.volcanom = {

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

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

	data = {

	_,_,s,_,_,_,
	_,_,_,_,_,_,

	_,s,l,s,_,_,
	_,_,s,d,_,_,

	_,s,l,l,s,_,
	_,s,_,_,s,_,

	s,l,l,l,s,_,
	_,s,_,_,d,_,

	_,d,l,l,d,d,
	_,_,s,d,_,_,

	_,_,d,d,d,_,
	_,_,_,_,_,_,

	}
}