Skip to content

Commit 2119054

Browse files
committedOct 3, 2015
Mgv5/7 biomes: Add more shallow dirt waters
Dirt waters are more suitable for waterlilies Add dedicated dunes biome in coniferous forest Papyrus: use dirt base again Force-place roots on mapgen tree schematics Tune some humidity points to improve voronoi cells Add random rotation to jungle trees
1 parent ac810db commit 2119054

File tree

6 files changed

+110
-60
lines changed

6 files changed

+110
-60
lines changed
 

‎mods/default/mapgen.lua

+104-49
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ function default.register_biomes()
374374
y_min = 2,
375375
y_max = 31000,
376376
heat_point = 20,
377-
humidity_point = 30,
377+
humidity_point = 25,
378378
})
379379

380380
minetest.register_biome({
@@ -392,9 +392,10 @@ function default.register_biomes()
392392
y_min = -112,
393393
y_max = 1,
394394
heat_point = 20,
395-
humidity_point = 30,
395+
humidity_point = 25,
396396
})
397397

398+
398399
minetest.register_biome({
399400
name = "taiga",
400401
node_dust = "default:snow",
@@ -410,7 +411,7 @@ function default.register_biomes()
410411
y_min = 2,
411412
y_max = 31000,
412413
heat_point = 20,
413-
humidity_point = 70,
414+
humidity_point = 75,
414415
})
415416

416417
minetest.register_biome({
@@ -428,10 +429,10 @@ function default.register_biomes()
428429
y_min = -112,
429430
y_max = 1,
430431
heat_point = 20,
431-
humidity_point = 70,
432+
humidity_point = 75,
432433
})
433434

434-
-- Cool
435+
-- Temperate
435436

436437
minetest.register_biome({
437438
name = "stone_grassland",
@@ -445,10 +446,10 @@ function default.register_biomes()
445446
--depth_water_top = ,
446447
--node_water = "",
447448
--node_river_water = "",
448-
y_min = 6,
449+
y_min = 5,
449450
y_max = 31000,
450451
heat_point = 45,
451-
humidity_point = 30,
452+
humidity_point = 25,
452453
})
453454

454455
minetest.register_biome({
@@ -464,11 +465,12 @@ function default.register_biomes()
464465
--node_water = "",
465466
--node_river_water = "",
466467
y_min = -112,
467-
y_max = 5,
468+
y_max = 4,
468469
heat_point = 45,
469-
humidity_point = 30,
470+
humidity_point = 25,
470471
})
471472

473+
472474
minetest.register_biome({
473475
name = "coniferous_forest",
474476
--node_dust = "",
@@ -481,10 +483,28 @@ function default.register_biomes()
481483
--depth_water_top = ,
482484
--node_water = "",
483485
--node_river_water = "",
484-
y_min = 6,
486+
y_min = 9,
485487
y_max = 31000,
486488
heat_point = 45,
487-
humidity_point = 70,
489+
humidity_point = 75,
490+
})
491+
492+
minetest.register_biome({
493+
name = "coniferous_forest_dunes",
494+
--node_dust = "",
495+
node_top = "default:sand",
496+
depth_top = 1,
497+
node_filler = "default:sand",
498+
depth_filler = 2,
499+
--node_stone = "",
500+
--node_water_top = "",
501+
--depth_water_top = ,
502+
--node_water = "",
503+
--node_river_water = "",
504+
y_min = 5,
505+
y_max = 8,
506+
heat_point = 45,
507+
humidity_point = 75,
488508
})
489509

490510
minetest.register_biome({
@@ -500,12 +520,11 @@ function default.register_biomes()
500520
--node_water = "",
501521
--node_river_water = "",
502522
y_min = -112,
503-
y_max = 5,
523+
y_max = 4,
504524
heat_point = 45,
505-
humidity_point = 70,
525+
humidity_point = 75,
506526
})
507527

508-
-- Warm
509528

