-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapgen.lua
47 lines (36 loc) · 822 Bytes
/
mapgen.lua
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
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_grass"},
sidelen = 16,
noise_params = {
offset = 0,
scale = 0.0002,
spread = {x = 200, y = 200, z = 200},
seed = 230,
octaves = 3,
persist = 0.66
},
biomes = {"grassland", "deciduous_forest", "floatland_grassland"},
y_min = 4,
y_max = 31000,
decoration = "gourds:pumpkin_vine_root",
param2 = 4,
})
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_grass"},
sidelen = 16,
noise_params = {
offset = 0,
scale = 0.0002,
spread = {x = 200, y = 200, z = 200},
seed = 230,
octaves = 3,
persist = 0.66
},
biomes = {"grassland", "deciduous_forest", "floatland_grassland"},
y_min = 4,
y_max = 31000,
decoration = "gourds:watermelon_vine_root",
param2 = 4,
})