Compare commits

..

2 commits

Author SHA1 Message Date
Sergeant Acoustic 9e6bd5ed3c Remove power 2026-03-21 20:28:56 +00:00
Sergeant Acoustic 052306bd21 Port axe/sword attack damage changes 2026-03-21 20:25:15 +00:00
24 changed files with 106 additions and 6 deletions

View file

@ -1,3 +1,4 @@
[ [
"minecraft:sharpness" "minecraft:sharpness",
"minecraft:power"
] ]

View file

@ -0,0 +1,23 @@
{
"items": [
"minecraft:diamond_axe"
],
"patch": {
"attribute_modifiers": [
{
"type": "generic.attack_damage",
"slot": "mainhand",
"id": "base_attack_damage",
"amount": 11,
"operation": "add_value"
},
{
"type": "minecraft:generic.attack_speed",
"id": "minecraft:base_attack_speed",
"amount": -3,
"operation": "add_value",
"slot": "mainhand"
}
]
}
}

View file

@ -0,0 +1,23 @@
{
"items": [
"minecraft:diamond_sword"
],
"patch": {
"attribute_modifiers": [
{
"type": "generic.attack_damage",
"slot": "mainhand",
"id": "base_attack_damage",
"amount": 7,
"operation": "add_value"
},
{
"type": "minecraft:generic.attack_speed",
"id": "minecraft:base_attack_speed",
"amount": -2.4000000953674316,
"operation": "add_value",
"slot": "mainhand"
}
]
}
}

View file

@ -14,7 +14,7 @@
"type": "generic.attack_damage", "type": "generic.attack_damage",
"slot": "mainhand", "slot": "mainhand",
"id": "base_attack_damage", "id": "base_attack_damage",
"amount": 8, "amount": 9,
"operation": "add_value" "operation": "add_value"
}, },
{ {

View file

@ -8,7 +8,7 @@
"type": "generic.attack_damage", "type": "generic.attack_damage",
"slot": "mainhand", "slot": "mainhand",
"id": "base_attack_damage", "id": "base_attack_damage",
"amount": 5.5, "amount": 6,
"operation": "add_value" "operation": "add_value"
}, },
{ {

View file

@ -0,0 +1,23 @@
{
"items": [
"minecraft:netherite_axe"
],
"patch": {
"attribute_modifiers": [
{
"type": "generic.attack_damage",
"slot": "mainhand",
"id": "base_attack_damage",
"amount": 14,
"operation": "add_value"
},
{
"type": "minecraft:generic.attack_speed",
"id": "minecraft:base_attack_speed",
"amount": -3,
"operation": "add_value",
"slot": "mainhand"
}
]
}
}

View file

@ -0,0 +1,23 @@
{
"items": [
"minecraft:netherite_sword"
],
"patch": {
"attribute_modifiers": [
{
"type": "generic.attack_damage",
"slot": "mainhand",
"id": "base_attack_damage",
"amount": 9,
"operation": "add_value"
},
{
"type": "minecraft:generic.attack_speed",
"id": "minecraft:base_attack_speed",
"amount": -2.4000000953674316,
"operation": "add_value",
"slot": "mainhand"
}
]
}
}

View file

@ -0,0 +1,5 @@
{
"op": "remove",
"path": "/pools/1/entries/1/functions"
}

View file

@ -1,4 +1,5 @@
[ [
"minecraft:protection", "minecraft:protection",
"minecraft:sharpness" "minecraft:sharpness",
"minecraft:power"
] ]

View file

@ -1,4 +1,5 @@
[ [
"minecraft:sharpness", "minecraft:sharpness",
"minecraft:protection" "minecraft:protection",
"minecraft:power"
] ]

View file

@ -140,7 +140,7 @@
}, },
{ {
"namespace": "minecraft", "namespace": "minecraft",
"path": "enchantment/(protection|sharpness).json" "path": "enchantment/(protection|sharpness|power).json"
}, },
{ {
"namespace": "enderitemod", "namespace": "enderitemod",