510529
minetest.register_biome({
511530
name = "sandstone_grassland",
@@ -519,10 +538,10 @@ function default.register_biomes()
519538
--depth_water_top = ,
520539
--node_water = "",
521540
--node_river_water = "",
522-
y_min = 6,
541+
y_min = 5,
523542
y_max = 31000,
524543
heat_point = 70,
525-
humidity_point = 30,
544+
humidity_point = 25,
526545
})
527546

528547
minetest.register_biome({
@@ -538,11 +557,12 @@ function default.register_biomes()
538557
--node_water = "",
539558
--node_river_water = "",
540559
y_min = -112,
541-
y_max = 5,
560+
y_max = 4,
542561
heat_point = 70,
543-
humidity_point = 30,
562+
humidity_point = 25,
544563
})
545564

565+
546566
minetest.register_biome({
547567
name = "deciduous_forest",
548568
--node_dust = "",
@@ -555,10 +575,28 @@ function default.register_biomes()
555575
--depth_water_top = ,
556576
--node_water = "",
557577
--node_river_water = "",
558-
y_min = 6,
578+
y_min = 1,
559579
y_max = 31000,
560580
heat_point = 70,
561-
humidity_point = 70,
581+
humidity_point = 75,
582+
})
583+
584+
minetest.register_biome({
585+
name = "deciduous_forest_swamp",
586+
--node_dust = "",
587+
node_top = "default:dirt",
588+
depth_top = 1,
589+
node_filler = "default:dirt",
590+
depth_filler = 2,
591+
--node_stone = "",
592+
--node_water_top = "",
593+
--depth_water_top = ,
594+
--node_water = "",
595+
--node_river_water = "",
596+
y_min = -3,
597+
y_max = 0,
598+
heat_point = 70,
599+
humidity_point = 75,
562600
})
563601

564602
minetest.register_biome({
@@ -574,9 +612,9 @@ function default.register_biomes()
574612
--node_water = "",
575613
--node_river_water = "",
576614
y_min = -112,
577-
y_max = 5,
615+
y_max = -4,
578616
heat_point = 70,
579-
humidity_point = 70,
617+
humidity_point = 75,
580618
})
581619

582620
-- Hot
@@ -617,6 +655,7 @@ function default.register_biomes()
617655
humidity_point = 10,
618656
})
619657

658+
620659
minetest.register_biome({
621660
name = "savanna",
622661
--node_dust = "",
@@ -629,12 +668,30 @@ function default.register_biomes()
629668
--depth_water_top = ,
630669
--node_water = "",
631670
--node_river_water = "",
632-
y_min = 5,
671+
y_min = 1,
633672
y_max = 31000,
634673
heat_point = 95,
635674
humidity_point = 50,
636675
})
637676

677+
minetest.register_biome({
678+
name = "savanna_swamp",
679+
--node_dust = "",
680+
node_top = "default:dirt",
681+
depth_top = 1,
682+
node_filler = "default:dirt",
683+
depth_filler = 2,
684+
--node_stone = "",
685+
--node_water_top = "",
686+
--depth_water_top = ,
687+
--node_water = "",
688+
--node_river_water = "",
689+
y_min = -3,
690+
y_max = 0,
691+
heat_point = 95,
692+
humidity_point = 50,
693+
})
694+
638695
minetest.register_biome({
639696
name = "savanna_ocean",
640697
--node_dust = "",
@@ -648,11 +705,12 @@ function default.register_biomes()
648705
--node_water = "",
649706
--node_river_water = "",
650707
y_min = -112,
651-
y_max = 4,
708+
y_max = -4,
652709
heat_point = 95,
653710
humidity_point = 50,
654711
})
655712

