Created
September 21, 2017 18:58
-
-
Save kindlich/65acb9557f40c9b7398eae5204e6fe09 to your computer and use it in GitHub Desktop.
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
for biome in game.biomes { | |
print(""); | |
print(""); | |
print("------------------------------"); | |
print(""); | |
print(""); | |
print("Name: "~biome.name); | |
print("Can "~(biome.canRain ? "" : "NOT ")~"rain."); | |
print("Is " ~ (biome.isSnowyBiome ? "" : "NOT ")~"snowy."); | |
print("Has " ~ (biome.highHumidity ? "" : "NO ")~"high humidity."); | |
print("Rainfall: "~ biome.rainfall); | |
print("Water Color Multiplier: " ~ biome.waterColorMultiplier); | |
print("Base Height: " ~ biome.baseHeight); | |
print("Height Variation: " ~ biome.heightVariation); | |
print("Ignores " ~ (biome.ignorePlayerSpawnSuitability ? "" : "NOT ")~"Player spawn suitability"); | |
print("Temperature: "~biome.temperature); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment