22 lines
701 B
Text
22 lines
701 B
Text
|
/*
|
||
|
This file uses the ".json5" file extension which allows for comments like this in a json file!
|
||
|
Your text editor may show this file with invalid/no syntax, if so, we recommend you download:
|
||
|
|
||
|
VSCode: https://code.visualstudio.com/
|
||
|
JSON5 plugin(for VSCode): https://marketplace.visualstudio.com/items?itemName=mrmlnc.vscode-json5
|
||
|
|
||
|
to make editing this file much easier.
|
||
|
*/
|
||
|
{
|
||
|
// Global toggle to enable or disable BYG's overworld biomes.
|
||
|
"overworld_enabled": true,
|
||
|
/* A list of weighted regions containing a unique biome layout.
|
||
|
Regions may be inlined or may call a file from "this_file_parent_directory/regions"
|
||
|
*/
|
||
|
"regions": [
|
||
|
"region_1",
|
||
|
"region_2",
|
||
|
"region_3",
|
||
|
"rare_region_1"
|
||
|
]
|
||
|
}
|