Add copper age backport + datapack configurations

This commit is contained in:
Sergeant Acoustic 2026-02-02 21:26:09 +00:00
parent d7d1ca142f
commit 680c95df3d
33 changed files with 156 additions and 170 deletions

View file

@ -98,6 +98,21 @@
}, },
"path": "mods/defaulted-fabric-1.21.1-1.2.1.2.jar" "path": "mods/defaulted-fabric-1.21.1-1.2.1.2.jar"
}, },
{
"downloads": [
"https://cdn.modrinth.com/data/a1llHwl4/versions/FL44OinM/copperagebackport-fabric-1.21.1-0.1.4.jar"
],
"env": {
"client": "required",
"server": "required"
},
"fileSize": 2509648,
"hashes": {
"sha1": "17777733974b4c3681b377aeb4a743d9d706b7ed",
"sha512": "6b3aae34989778b42d6e5e00ef3f0e2eb7cd41435c75e54888469a667cf526e51531ac0b517196f281cd6e902e03fab4a79410f9c0c4350a7360e0bcc33d328b"
},
"path": "mods/copperagebackport-fabric-1.21.1-0.1.4.jar"
},
{ {
"downloads": [ "downloads": [
"https://cdn.modrinth.com/data/P7dR8mSH/versions/3wZtvzew/fabric-api-0.116.8%2B1.21.1.jar" "https://cdn.modrinth.com/data/P7dR8mSH/versions/3wZtvzew/fabric-api-0.116.8%2B1.21.1.jar"

View file

@ -30,11 +30,6 @@
"item.minecraft.rabbit_hide": "Leather Strip", "item.minecraft.rabbit_hide": "Leather Strip",
"item.minecraft.smithing_template.netherite_upgrade.additions_slot_description": "Add Dendrite Ingot", "item.minecraft.smithing_template.netherite_upgrade.additions_slot_description": "Add Dendrite Ingot",
"item.minecraft.smithing_template.netherite_upgrade.ingredients": "Dendrite Ingot", "item.minecraft.smithing_template.netherite_upgrade.ingredients": "Dendrite Ingot",
"item.minecraft.stone_axe": "Copper Axe",
"item.minecraft.stone_hoe": "Copper Hoe",
"item.minecraft.stone_pickaxe": "Copper Pickaxe",
"item.minecraft.stone_shovel": "Copper Shovel",
"item.minecraft.stone_sword": "Copper Sword",
"subtitles.item.armor.equip_netherite": "Dendrite armor clanks", "subtitles.item.armor.equip_netherite": "Dendrite armor clanks",
"trim_material.minecraft.netherite": "Dendrite Material", "trim_material.minecraft.netherite": "Dendrite Material",
"upgrade.minecraft.netherite_upgrade": "Dendrite Upgrade" "upgrade.minecraft.netherite_upgrade": "Dendrite Upgrade"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 178 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 157 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 180 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 158 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 194 B

View file

@ -1,5 +1,5 @@
{ {
"values": [ "values": [
"mc_rebalance:copper_nugget" "minecraft:copper_nugget"
] ]
} }

View file

@ -1,5 +1,6 @@
{ {
"values": [ "values": [
"#mc_rebalance:paxels" "#mc_rebalance:paxels",
"#defaulted:copper_tools"
] ]
} }

View file

@ -0,0 +1,11 @@
{
"replace": false,
"values": [
"minecraft:copper_axe",
"minecraft:copper_hoe",
"minecraft:copper_pickaxe",
"minecraft:copper_shovel",
"minecraft:copper_sword",
"mc_rebalance:copper_paxel"
]
}

View file

@ -0,0 +1,35 @@
{
"items": [
"mc_rebalance:copper_paxel"
],
"patch": {
"tool": {
"rules": [
{"blocks": "#minecraft:incorrect_for_stone_tool", "correct_for_drops": false},
{"blocks": "#mineable/pickaxe", "speed": 5.0, "correct_for_drops": true},
{"blocks": "#mineable/axe", "speed": 5.0, "correct_for_drops": true},
{"blocks": "#mineable/shovel", "speed": 5.0, "correct_for_drops": true},
{"blocks": "#mineable/hoe", "speed": 5.0, "correct_for_drops": true}
]
},
"attribute_modifiers": [
{
"type": "generic.attack_damage",
"slot": "mainhand",
"id": "base_attack_damage",
"amount": 2.5,
"operation": "add_value"
},
{
"type": "minecraft:generic.attack_speed",
"id": "minecraft:base_attack_speed",
"amount": -3.2,
"operation": "add_value",
"slot": "mainhand"
}
],
"minecraft:max_stack_size": 1,
"minecraft:damage": 0,
"minecraft:max_damage": 190
}
}

View file

@ -1,17 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"key": {
"X": {
"item": "minecraft:copper_ingot"
}
},
"pattern": [
"X X",
"X X"
],
"result": {
"count": 1,
"id": "mc_rebalance:copper_boots"
}
}

View file

@ -1,18 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"key": {
"X": {
"item": "minecraft:copper_ingot"
}
},
"pattern": [
"X X",
"XXX",
"XXX"
],
"result": {
"count": 1,
"id": "mc_rebalance:copper_chestplate"
}
}

View file

@ -1,17 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"key": {
"X": {
"item": "minecraft:copper_ingot"
}
},
"pattern": [
"XXX",
"X X"
],
"result": {
"count": 1,
"id": "mc_rebalance:copper_helmet"
}
}

View file

@ -1,13 +0,0 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": [
{
"item": "minecraft:copper_ingot"
}
],
"result": {
"count": 9,
"id": "mc_rebalance:copper_nugget"
}
}

