diff options
author | DrNuget <drnuget@outlook.com> | 2024-09-07 05:32:26 +0300 |
---|---|---|
committer | DrNuget <drnuget@outlook.com> | 2024-09-07 05:32:26 +0300 |
commit | 705c41b73dca26463cdc30bac8140076be2efbeb (patch) | |
tree | 0f36172bb8b0c49587cdcdbdd3815f36b3eda421 /config/cofh/world/01_overworld.json | |
parent | d7c797f42ca9892b59a9f576e90e76739ad43bc0 (diff) |
add custom ore gen
Diffstat (limited to 'config/cofh/world/01_overworld.json')
-rw-r--r-- | config/cofh/world/01_overworld.json | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/config/cofh/world/01_overworld.json b/config/cofh/world/01_overworld.json new file mode 100644 index 0000000..2a53b04 --- /dev/null +++ b/config/cofh/world/01_overworld.json @@ -0,0 +1,117 @@ +{ + "priority": 1000000000000, + "populate": { + "red-granite": { + "distribution": "uniform", + "generator": { + "block": { + "name": "gregtech:stone_smooth", + "properties": { + "variant": "red_granite" + } + }, + "material": "minecraft:stone", + "cluster-size": 33 + }, + "cluster-count": { + "min": 0, + "max": 10 + }, + "min-height": 0, + "max-height": 80, + "retrogen": false, + "biome": "all", + "dimension": { + "restriction": "blacklist", + "value": [ + -1, + 1 + ] + } + }, + "black-granite": { + "distribution": "uniform", + "generator": { + "block": { + "name": "gregtech:stone_smooth", + "properties": { + "variant": "black_granite" + } + }, + "material": "minecraft:stone", + "cluster-size": 33 + }, + "cluster-count": { + "min": 0, + "max": 10 + }, + "min-height": 0, + "max-height": 80, + "retrogen": false, + "biome": "all", + "dimension": { + "restriction": "blacklist", + "value": [ + -1, + 1 + ] + } + }, + "marble": { + "distribution": "uniform", + "generator": { + "block": { + "name": "gregtech:stone_smooth", + "properties": { + "variant": "marble" + } + }, + "material": "minecraft:stone", + "cluster-size": 33 + }, + "cluster-count": { + "min": 0, + "max": 10 + }, + "min-height": 0, + "max-height": 80, + "retrogen": false, + "biome": "all", + "dimension": { + "restriction": "blacklist", + "value": [ + -1, + 1 + ] + } + }, + "basalt": { + "distribution": "uniform", + "generator": { + "block": { + "name": "gregtech:stone_smooth", + "properties": { + "variant": "basalt" + } + }, + "material": "minecraft:stone", + "cluster-size": 33 + }, + "cluster-count": { + "min": 0, + "max": 10 + }, + "min-height": 0, + "max-height": 80, + "retrogen": false, + "biome": "all", + "dimension": { + "restriction": "blacklist", + "value": [ + -1, + 1 + ] + } + } + } +} |