39 lines
2.0 KiB
Markdown
Raw Normal View History

2015-03-07 11:31:20 +01:00
# Valleys Mapgen
2015-04-08 17:21:46 +02:00
Mapgen mod for Minetest 0.4.12+. Work in progress, not finished.
2015-03-07 11:31:20 +01:00
2015-05-11 20:15:45 +02:00
![Screenshot](http://i.imgur.com/EYxKIPv.png)
2015-03-07 11:31:20 +01:00
2015-03-08 11:22:17 +01:00
[Discussion on Minetest Forums](https://forum.minetest.net/viewtopic.php?f=9&t=11430)
## Changelog
### 1.3 ~> Lastest (pre-2.0)
2015-05-15 16:58:32 +02:00
* Added snow
2015-05-10 21:12:47 +02:00
* When a player dies, it's respawned
* Added trees (3 species for now), optionnal
* Added logs : see vmg.conf.example
* Added temperature and humidity noises, used by trees
2015-04-08 17:21:46 +02:00
### 1.2 ~> 1.3 (Wednesday April 8, 2015)
2015-04-04 22:37:05 +02:00
* Added differents types of dirts (the aim is to make real biomes in the future)
2015-04-06 11:36:27 +02:00
* Added beaches
* Added setting `water_level` to set water level (default is 1)
* Fixed fatal error with number settings
2015-04-04 22:37:05 +02:00
2015-04-08 17:21:46 +02:00
### 1.1 ~> 1.2 (Tuesday March 17, 2015)
2015-03-16 19:07:56 +01:00
* Added lava underground
2015-03-15 20:27:16 +01:00
* Settings in minetest.conf : see file vmg.conf.example
* Now the player can't spawn in rivers
* Player spawn location is randomized : you can set the maximal distance from (0;0) at which the player will appear. (If it's in a big ocean, it may be farther)
* Some minor changes about terrain :
* Bare stone is rarer
* Valleys are slightly larger
* Ores are generated properly, according to [Paramat's changes](https://github.com/minetest/minetest/commit/b2b6bbf3e80f0ab06d62c43567122871ae560534) in `minetest.generate_ores`. **I advise you to update your MT version to a recent build (03/11 or later) or the ores overlapping problem will reappear.**
2015-04-08 17:21:46 +02:00
### 1.0 ~> 1.1 (Sunday March 8, 2015)
2015-03-08 11:22:17 +01:00
* Added caves: they are modelised by 4 3D noises.
* Corrected ores generation: There was too many ores because it was sometimes generated twice or even more.
2015-05-10 21:12:47 +02:00
* Activated versions manager: if you update the mod from 1.0 to this version, the new mapgen will only take effect on new worlds, worlds created with 1.0 will stay in 1.0. If you want to activate mapgen 1.1 in an old world (there could be cleavages), change the file vmg.conf which is in the world directory.
* Added… this changelog :-D
2015-04-08 17:21:46 +02:00
### 1.0 (Saturday March 7, 2015)
* Created mapgen (using 7 noises at the moment).