Lower copper ore drop rate

Compensate for this by making decorational copper recipes cheaper
This commit is contained in:
Sergeant Acoustic 2026-01-29 20:03:01 +00:00
parent ec29f044f9
commit c12ff22596
6 changed files with 166 additions and 0 deletions

View file

@ -0,0 +1,52 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
}
],
"name": "minecraft:copper_ore"
},
{
"type": "minecraft:item",
"functions": [
{
"enchantment": "minecraft:fortune",
"formula": "minecraft:ore_drops",
"function": "minecraft:apply_bonus"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "minecraft:raw_copper"
}
]
}
],
"rolls": 1.0
}
],
"random_sequence": "minecraft:blocks/copper_ore"
}

View file

@ -0,0 +1,52 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
}
],
"name": "minecraft:deepslate_copper_ore"
},
{
"type": "minecraft:item",
"functions": [
{
"enchantment": "minecraft:fortune",
"formula": "minecraft:ore_drops",
"function": "minecraft:apply_bonus"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "minecraft:raw_copper"
}
]
}
],
"rolls": 1.0
}
],
"random_sequence": "minecraft:blocks/deepslate_copper_ore"
}

View file

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "minecraft:copper_ingot"
}
},
"pattern": [
"## ",
"## "
],
"result": {
"count": 1,
"id": "minecraft:copper_block"
}
}

View file

@ -0,0 +1,14 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"group": "copper_ingot",
"ingredients": [
{
"item": "minecraft:copper_block"
}
],
"result": {
"count": 4,
"id": "minecraft:copper_ingot"
}
}

View file

@ -0,0 +1,14 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"group": "copper_ingot",
"ingredients": [
{
"item": "minecraft:waxed_copper_block"
}
],
"result": {
"count": 4,
"id": "minecraft:copper_ingot"
}
}

View file

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"category": "redstone",
"key": {
"#": {
"item": "minecraft:copper_ingot"
}
},
"pattern": [
"###",
"###"
],
"result": {
"count": 4,
"id": "minecraft:copper_trapdoor"
}
}