Changed ore spawns

Updated gold and iron to spawn ~20% more common and just above redstone
This commit is contained in:
Sergeant Acoustic 2025-08-21 01:34:30 +01:00
parent 69c42422d1
commit ddb3aeebe1
4 changed files with 108 additions and 0 deletions

View file

@ -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"
}
]
}

View file

@ -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"
}
]
}

View file

@ -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"
}
]
}

View file

@ -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"
}
]
}