From ddb3aeebe1d96b4f5f494c4ba72e7e20cb6cb68d Mon Sep 17 00:00:00 2001 From: Sergeant Acoustic Date: Thu, 21 Aug 2025 01:34:30 +0100 Subject: [PATCH] Changed ore spawns Updated gold and iron to spawn ~20% more common and just above redstone --- .../worldgen/placed_feature/ore_gold.json | 27 +++++++++++++++++++ .../placed_feature/ore_gold_lower.json | 27 +++++++++++++++++++ .../placed_feature/ore_iron_middle.json | 27 +++++++++++++++++++ .../placed_feature/ore_iron_small.json | 27 +++++++++++++++++++ 4 files changed, 108 insertions(+) create mode 100644 data/minecraft/worldgen/placed_feature/ore_gold.json create mode 100644 data/minecraft/worldgen/placed_feature/ore_gold_lower.json create mode 100644 data/minecraft/worldgen/placed_feature/ore_iron_middle.json create mode 100644 data/minecraft/worldgen/placed_feature/ore_iron_small.json diff --git a/data/minecraft/worldgen/placed_feature/ore_gold.json b/data/minecraft/worldgen/placed_feature/ore_gold.json new file mode 100644 index 0000000..71fe126 --- /dev/null +++ b/data/minecraft/worldgen/placed_feature/ore_gold.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_gold_buried", + "placement": [ + { + "type": "minecraft:count", + "count": 5 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "above_bottom": 96 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} diff --git a/data/minecraft/worldgen/placed_feature/ore_gold_lower.json b/data/minecraft/worldgen/placed_feature/ore_gold_lower.json new file mode 100644 index 0000000..9b90faf --- /dev/null +++ b/data/minecraft/worldgen/placed_feature/ore_gold_lower.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_gold_buried", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "above_bottom": 16 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} diff --git a/data/minecraft/worldgen/placed_feature/ore_iron_middle.json b/data/minecraft/worldgen/placed_feature/ore_iron_middle.json new file mode 100644 index 0000000..8d4a859 --- /dev/null +++ b/data/minecraft/worldgen/placed_feature/ore_iron_middle.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_iron", + "placement": [ + { + "type": "minecraft:count", + "count": 12 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 56 + }, + "min_inclusive": { + "absolute": -24 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} diff --git a/data/minecraft/worldgen/placed_feature/ore_iron_small.json b/data/minecraft/worldgen/placed_feature/ore_iron_small.json new file mode 100644 index 0000000..6ad8c47 --- /dev/null +++ b/data/minecraft/worldgen/placed_feature/ore_iron_small.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_iron_small", + "placement": [ + { + "type": "minecraft:count", + "count": 12 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 72 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +}