Skip to content

Instantly share code, notes, and snippets.

@kindlich
Created September 21, 2017 18:58
Show Gist options
  • Save kindlich/65acb9557f40c9b7398eae5204e6fe09 to your computer and use it in GitHub Desktop.
Save kindlich/65acb9557f40c9b7398eae5204e6fe09 to your computer and use it in GitHub Desktop.
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