-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #156 from dacmot/main
Adds minetest game mapgen configuration parameters
- Loading branch information
Showing
18 changed files
with
916 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule yellow_crystal
updated
from ef9649 to 490642
Submodule minetest_mapgen_config
added at
c183a5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
yellow_crystals.ore1_scarcity = 5832 | ||
yellow_crystals.ore1_ymax = -150 | ||
yellow_crystals.ore1_ymax = -350 | ||
yellow_crystals.ore1_ymin = -500 | ||
yellow_crystals.ore2_scarcity = 8000 | ||
yellow_crystals.ore2_ymax = -250 | ||
yellow_crystals.ore2_ymax = -450 | ||
yellow_crystals.ore2_ymin = -31000 | ||
yellow_crystals.ore3_scarcity = 8000 | ||
yellow_crystals.ore3_ymax = -350 | ||
yellow_crystals.ore3_ymax = -550 | ||
yellow_crystals.ore3_ymin = -31000 | ||
yellow_crystals.ore4_scarcity = 8000 | ||
yellow_crystals.ore4_ymax = -450 | ||
yellow_crystals.ore4_ymin = -31000 | ||
yellow_crystals.ore4_ymax = -650 | ||
yellow_crystals.ore4_ymin = -31000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[Yellow Crystals] | ||
yellow_crystals.ore1_scarcity (Mese crystals level 1, scarcity) int 5832 100 1000000 | ||
yellow_crystals.ore1_ymax (Mese crystals level 1, underground upper limit) int -150 -31000 31000 | ||
yellow_crystals.ore1_ymax (Mese crystals level 1, underground upper limit) int -350 -31000 31000 | ||
yellow_crystals.ore1_ymin (Mese crystals level 1, underground lower limit) int -500 -31000 31000 | ||
yellow_crystals.ore2_scarcity (Mese crystals level 2, scarcity) int 8000 100 1000000 | ||
yellow_crystals.ore2_ymax (Mese crystals level 2, underground upper limit) int -250 -31000 31000 | ||
yellow_crystals.ore2_ymax (Mese crystals level 2, underground upper limit) int -450 -31000 31000 | ||
yellow_crystals.ore2_ymin (Mese crystals level 2, underground lower limit) int -31000 -31000 31000 | ||
yellow_crystals.ore3_scarcity (Mese crystals level 3, scarcity) int 8000 100 1000000 | ||
yellow_crystals.ore3_ymax (Mese crystals level 3, underground upper limit) int -350 -31000 31000 | ||
yellow_crystals.ore3_ymax (Mese crystals level 3, underground upper limit) int -550 -31000 31000 | ||
yellow_crystals.ore3_ymin (Mese crystals level 3, underground lower limit) int -31000 -31000 31000 | ||
yellow_crystals.ore4_scarcity (Mese crystals level 4, scarcity) int 8000 100 1000000 | ||
yellow_crystals.ore4_ymax (Mese crystals level 4, underground upper limit) int -450 -31000 31000 | ||
yellow_crystals.ore4_ymin (Mese crystals level 4, underground lower limit) int -31000 -31000 31000 | ||
yellow_crystals.ore4_ymax (Mese crystals level 4, underground upper limit) int -650 -31000 31000 | ||
yellow_crystals.ore4_ymin (Mese crystals level 4, underground lower limit) int -31000 -31000 31000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
unused_args = false | ||
allow_defined_top = true | ||
|
||
globals = { | ||
"mapgen_conf", | ||
} | ||
|
||
read_globals = { | ||
"DIR_DELIM", "INIT", | ||
|
||
"minetest", | ||
|
||
"Raycast", | ||
"Settings", | ||
"PseudoRandom", | ||
"PerlinNoise", | ||
"VoxelManip", | ||
"SecureRandom", | ||
"VoxelArea", | ||
"PerlinNoiseMap", | ||
"PcgRandom", | ||
"ItemStack", | ||
"AreaStore", | ||
|
||
"vector", | ||
|
||
table = { | ||
fields = { | ||
"copy", | ||
"indexof", | ||
"insert_all", | ||
"key_value_swap", | ||
"shuffle", | ||
} | ||
}, | ||
|
||
string = { | ||
fields = { | ||
"split", | ||
"trim", | ||
"find", | ||
} | ||
}, | ||
|
||
math = { | ||
fields = { | ||
"hypot", | ||
"sign", | ||
"factorial" | ||
} | ||
}, | ||
} |
Oops, something went wrong.