713+
656714
minetest.register_biome({
657715
name = "rainforest",
658716
--node_dust = "",
@@ -683,7 +741,7 @@ function default.register_biomes()
683741
--depth_water_top = ,
684742
--node_water = "",
685743
--node_river_water = "",
686-
y_min = 0,
744+
y_min = -3,
687745
y_max = 0,
688746
heat_point = 95,
689747
humidity_point = 90,
@@ -702,7 +760,7 @@ function default.register_biomes()
702760
--node_water = "",
703761
--node_river_water = "",
704762
y_min = -112,
705-
y_max = -1,
763+
y_max = -4,
706764
heat_point = 95,
707765
humidity_point = 90,
708766
})
@@ -713,9 +771,9 @@ function default.register_biomes()
713771
name = "underground",
714772
--node_dust = "",
715773
--node_top = "",
716-
depth_top = 0,
774+
--depth_top = ,
717775
--node_filler = "",
718-
depth_filler = -4,
776+
--depth_filler = ,
719777
--node_stone = "",
720778
--node_water_top = "",
721779
--depth_water_top = ,
@@ -833,18 +891,14 @@ local function register_grass_decoration(offset, scale, length)
833891
noise_params = {
834892
offset = offset,
835893
scale = scale,
836-
spread = {x=200, y=200, z=200},
894+
spread = {x = 200, y = 200, z = 200},
837895
seed = 329,
838896
octaves = 3,
839897
persist = 0.6
840898
},
841-
biomes = {
842-
"stone_grassland", "stone_grassland_ocean",
843-
"sandstone_grassland", "sandstone_grassland_ocean",
844-
"deciduous_forest", "deciduous_forest_ocean",
845-
"coniferous_forest", "coniferous_forest_ocean",
846-
},
847-
y_min = 5,
899+
biomes = {"stone_grassland", "sandstone_grassland",
900+
"deciduous_forest", "coniferous_forest", "coniferous_forest_dunes"},
901+
y_min = 1,
848902
y_max = 31000,
849903
decoration = "default:grass_"..length,
850904
})
@@ -858,13 +912,13 @@ local function register_dry_grass_decoration(offset, scale, length)
858912
noise_params = {
859913
offset = offset,
860914
scale = scale,
861-
spread = {x=200, y=200, z=200},
915+
spread = {x = 200, y = 200, z = 200},
862916
seed = 329,
863917
octaves = 3,
864918
persist = 0.6
865919
},
866920
biomes = {"savanna"},
867-
y_min = 5,
921+
y_min = 1,
868922
y_max = 31000,
869923
decoration = "default:dry_grass_"..length,
870924
})
@@ -882,13 +936,13 @@ function default.register_decorations()
882936
noise_params = {
883937
offset = 0.04,
884938
scale = 0.02,
885-
spread = {x=250, y=250, z=250},
939+
spread = {x = 250, y = 250, z = 250},
886940
seed = 2,
887941
octaves = 3,
888942
persist = 0.66
889943
},
890944
biomes = {"deciduous_forest"},
891-
y_min = 6,
945+
y_min = 1,
892946
y_max = 31000,
893947
schematic = minetest.get_modpath("default").."/schematics/apple_tree.mts",
894948
flags = "place_center_x, place_center_z",
@@ -906,6 +960,7 @@ function default.register_decorations()
906960
y_max = 31000,
907961
schematic = minetest.get_modpath("default").."/schematics/jungle_tree.mts",
908962
flags = "place_center_x, place_center_z",
963+
rotation = "random",
909964
})
910965

