Skip to content

Instantly share code, notes, and snippets.

@hoqhuuep
Created March 11, 2015 07:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hoqhuuep/e6d5f026aa88ea336f33 to your computer and use it in GitHub Desktop.
Save hoqhuuep/e6d5f026aa88ea336f33 to your computer and use it in GitHub Desktop.
IslandCraft configuration for single large jungle island
# Do not modify config-version
config-version: 1.0.0
# If verbose-logging is false only warnings and errors will be logged
verbose-logging: false
# Same available options as database settings in bukkit.yml
# http://wiki.bukkit.org/Bukkit.yml#database
database:
driver: org.sqlite.JDBC
url: jdbc:sqlite:{DIR}{NAME}.db
username: bukkit
password: walrus
isolation: SERIALIZABLE
worlds:
# By default IslandCraft is enabled on "world_islandcraft".
# You can change the world name here or even add more than one world
world_islandcraft:
# There is currently only 1 option for ocean-generator. Please use:
# com.github.hoqhuuep.islandcraft.core.ConstantBiomeDistribution <biome>
ocean: com.github.hoqhuuep.islandcraft.core.ConstantBiomeDistribution DEEP_OCEAN
# There are currently 3 options for island-distribution. Please use one of:
# com.github.hoqhuuep.islandcraft.core.HexagonalIslandDistribution <island-size> <ocean-size>
# com.github.hoqhuuep.islandcraft.core.SquareIslandDistribution <island-size> <ocean-size>
# com.github.hoqhuuep.islandcraft.core.EmptyIslandDistribution
island-distribution: com.github.hoqhuuep.islandcraft.core.HexagonalIslandDistribution 2048 1048576
# There is currently 2 options for island-generators. Please use one of:
# com.github.hoqhuuep.islandcraft.core.ConstantIslandGenerator <biome>
# com.github.hoqhuuep.islandcraft.core.IslandGeneratorAlpha <normal> <mountains> <hills> <hills-mountains> <forest> <forest-mountains> <outer-coast> <inner-coast> <river>
island-generators:
- com.github.hoqhuuep.islandcraft.core.IslandGeneratorAlpha JUNGLE JUNGLE_M JUNGLE_HILLS ~ JUNGLE_EDGE JUNGLE_EDGE_M OCEAN BEACH RIVER
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment