Skip to content

Commit c093035

Browse files
authored
Reduce stone and netherrack quarry amount and make them probabilistic (#954)
1 parent ed49d5d commit c093035

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/main/resources/data/modern_industrialization/recipe/quarry/copper.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"item_outputs": [
1111
{
1212
"item": "minecraft:cobblestone",
13-
"amount": 64
13+
"amount": 32,
14+
"probability": 0.5
1415
},
1516
{
1617
"item": "minecraft:diorite",
@@ -48,4 +49,4 @@
4849
"probability": 0.25
4950
}
5051
]
51-
}
52+
}

src/main/resources/data/modern_industrialization/recipe/quarry/gold.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"item_outputs": [
1111
{
1212
"item": "minecraft:netherrack",
13-
"amount": 64
13+
"amount": 32,
14+
"probability": 0.5
1415
},
1516
{
1617
"item": "minecraft:blackstone",
@@ -59,4 +60,4 @@
5960
"probability": 0.25
6061
}
6162
]
62-
}
63+
}

0 commit comments

Comments
 (0)