byg-overworld-biomes.json5 701 B

12345678910111213141516171819202122
  1. /*
  2. This file uses the ".json5" file extension which allows for comments like this in a json file!
  3. Your text editor may show this file with invalid/no syntax, if so, we recommend you download:
  4. VSCode: https://code.visualstudio.com/
  5. JSON5 plugin(for VSCode): https://marketplace.visualstudio.com/items?itemName=mrmlnc.vscode-json5
  6. to make editing this file much easier.
  7. */
  8. {
  9. // Global toggle to enable or disable BYG's overworld biomes.
  10. "overworld_enabled": true,
  11. /* A list of weighted regions containing a unique biome layout.
  12. Regions may be inlined or may call a file from "this_file_parent_directory/regions"
  13. */
  14. "regions": [
  15. "region_1",
  16. "region_2",
  17. "region_3",
  18. "rare_region_1"
  19. ]
  20. }