911966
-- Taiga and temperate forest pine tree
@@ -917,7 +972,7 @@ function default.register_decorations()
917972
noise_params = {
918973
offset = 0.04,
919974
scale = 0.02,
920-
spread = {x=250, y=250, z=250},
975+
spread = {x = 250, y = 250, z = 250},
921976
seed = 2,
922977
octaves = 3,
923978
persist = 0.66
@@ -938,13 +993,13 @@ function default.register_decorations()
938993
noise_params = {
939994
offset = 0,
940995
scale = 0.003,
941-
spread = {x=250, y=250, z=250},
996+
spread = {x = 250, y = 250, z = 250},
942997
seed = 2,
943998
octaves = 3,
944999
persist = 0.66
9451000
},
9461001
biomes = {"savanna"},
947-
y_min = 6,
1002+
y_min = 1,
9481003
y_max = 31000,
9491004
schematic = minetest.get_modpath("default").."/schematics/acacia_tree.mts",
9501005
flags = "place_center_x, place_center_z",
@@ -960,7 +1015,7 @@ function default.register_decorations()
9601015
noise_params = {
9611016
offset = -0.0005,
9621017
scale = 0.0015,
963-
spread = {x=200, y=200, z=200},
1018+
spread = {x = 200, y = 200, z = 200},
9641019
seed = 230,
9651020
octaves = 3,
9661021
persist = 0.6
@@ -982,7 +1037,7 @@ function default.register_decorations()
9821037
noise_params = {
9831038
offset = -0.0005,
9841039
scale = 0.0015,
985-
spread = {x=200, y=200, z=200},
1040+
spread = {x = 200, y = 200, z = 200},
9861041
seed = 230,
9871042
octaves = 3,
9881043
persist = 0.6
@@ -999,17 +1054,17 @@ function default.register_decorations()
9991054

10001055
minetest.register_decoration({
10011056
deco_type = "schematic",
1002-
place_on = {"default:sand"},
1057+
place_on = {"default:dirt", "default:sand"},
10031058
sidelen = 16,
10041059
noise_params = {
10051060
offset = -0.3,
10061061
scale = 0.7,
1007-
spread = {x=200, y=200, z=200},
1062+
spread = {x = 200, y = 200, z = 200},
10081063
seed = 354,
10091064
octaves = 3,
10101065
persist = 0.7
10111066
},
1012-
biomes = {"savanna_ocean", "desert_ocean"},
1067+
biomes = {"savanna_swamp", "desert_ocean"},
10131068
y_min = 0,
10141069
y_max = 0,
10151070
schematic = minetest.get_modpath("default").."/schematics/papyrus.mts",
@@ -1053,7 +1108,7 @@ function default.register_decorations()
10531108
noise_params = {
10541109
offset = 0,
10551110
scale = 0.02,
1056-
spread = {x=200, y=200, z=200},
1111+
spread = {x = 200, y = 200, z = 200},
10571112
seed = 329,
10581113
octaves = 3,
10591114
persist = 0.6
0 Bytes
Binary file not shown.
-2 Bytes
Binary file not shown.

‎mods/default/schematics/papyrus.mts

26 Bytes
Binary file not shown.

‎mods/default/schematics/pine_tree.mts

0 Bytes
Binary file not shown.

‎mods/flowers/mapgen.lua

+6-11
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,9 @@ local function register_flower(seed, name)
9494
octaves = 3,
9595
persist = 0.6
9696
},
97-
biomes = {
98-
"stone_grassland",
99-
"sandstone_grassland",
100-
"deciduous_forest",
101-
"coniferous_forest",
102-
},
103-
y_min = 6,
97+
biomes = {"stone_grassland", "sandstone_grassland",
98+
"deciduous_forest", "coniferous_forest"},
99+
y_min = 1,
104100
y_max = 31000,
105101
decoration = "flowers:"..name,
106102
})
@@ -120,7 +116,7 @@ local function register_mushroom(name)
120116
persist = 0.66
121117
},
122118
biomes = {"deciduous_forest", "coniferous_forest"},
123-
y_min = 6,
119+
y_min = 1,
124120
y_max = 31000,
125121
decoration = "flowers:"..name,
126122
})
@@ -129,7 +125,7 @@ end
129125
local function register_waterlily()
130126
minetest.register_decoration({
131127
deco_type = "schematic",
132-
place_on = {"default:dirt", "default:sand"},
128+
place_on = {"default:dirt"},
133129
sidelen = 16,
134130
noise_params = {
135131
offset = -0.12,
@@ -139,8 +135,7 @@ local function register_waterlily()
139135
octaves = 3,
140136
persist = 0.7
141137
},
142-
biomes = {"deciduous_forest_ocean", "sandstone_grassland_ocean",
143-
"rainforest_swamp", "savanna_ocean", "desert_ocean"},
138+
biomes = {"rainforest_swamp", "savanna_swamp", "deciduous_forest_swamp"},
144139
y_min = 0,
145140
y_max = 0,
146141
schematic = minetest.get_modpath("flowers").."/schematics/waterlily.mts",

0 commit comments

Comments
 (0)
Please sign in to comment.