More variety in Main Menu map (#9029)

This commit is contained in:
itanasi 2023-03-25 11:33:07 -07:00 committed by GitHub
parent 666c9c5b29
commit e506631925
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -14,8 +14,8 @@ object EasterEggRulesets {
temperatureShift = when(HolidayDates.getMonth()) {
Month.JANUARY -> -1.4f
Month.FEBRUARY -> -1.3f
Month.MARCH -> -0.4f
Month.AUGUST -> 0.4f
Month.MARCH -> 0.4f // actually generates a lot of grassland
Month.AUGUST -> -0.4f // actually generates a lot more desert
Month.NOVEMBER -> -0.7f
Month.DECEMBER -> -1.3f
else -> 0f

View File

@ -126,7 +126,7 @@ class MainMenuScreen: BaseScreen(), RecreateOnResize {
shape = MapShape.rectangular
mapSize = MapSizeNew(MapSize.Small)
type = MapType.pangaea
temperatureExtremeness = 1f
temperatureExtremeness = .7f
waterThreshold = -0.1f // mainly land, gets about 30% water
modifyForEasterEgg()
})