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/00_minecraft.json | 110 ++++++++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 config/cofh/world/00_minecraft.json (limited to 'config/cofh/world/00_minecraft.json') diff --git a/config/cofh/world/00_minecraft.json b/config/cofh/world/00_minecraft.json new file mode 100644 index 0000000..f3f10d0 --- /dev/null +++ b/config/cofh/world/00_minecraft.json @@ -0,0 +1,110 @@ +{ + "priority": 1000000000000, + "populate": { + "dirt": { + + "distribution": "uniform", + "generator": { + "block": "dirt", + "material": "minecraft:stone", + "cluster-size": 33 + }, + "cluster-count": 10, + "min-height": 0, + "max-height": 256, + "retrogen": false, + "biome": "all", + "dimension": { + "restriction": "blacklist", + "value": [ + -1, + 1 + ] + } + }, + + "gravel": { + "distribution": "uniform", + "generator": { + "block": "gravel", + "material": "minecraft:stone", + "cluster-size": 33 + }, + "cluster-count": 8, + "min-height": 0, + "max-height": 256, + "retrogen": false, + "biome": "all", + "dimension": { + "restriction": "blacklist", + "value": [ + -1, + 1 + ] + } + }, + + "silverfish": { + "distribution": "uniform", + "generator": { + "block": { + "name": "monster_egg", + "properties": { + "variant": "stone" + } + }, + "material": "minecraft:stone", + "cluster-size": 9 + }, + "cluster-count": 7, + "min-height": 0, + "max-height": 64, + "retrogen": false, + "biome": { + "restriction": "whitelist", + "value": [ + { + "type": "id", + "entry": [ + "extreme_hills", + "smaller_extreme_hills", + "extreme_hills_with_trees", + "mutated_extreme_hills", + "mutated_extreme_hills_with_trees" + ] + } + ] + }, + "dimension": { + "restriction": "blacklist", + "value": [ + -1, + 1 + ] + } + }, + + "quartz": { + "distribution": "uniform", + "generator": { + "block": "quartz_ore", + "material": "minecraft:netherrack", + "cluster-size": 14 + }, + "cluster-count": 16, + "min-height": 10, + "max-height": 118, + "retrogen": false, + "biome": { + "restriction": "whitelist", + "value": [ + { + "type": "dictionary", + "entry": "NETHER" + } + ] + }, + "dimension": "all" + } + } +} -- cgit v1.2.3