View file

@ -1,26 +0,0 @@
{
"type": "minecraft:blasting",
"category": "misc",
"cookingtime": 100,
"experience": 0.1,
"ingredient": [
{
"tag": "defaulted:stone_tools"
},
{
"item": "mc_rebalance:copper_helmet"
},
{
"item": "mc_rebalance:copper_chestplate"
},
{
"item": "mc_rebalance:copper_leggings"
},
{
"item": "mc_rebalance:copper_boots"
}
],
"result": {
"id": "mc_rebalance:copper_nugget"
}
}

View file

@ -1,26 +0,0 @@
{
"type": "minecraft:smelting",
"category": "misc",
"cookingtime": 200,
"experience": 0.1,
"ingredient": [
{
"tag": "defaulted:stone_tools"
},
{
"item": "mc_rebalance:copper_helmet"
},
{
"item": "mc_rebalance:copper_chestplate"
},
{
"item": "mc_rebalance:copper_leggings"
},
{
"item": "mc_rebalance:copper_boots"
}
],
"result": {
"id": "mc_rebalance:copper_nugget"
}
}

View file

@ -1,18 +1,18 @@
{ {
"type": "minecraft:crafting_shaped", "type": "minecraft:crafting_shaped",
"category": "equipment", "category": "misc",
"key": { "key": {
"X": { "X": {
"item": "minecraft:copper_ingot" "item": "minecraft:copper_ingot"
} }
}, },
"pattern": [ "pattern": [
"XXX",
"X X", "X X",
"XXX",
"X X" "X X"
], ],
"result": { "result": {
"count": 1, "id": "minecraft:copper_horse_armor"
"id": "mc_rebalance:copper_leggings" },
} "show_notification": true
} }

View file

@ -3,7 +3,7 @@
"category": "equipment", "category": "equipment",
"key": { "key": {
"#": {"item": "minecraft:stick"}, "#": {"item": "minecraft:stick"},
"X": {"tag": "minecraft:stone_tool_materials"}, "X": {"item": "minecraft:copper_ingot"},
"Z": {"item": "minecraft:iron_ingot"} "Z": {"item": "minecraft:iron_ingot"}
}, },
"pattern": [ "pattern": [
@ -13,6 +13,6 @@
], ],
"result": { "result": {
"count": 1, "count": 1,
"id": "mc_rebalance:stone_paxel" "id": "mc_rebalance:copper_paxel"
} }
} }

View file

@ -1,8 +1,9 @@
{ {
"items": [ "items": [
"mc_rebalance:copper_boots" "minecraft:copper_boots"
], ],
"patch": { "patch": {
"damage": 0,
"max_damage": 143 "max_damage": 143
} }
} }

View file

