-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrystal.lua
68 lines (64 loc) · 1.75 KB
/
crystal.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
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
minetest.register_biome({
name = "warm_crystal",
node_top = "default:stone",
depth_top = 1,
node_filler = "default:stone",
depth_filler = 1,
node_stone = "default:stone",
node_riverbed = "default:sand",
depth_riverbed = 2,
y_min = 1,
y_max = weird_biomes.max.y,
heat_point = 80,
humidity_point = 10,
})
minetest.register_biome({
name = "warm_crystal_ocean",
node_top = "default:sand",
depth_top = 1,
node_filler = "default:sand",
depth_filler = 2,
node_stone = "default:stone",
node_riverbed = "default:sand",
depth_riverbed = 2,
y_min = weird_biomes.secondary_min,
y_max = 0,
heat_point = 80,
humidity_point = 10,
})
minetest.register_biome({
name = "cold_crystal",
node_top = "default:stone",
depth_top = 1,
node_filler = "default:stone",
depth_filler = 1,
node_stone = "default:stone",
node_riverbed = "caverealms:salt_crystal",
depth_riverbed = 2,
node_water_top = "caverealms:thin_ice",
depth_water_top = 2,
node_river_water = "caverealms:thin_ice",
y_min = 1,
y_max = weird_biomes.max.y,
heat_point = 10,
humidity_point = 10,
})
minetest.register_biome({
name = "cold_crystal_ocean",
node_top = "caverealms:salt_crystal",
depth_top = 1,
node_filler = "caverealms:salt_crystal",
depth_filler = 2,
node_stone = "default:stone",
node_riverbed = "caverealms:salt_crystal",
depth_riverbed = 2,
node_water_top = "caverealms:thin_ice",
depth_water_top = 2,
node_river_water = "caverealms:thin_ice",
y_min = weird_biomes.secondary_min,
y_max = 0,
heat_point = 10,
humidity_point = 10,
})
weird_biomes.include("crystal_decorations.lua")
weird_biomes.include("crystal_ores.lua")