From 705c41b73dca26463cdc30bac8140076be2efbeb Mon Sep 17 00:00:00 2001 From: DrNuget Date: Sat, 7 Sep 2024 05:32:26 +0300 Subject: add custom ore gen --- config/cofh/world/01_overworld.json | 117 ++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 config/cofh/world/01_overworld.json (limited to 'config/cofh/world/01_overworld.json') 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 + ] + } + } + } +} -- cgit v1.2.3