@ -1,8 +1,9 @@
{ {
"items": [ "items": [
"mc_rebalance:copper_chestplate" "minecraft:copper_chestplate"
], ],
"patch": { "patch": {
"damage": 0,
"max_damage": 176 "max_damage": 176
} }
} }

View file

@ -1,8 +1,9 @@
{ {
"items": [ "items": [
"mc_rebalance:copper_helmet" "minecraft:copper_helmet"
], ],
"patch": { "patch": {
"damage": 0,
"max_damage": 121 "max_damage": 121
} }
} }

View file

@ -1,8 +1,9 @@
{ {
"items": [ "items": [
"mc_rebalance:copper_leggings" "minecraft:copper_leggings"
], ],
"patch": { "patch": {
"damage": 0,
"max_damage": 165 "max_damage": 165
} }
} }

View file

@ -11,6 +11,7 @@
"minecraft:command_block_minecart", "minecraft:command_block_minecart",
"minecraft:saddle", "minecraft:saddle",
"minecraft:leather_horse_armor", "minecraft:leather_horse_armor",
"minecraft:copper_horse_armor",
"minecraft:iron_horse_armor", "minecraft:iron_horse_armor",
"minecraft:golden_horse_armor", "minecraft:golden_horse_armor",
"minecraft:diamond_horse_armor" "minecraft:diamond_horse_armor"

View file

@ -1,19 +1,24 @@
{ {
"type": "minecraft:crafting_shaped", "type": "minecraft:crafting_shaped",
"category": "misc", "category": "misc",
"group": "copper_ingot",
"key": {
"#": {
"item": "mc_rebalance:copper_nugget"
}
},
"pattern": [ "pattern": [
"###", "###",
"###", "###",
"###" "###"
], ],
"group": "copper_ingot",
"key": {
"#": [
{
"tag": "c:nuggets/copper"
},
{
"tag": "c:copper_nuggets"
}
]
},
"result": { "result": {
"count": 1, "id": "minecraft:copper_ingot",
"id": "minecraft:copper_ingot" "count": 1
} }
} }

View file

@ -0,0 +1,29 @@
{
"type": "minecraft:blasting",
"category": "misc",
"cookingtime": 100,
"experience": 0.1,
"ingredient": [
{
"tag": "defaulted:copper_tools"
},
{
"item": "minecraft:copper_helmet"
},
{
"item": "minecraft:copper_chestplate"
},
{
"item": "minecraft:copper_leggings"
},
{
"item": "minecraft:copper_boots"
},
{
"item": "minecraft:copper_horse_armor"
}
],
"result": {
"id": "minecraft:copper_nugget"
}
}

View file

@ -0,0 +1,29 @@
{
"type": "minecraft:smelting",
"category": "misc",
"cookingtime": 200,
"experience": 0.1,
"ingredient": [
{
"tag": "defaulted:copper_tools"
},
{
"item": "minecraft:copper_helmet"
},
{
"item": "minecraft:copper_chestplate"
},
{
"item": "minecraft:copper_leggings"
},
{
"item": "minecraft:copper_boots"
},
{
"item": "minecraft:copper_horse_armor"
}
],
"result": {
"id": "minecraft:copper_nugget"
}
}

View file

@ -1,5 +0,0 @@
{
"values": [
"mc_rebalance:copper_chestplate"
]
}

View file

@ -1,5 +0,0 @@
{
"values": [
"mc_rebalance:copper_boots"
]
}

View file

@ -1,5 +0,0 @@
{
"values": [
"mc_rebalance:copper_helmet"
]
}

View file

@ -1,5 +0,0 @@
{
"values": [
"mc_rebalance:copper_leggings"
]
}

View file

@ -1,6 +0,0 @@
{
"replace": true,
"values": [
"minecraft:copper_ingot"
]
}

View file

@ -8,11 +8,15 @@
"block": [ "block": [
{ {
"namespace": "minecraft", "namespace": "minecraft",
"path": "recipe/wooden" "path": "recipe/wooden_"
}, },
{ {
"namespace": "bundle-backportish", "namespace": "bundle-backportish",
"path": "recipe/bundle_coloring.json" "path": "recipe/bundle_coloring.json"
},
{
"namespace": "minecraft",
"path": "recipe/stone_(pickaxe|axe|hoe|shovel|sword|spear).json"
} }
] ]
} }