Compare commits

...

3 commits

Author SHA1 Message Date
Sergeant Acoustic 63af082af2 Add copper nugget data + paxel/copper armour smelting 2026-01-30 02:15:56 +00:00
Sergeant Acoustic 82c77c3e4b Add copper armour data 2026-01-30 02:15:18 +00:00
Sergeant Acoustic c02224877c Remove redundant mod assets
Now bundled with the mod itself
2026-01-30 02:08:09 +00:00
34 changed files with 351 additions and 44 deletions

View file

@ -1,8 +0,0 @@
{
"item.mc_rebalance.wooden_paxel": "Wooden Paxel",
"item.mc_rebalance.stone_paxel": "Copper Paxel",
"item.mc_rebalance.iron_paxel": "Iron Paxel",
"item.mc_rebalance.golden_paxel": "Golden Paxel",
"item.mc_rebalance.diamond_paxel": "Diamond Paxel",
"item.mc_rebalance.netherite_paxel": "Dendrite Paxel"
}

View file

@ -1,6 +0,0 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "mc_rebalance:item/diamond_paxel"
}
}

View file

@ -1,6 +0,0 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "mc_rebalance:item/golden_paxel"
}
}

View file

@ -1,6 +0,0 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "mc_rebalance:item/iron_paxel"
}
}

View file

@ -1,6 +0,0 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "mc_rebalance:item/netherite_paxel"
}
}

View file

@ -1,6 +0,0 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "mc_rebalance:item/stone_paxel"
}
}

View file

@ -1,6 +0,0 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "mc_rebalance:item/wooden_paxel"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 366 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -0,0 +1,17 @@
{
"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

@ -0,0 +1,18 @@
{
"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

@ -0,0 +1,17 @@
{
"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

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"group": "copper_ingot",
"key": {
"#": {
"item": "mc_rebalance:copper_nugget"
}
},
"pattern": [
"###",
"###",
"###"
],
"result": {
"count": 1,
"id": "minecraft:copper_ingot"
}
}

View file

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

View file

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

View file

@ -0,0 +1,26 @@
{
"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

@ -0,0 +1,26 @@
{
"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

@ -0,0 +1,29 @@
{
"type": "minecraft:blasting",
"category": "misc",
"cookingtime": 100,
"experience": 0.1,
"ingredient": [
{
"tag": "defaulted:golden_tools"
},
{
"item": "minecraft:golden_helmet"
},
{
"item": "minecraft:golden_chestplate"
},
{
"item": "minecraft:golden_leggings"
},
{
"item": "minecraft:golden_boots"
},
{
"item": "minecraft:golden_horse_armor"
}
],
"result": {
"id": "minecraft:gold_nugget"
}
}

View file

@ -0,0 +1,29 @@
{
"type": "minecraft:smelting",
"category": "misc",
"cookingtime": 200,
"experience": 0.1,
"ingredient": [
{
"tag": "defaulted:golden_tools"
},
{
"item": "minecraft:golden_helmet"
},
{
"item": "minecraft:golden_chestplate"
},
{
"item": "minecraft:golden_leggings"
},
{
"item": "minecraft:golden_boots"
},
{
"item": "minecraft:golden_horse_armor"
}
],
"result": {
"id": "minecraft:gold_nugget"
}
}

View file

@ -0,0 +1,41 @@
{
"type": "minecraft:blasting",
"category": "misc",
"cookingtime": 100,
"experience": 0.1,
"ingredient": [
{
"tag": "defaulted:iron_tools"
},
{
"item": "minecraft:iron_helmet"
},
{
"item": "minecraft:iron_chestplate"
},
{
"item": "minecraft:iron_leggings"
},
{
"item": "minecraft:iron_boots"
},
{
"item": "minecraft:iron_horse_armor"
},
{
"item": "minecraft:chainmail_helmet"
},
{
"item": "minecraft:chainmail_chestplate"
},
{
"item": "minecraft:chainmail_leggings"
},
{
"item": "minecraft:chainmail_boots"
}
],
"result": {
"id": "minecraft:iron_nugget"
}
}

View file

@ -0,0 +1,41 @@
{
"type": "minecraft:smelting",
"category": "misc",
"cookingtime": 200,
"experience": 0.1,
"ingredient": [
{
"tag": "defaulted:iron_tools"
},
{
"item": "minecraft:iron_helmet"
},
{
"item": "minecraft:iron_chestplate"
},
{
"item": "minecraft:iron_leggings"
},
{
"item": "minecraft:iron_boots"
},
{
"item": "minecraft:iron_horse_armor"
},
{
"item": "minecraft:chainmail_helmet"
},
{
"item": "minecraft:chainmail_chestplate"
},
{
"item": "minecraft:chainmail_leggings"
},
{
"item": "minecraft:chainmail_boots"
}
],
"result": {
"id": "minecraft:iron_nugget"
}
}

View file

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

View file

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

View file

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

View file

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