-
Notifications
You must be signed in to change notification settings - Fork 1
/
biomes.lua
631 lines (519 loc) · 20.5 KB
/
biomes.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
-- register biome helper
local function register_biome(enabled, def)
if enabled ~= 1 then return end
def.node_dungeon = def.node_dungeon or "default:cobble"
def.node_dungeon_alt = def.node_dungeon and "" or "default:mossycobble"
def.node_dungeon_stair = def.node_dungeon_stair or "stairs:stair_cobble"
if def.y_max > 0 and def.node_riverbed == nil then
def.node_riverbed = "default:sand" ; def.depth_riverbed = 2
end
if def.y_min > 0 then def.vertical_blend = 1 end
minetest.register_biome(def)
--[[print('{"name": "' .. def.name .. '", "heat_point": ' ..def.heat_point .. ', "humidity_point": '
.. def.humidity_point .. ', "y_min": ' .. def.y_min .. ', "y_max": ' .. def.y_max .. '}')]]
end
-- old biome setting (when enabled old heat/humidity values are used)
local old = minetest.settings:get_bool("ethereal.old_biomes")
-- mountain
register_biome(1, {
name = "mountain",
heat_point = 50, humidity_point = 50,
y_min = 140, y_max = 31000,
node_top = "default:snow", depth_top = 1,
node_filler = "default:snowblock", depth_filler = 2})
-- grassland
register_biome(1, {
name = "grassland",
heat_point = old and 45 or 50, humidity_point = old and 65 or 35,
y_min = 3, y_max = 71,
node_top = "default:dirt_with_grass", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(1, {
name = "grassland_ocean",
heat_point = old and 45 or 50, humidity_point = old and 65 or 35,
y_min = -192, y_max = 2,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 3})
register_biome(1, {
name = "grassland_under",
node_cave_liquid = {"default:water_source", "default:lava_source"},
heat_point = old and 45 or 50, humidity_point = old and 65 or 35,
y_min = -31000, y_max = -256})
-- desert
register_biome(ethereal.desert, {
name = "desert",
heat_point = old and 35 or 92, humidity_point = old and 20 or 16,
y_min = 3, y_max = 23,
node_top = "default:desert_sand", depth_top = 1,
node_filler = "default:desert_sand", depth_filler = 3,
node_stone = "default:desert_stone",
node_dungeon_alt = "default:desert_cobble",
node_dungeon = "default:desert_stone",
node_dungeon_stair = "stairs:stair_desert_stone"})
register_biome(ethereal.desert, {
name = "desert_ocean",
heat_point = old and 35 or 92, humidity_point = old and 20 or 16,
y_min = -192, y_max = 3,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2,
node_stone = "default:desert_stone",
node_dungeon_alt = "default:desert_cobble",
node_dungeon = "default:desert_stone",
node_dungeon_stair = "stairs:stair_desert_stone"})
register_biome(ethereal.desert, {
name = "desert_under",
heat_point = old and 35 or 92, humidity_point = old and 20 or 16,
y_min = -31000, y_max = -256,
node_cave_liquid = {"default:water_source", "default:lava_source"}})
-- bamboo
register_biome(ethereal.bamboo, {
name = "bamboo",
heat_point = 45, humidity_point = old and 75 or 45,
y_min = 3, y_max = 70,
node_top = "ethereal:bamboo_dirt", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(ethereal.bamboo, {
name = "bamboo_ocean",
heat_point = 45, humidity_point = old and 75 or 45,
y_min = -192, y_max = 2,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2})
-- mesa
register_biome(ethereal.mesa, {
name = "mesa",
heat_point = 25, humidity_point = old and 28 or 10,
y_min = 18, y_max = 71,
node_top = old and "default:dirt_with_dry_grass" or "bakedclay:orange", depth_top = 1,
node_filler = "bakedclay:orange", depth_filler = 15,
node_riverbed = "default:desert_sand", depth_riverbed = 2,
node_dungeon_alt = "default:desert_sandstone",
node_dungeon = "default:desert_sandstone_brick",
node_dungeon_stair = "stairs:stair_desert_sandstone_brick"})
register_biome(ethereal.mesa, {
name = "mesa_redwood",
heat_point = 25, humidity_point = old and 28 or 10,
y_min = 11, y_max = 17,
node_top = "default:dirt_with_dry_grass", depth_top = 1,
node_filler = "bakedclay:orange", depth_filler = 15,
node_riverbed = "default:desert_sand", depth_riverbed = 2,
node_dungeon_alt = "",
node_dungeon = "default:desert_sandstone",
node_dungeon_stair = "stairs:stair_desert_sandstone"})
register_biome(ethereal.mesa, {
name = "mesa_beach",
heat_point = 25, humidity_point = old and 28 or 10,
y_min = -1, y_max = 10,
node_top = "default:desert_sand", depth_top = 1,
node_filler = "bakedclay:orange", depth_filler = 2,
node_riverbed = "default:desert_sand", depth_riverbed = 2,
node_dungeon_alt = "",
node_dungeon = "default:desert_sandstone",
node_dungeon_stair = "stairs:stair_desert_sandstone"})
register_biome(ethereal.mesa, {
name = "mesa_ocean",
heat_point = 25, humidity_point = old and 28 or 10,
y_min = -192, y_max = -2,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2})
-- coniferous forest
register_biome(ethereal.snowy, {
name = "coniferous_forest",
heat_point = old and 10 or 45, humidity_point = old and 40 or 70,
y_min = 6, y_max = 140,
node_top = "default:dirt_with_coniferous_litter", depth_top = 1,
node_filler = "default:dirt", depth_filler = 2})
register_biome(ethereal.snowy, {
name = "coniferous_forest_dunes",
heat_point = old and 10 or 45, humidity_point = old and 40 or 70,
y_min = 4, y_max = 5,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 3,
vertical_blend = 1})
register_biome(ethereal.snowy, {
name = "coniferous_forest_ocean",
heat_point = old and 10 or 45, humidity_point = old and 40 or 70,
y_min = -255, y_max = 3,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2})
register_biome(ethereal.snowy, {
name = "coniferous_forest_under",
heat_point = old and 10 or 45, humidity_point = old and 40 or 70,
y_min = -31000, y_max = -256,
node_cave_liquid = {"default:water_source", "default:lava_source"}})
-- taiga
register_biome(ethereal.alpine, {
name = "taiga",
heat_point = old and 10 or 25, humidity_point = old and 40 or 70,
y_min = 4, y_max = 140,
node_top = "default:dirt_with_snow", depth_top = 1,
node_filler = "default:dirt", depth_filler = 2})
register_biome(ethereal.alpine, {
name = "taiga_ocean",
heat_point = old and 10 or 25, humidity_point = old and 40 or 70,
y_min = -255, y_max = 3,
node_dust = "default:snow",
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 3,
node_cave_liquid = "default:water_source",
vertical_blend = 1})
register_biome(ethereal.alpine, {
name = "taiga_under",
heat_point = old and 10 or 25, humidity_point = old and 40 or 70,
y_min = -31000, y_max = -256,
node_cave_liquid = {"default:water_source", "default:lava_source"}})
-- frost
register_biome(ethereal.frost, {
name = "frost_floatland",
heat_point = old and 10 or 5, humidity_point = old and 40 or 60,
y_min = 1025, y_max = 1750,
node_top = "ethereal:crystal_dirt", depth_top = 1,
node_filler = "default:dirt", depth_filler = 2})
register_biome(ethereal.frost, {
name = "frost",
heat_point = old and 10 or 5, humidity_point = old and 40 or 60,
y_min = 2, y_max = 71,
node_top = "ethereal:crystal_dirt", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(ethereal.frost, {
name = "frost_ocean",
heat_point = old and 10 or 5, humidity_point = old and 40 or 60,
y_min = -192, y_max = 1,
node_top = "default:silver_sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 3})
-- deciduous forest
register_biome(ethereal.grassy, {
name = "deciduous_forest",
heat_point = old and 13 or 60, humidity_point = old and 40 or 68,
y_min = 3, y_max = 91,
node_top = "default:dirt_with_grass", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(ethereal.grassy, {
name = "deciduous_forest_ocean",
heat_point = old and 13 or 60, humidity_point = old and 40 or 68,
y_min = -31000, y_max = 3,
node_top = "default:sand", depth_top = 2,
node_filler = "default:gravel", depth_filler = 1})
register_biome(ethereal.grassy, {
name = "deciduous_forest_under",
heat_point = old and 13 or 60, humidity_point = old and 40 or 68,
y_min = -31000, y_max = -256,
node_cave_liquid = {"default:water_source", "default:lava_source"}})
-- caves
register_biome(ethereal.caves, {
name = "caves",
heat_point = old and 15 or 70, humidity_point = old and 25 or 5,
y_min = 4, y_max = 41,
node_top = "default:desert_stone", depth_top = 3,
node_filler = "air", depth_filler = 8,
node_dungeon_alt = "",
node_dungeon = "default:desert_cobble",
node_dungeon_stair = "stairs:stair_desert_cobble"})
-- grayness
register_biome(ethereal.grayness, {
name = "grayness",
heat_point = 15, humidity_point = old and 25 or 30,
y_min = 2, y_max = 41,
node_top = "ethereal:gray_dirt", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(ethereal.grayness, {
name = "grayness_ocean",
heat_point = 15, humidity_point = old and 25 or 30,
y_min = -22, y_max = 2,
node_top = "default:silver_sand", depth_top = 2,
node_filler = "default:sand", depth_filler = 2,
node_stone = "ethereal:blue_marble",
node_dungeon_alt = "",
node_dungeon = "ethereal:blue_marble",
node_dungeon_stair = "stairs:stair_blue_marble"})
register_biome(ethereal.grayness, {
name = "grayness_under",
heat_point = 15, humidity_point = old and 25 or 30,
y_min = -31000, y_max = -23,
node_cave_liquid = {"default:water_source", "default:lava_source"}})
-- grassy two
register_biome(ethereal.grassytwo, {
name = "grassytwo",
heat_point = 15, humidity_point = old and 40 or 25,
y_min = 1, y_max = 91,
node_top = "default:dirt_with_grass", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(ethereal.grassytwo, {
name = "grassytwo_ocean",
heat_point = 15, humidity_point = old and 40 or 25,
y_min = -192, y_max = 2,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2})
-- prairie
register_biome(ethereal.prairie, {
name = "prairie",
heat_point = old and 20 or 30, humidity_point = old and 40 or 35,
y_min = 3, y_max = 26,
node_top = "ethereal:prairie_dirt", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(ethereal.prairie, {
name = "prairie_ocean",
heat_point = old and 20 or 30, humidity_point = old and 40 or 35,
y_min = -192, y_max = 2,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2})
-- jumble
register_biome(ethereal.jumble, {
name = "jumble",
heat_point = 25, humidity_point = old and 50 or 55,
y_min = 1, y_max = 71,
node_top = "default:dirt_with_grass", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(ethereal.jumble, {
name = "jumble_ocean",
heat_point = 25, humidity_point = old and 50 or 55,
y_min = -192, y_max = 1,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2})
-- rainforest
register_biome(ethereal.junglee, {
name = "rainforest",
heat_point = old and 30 or 86, humidity_point = old and 60 or 65,
y_min = 1, y_max = 71,
node_top = "default:dirt_with_rainforest_litter", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(ethereal.junglee, {
name = "rainforest_ocean",
heat_point = old and 30 or 86, humidity_point = old and 60 or 65,
y_min = -192, y_max = 0,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2})
register_biome(ethereal.junglee, {
name = "rainforest_under",
heat_point = old and 30 or 86, humidity_point = old and 60 or 65,
y_min = -31000, y_max = -256,
node_cave_liquid = {"default:water_source", "default:lava_source"}})
-- swamp
register_biome(ethereal.swamp, {
name = "swamp",
heat_point = 80, humidity_point = 90, y_min = 1, y_max = 7,
node_top = "default:dirt_with_grass", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(ethereal.quicksand, {
name = "swamp_beach",
heat_point = 80, humidity_point = 90, y_min = -1, y_max = 0,
node_top = "ethereal:quicksand2", depth_top = 3,
node_filler = "default:clay", depth_filler = 2,
vertical_blend = 1})
register_biome(ethereal.swamp, {
name = "swamp_ocean",
heat_point = 80, humidity_point = 90, y_min = -192, y_max = -1,
node_top = "default:sand", depth_top = 2,
node_filler = "default:clay", depth_filler = 2,
vertical_blend = 2})
-- grove
register_biome(ethereal.grove, {
name = "grove",
heat_point = old and 45 or 40, humidity_point = old and 35 or 25,
y_min = 3, y_max = 23,
node_top = "ethereal:grove_dirt", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(ethereal.grove, {
name = "grove_ocean",
heat_point = old and 45 or 40, humidity_point = old and 35 or 25,
y_min = -192, y_max = 2,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2})
-- meditteranean
register_biome(ethereal.mediterranean, {
name = "mediterranean",
heat_point = old and 20 or 30, humidity_point = 45,
y_min = 3, y_max = 50,
node_top = "ethereal:grove_dirt", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
-- mushroom
register_biome(ethereal.mushroom, {
name = "mushroom",
heat_point = 45, humidity_point = old and 55 or 82,
y_min = 4, y_max = 50,
node_top = "ethereal:mushroom_dirt", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(ethereal.mushroom, {
name = "mushroom_ocean",
heat_point = 45, humidity_point = old and 55 or 82,
y_min = -255, y_max = 5,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2,
vertical_blend = 1})
-- sandstone desert
register_biome(ethereal.sandstone, {
name = "sandstone_desert",
heat_point = old and 50 or 60, humidity_point = old and 20 or 0,
y_min = 3, y_max = 23,
node_top = "default:sandstone", depth_top = 1,
node_filler = "default:sandstone", depth_filler = 1,
node_stone = "default:sandstone",
node_dungeon_alt = "",
node_dungeon = "default:sandstone",
node_dungeon_stair = "stairs:stair_sandstone"})
register_biome(ethereal.sandstone, {
name = "sandstone_desert_ocean",
heat_point = old and 50 or 60, humidity_point = old and 20 or 0,
y_min = -192, y_max = 2,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2,
node_stone = "default:sandstone",
node_dungeon_alt = "",
node_dungeon = "default:sandstone",
node_dungeon_stair = "stairs:stair_sandstone"})
register_biome(ethereal.sandstone, {
name = "sandstone_desert_under",
heat_point = old and 50 or 60, humidity_point = old and 20 or 0,
y_min = -31000, y_max = -256,
node_cave_liquid = {"default:water_source", "default:lava_source"}})
-- plains
register_biome(ethereal.plains, {
name = "plains",
heat_point = old and 65 or 74, humidity_point = old and 25 or 23,
y_min = 3, y_max = 25,
node_top = "ethereal:dry_dirt", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3,
node_dungeon_alt = "",
node_dungeon = "ethereal:dry_dirt",
node_dungeon_stair = "stairs:stair_dry_dirt"})
register_biome(ethereal.plains, {
name = "plains_ocean",
heat_point = old and 65 or 74, humidity_point = old and 25 or 23,
y_min = -192, y_max = 2,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2})
-- savanna
register_biome(ethereal.savanna, {
name = "savanna",
heat_point = old and 55 or 89, humidity_point = old and 25 or 42,
y_min = 3, y_max = 50,
node_top = "default:dry_dirt_with_dry_grass", depth_top = 1,
node_filler = "default:dry_dirt", depth_filler = 3})
register_biome(ethereal.savanna, {
name = "savanna_ocean",
heat_point = old and 55 or 89, humidity_point = old and 25 or 42,
y_min = -192, y_max = 2,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2})
register_biome(ethereal.savanna, {
name = "savanna_under",
heat_point = old and 55 or 89, humidity_point = old and 25 or 42,
y_min = -31000, y_max = -256,
node_cave_liquid = {"default:water_source", "default:lava_source"}})
-- fiery
register_biome(ethereal.fiery, {
name = "fiery",
heat_point = old and 75 or 80, humidity_point = 10,
y_min = 5, y_max = 20,
node_top = "ethereal:fiery_dirt", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(ethereal.fiery, {
name = "fiery_beach",
heat_point = old and 75 or 80, humidity_point = 10,
y_min = 1, y_max = 4,
node_top = "default:desert_sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2})
register_biome(ethereal.fiery, {
name = "fiery_ocean",
heat_point = old and 75 or 80, humidity_point = 10,
y_min = -192, y_max = 2,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 2})
register_biome(ethereal.fiery, {
name = "fiery_under",
heat_point = old and 75 or 80, humidity_point = 10,
y_min = -31000, y_max = -256,
node_cave_liquid = {"default:lava_source"}})
-- glacier
register_biome(ethereal.glacier, {
name = "glacier",
heat_point = 0, humidity_point = old and 50 or 73,
y_min = -8, y_max = 31000,
node_dust = "default:snowblock",
node_top = "default:snowblock", depth_top = 1,
node_filler = "default:snowblock", depth_filler = 3,
node_stone = "default:ice",
node_water_top = "default:ice", depth_water_top = 10,
node_river_water = "default:ice",
node_riverbed = "default:gravel", depth_riverbed = 2,
node_dungeon = "ethereal:icebrick", node_dungeon_alt = "default:ice",
node_dungeon_stair = "stairs:stair_ice"})
register_biome(ethereal.glacier, {
name = "glacier_ocean",
heat_point = 0, humidity_point = old and 50 or 73,
y_min = -112, y_max = -9,
node_dust = "default:snowblock",
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 3})
register_biome(ethereal.glacier, {
name = "glacier_under",
heat_point = 0, humidity_point = old and 50 or 73,
y_max = -256, y_min = -31000,
node_cave_liquid = {"default:water_source", "default:lava_source"},
node_dungeon = "default:cobble",
node_dungeon_alt = "default:mossycobble",
node_dungeon_stair = "stairs:stair_cobble"})
-- tundra
register_biome(ethereal.tundra, {
name = "tundra_highland",
heat_point = 0, humidity_point = 40, y_max = 180, y_min = 47,
node_dust = "default:snow",
node_riverbed = "default:gravel", depth_riverbed = 2})
register_biome(ethereal.tundra, {
name = "tundra",
heat_point = 0, humidity_point = 40, y_max = 46, y_min = 2,
node_top = "default:permafrost_with_stones", depth_top = 1,
node_filler = "default:permafrost", depth_filler = 1,
node_riverbed = "default:gravel", depth_riverbed = 2,
vertical_blend = 4})
register_biome(ethereal.tundra, {
name = "tundra_beach",
heat_point = 0, humidity_point = 40, y_max = 1, y_min = -3,
node_top = "default:gravel", depth_top = 1,
node_filler = "default:gravel", depth_filler = 2,
node_riverbed = "default:gravel", depth_riverbed = 2,
vertical_blend = 1})
register_biome(ethereal.tundra, {
name = "tundra_ocean",
heat_point = 0, humidity_point = 40, y_max = -4, y_min = -112,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 3,
node_riverbed = "default:gravel", depth_riverbed = 2,
vertical_blend = 1})
register_biome(ethereal.tundra, {
name = "tundra_under",
heat_point = 0, humidity_point = 40, y_max = -256, y_min = -31000,
node_cave_liquid = {"default:water_source", "default:lava_source"}})
-- only register when using new mapgen
if not old then
-- cold desert
register_biome(ethereal.cold_desert, {
name = "cold_desert",
heat_point = 20, humidity_point = 85, y_min = 4, y_max = 100,
node_top = "default:silver_sand", depth_top = 1,
node_filler = "default:silver_sand", depth_filler = 1,
node_riverbed = "default:silver_sand", depth_riverbed = 2})
register_biome(ethereal.cold_desert, {
name = "cold_desert_ocean",
heat_point = 20, humidity_point = 85, y_min = -255, y_max = 3,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 3,
node_cave_liquid = "default:water_source",
vertical_blend = 1})
register_biome(ethereal.cold_desert, {
name = "cold_desert_under",
node_cave_liquid = {"default:water_source", "default:lava_source"},
heat_point = 20, humidity_point = 85, y_min = -31000, y_max = -256})
-- snowy grassland (inbetween frost and taiga/jumble)
register_biome(ethereal.snowy_grassland, {
name = "snowy_grassland",
heat_point = 15, humidity_point = 58, y_min = 3, y_max = 30,
node_top = "ethereal:cold_dirt", depth_top = 1,
node_filler = "default:dirt", depth_filler = 3})
register_biome(ethereal.snowy_grassland, {
name = "snowy_grassland_ocean",
node_dust = "default:snow",
heat_point = 15, humidity_point = 58, y_min = -192, y_max = 2,
node_top = "default:sand", depth_top = 1,
node_filler = "default:sand", depth_filler = 3,
vertical_blend = 1})
end