From 9fa2fb9878067c3376c41fb886343b4ac960a38b Mon Sep 17 00:00:00 2001 From: Yandols ZeonX Date: Fri, 3 May 2019 01:29:30 +0800 Subject: [PATCH] Add Alterlite Cluster/Ore to worldgen. --- Changelog.txt | 1 + config/cofh/world/05_newalterlite_ores.json | 39 +++++++++++++++++++++ config/cofh/world/config.cfg.bak | 31 ---------------- 3 files changed, 40 insertions(+), 31 deletions(-) create mode 100644 config/cofh/world/05_newalterlite_ores.json delete mode 100644 config/cofh/world/config.cfg.bak diff --git a/Changelog.txt b/Changelog.txt index 9ffb427..1751a0f 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -11,6 +11,7 @@ A02-0009: * Disabled Fairy Dust Ore and Amethyst Ore from spawning in terrain gen. * Their respective drops will be obtainable through other means later on. * Alterlitium Cluster/Ore now spawns in the overworld terrain gen. + * It spawns deep underground (same level as diamonds) as long as it's not in an ocean, snowy, wasteland or swamp biome. * Renamed 1.14 Barrel to Villager's Barrel. * Reverted mining world height back to 70. * AromaBackup now only backs up The Overworld, The Nether, The End, and Compact Machines dimension by default. diff --git a/config/cofh/world/05_newalterlite_ores.json b/config/cofh/world/05_newalterlite_ores.json new file mode 100644 index 0000000..3bf228b --- /dev/null +++ b/config/cofh/world/05_newalterlite_ores.json @@ -0,0 +1,39 @@ +{ + "dependencies": "zcm_newalterlite", + "populate": { + "alterlitium": { + "enabled": "true", + "distribution": "uniform", + "generator": { + "block": "zcm_newalterlite:alterlitiumore", + "material": "minecraft:stone", + "cluster-size": 4 + }, + "cluster-count": 1, + "min-height": 4, + "max-height": 15, + "retrogen": "true", + "biome": { + "restriction": "blacklist", + "value": [ + { + "type": "dictionary", + "entry": [ + "OCEAN", + "SNOWY", + "WASTELAND", + "SWAMP" + ] + } + ] + }, + "dimension": { + "restriction": "blacklist", + "value": [ + -1, + 1 + ] + } + } + } +} diff --git a/config/cofh/world/config.cfg.bak b/config/cofh/world/config.cfg.bak deleted file mode 100644 index 47ffb17..0000000 --- a/config/cofh/world/config.cfg.bak +++ /dev/null @@ -1,31 +0,0 @@ -# Configuration file - -~CONFIG_VERSION: 1.3.0 - -World { - # If TRUE, CoFH World will not generate features at all. This option is intended for use when you want another mod to handle ore generation but do not want to blank out the various .json files yourself. Flat Bedrock may still be used. [default: false] - B:DisableAllGeneration=false - - # If TRUE, standard Minecraft ore generation will be REPLACED. Configure in the 00_minecraft.json file; standard Minecraft defaults have been provided. If you rename the 00_minecraft.json file, this option WILL NOT WORK. [default: false] - B:ReplaceStandardGeneration=false - - # If TRUE, world generation handled by CoFH World will be retroactively applied to existing chunks. [default: false] - B:RetroactiveGeneration=false - - # This adjusts the % chance that a tree will grow as normal when it is meant to. Reducing this value will mean that trees take longer to grow, on average. [range: 1 ~ 100, default: 100] - I:TreeGrowthChance=100 - - Bedrock { - # If TRUE, the bedrock layer will be flattened. [default: false] - B:EnableFlatBedrock=false - - # If TRUE, Flat Bedrock will retroactively be applied to existing chunks, if retroactive generation is enabled. [default: false] - B:EnableRetroactiveFlatBedrock=false - - # This adjusts the number of layers of Flat Bedrock, if enabled. [range: 1 ~ 8, default: 2] - I:NumBedrockLayers=2 - } - -} - -