Compare commits

..

2 commits

Author SHA1 Message Date
Sergeant Acoustic 9a8c71957c Add windup to exploit 2026-02-18 21:24:02 +00:00
Sergeant Acoustic 7f396f30bd Add windup enchantment 2026-02-18 21:23:33 +00:00
3 changed files with 58 additions and 0 deletions

View file

@ -10,6 +10,22 @@
"attribute": "generic.attack_damage", "attribute": "generic.attack_damage",
"id": "mc_rebalance:enchantment.exploit", "id": "mc_rebalance:enchantment.exploit",
"operation": "add_multiplied_total" "operation": "add_multiplied_total"
},
{
"amount": 1024,
"attribute": "generic.attack_speed",
"id": "mc_rebalance:enchantment.windup",
"operation": "add_value"
}
],
"minecraft:post_attack": [
{
"affected": "victim",
"enchanted": "attacker",
"effect": {
"type": "mc_rebalance:windup_effect",
"amount": 0.8
}
} }
], ],
"minecraft:damage": [ "minecraft:damage": [

View file

@ -0,0 +1,41 @@
{
"anvil_cost": 5,
"description": {
"translate": "enchantment.mc_rebalance.windup"
},
"effects": {
"minecraft:attributes": [
{
"amount": 1024,
"attribute": "generic.attack_speed",
"id": "mc_rebalance:enchantment.windup",
"operation": "add_value"
}
],
"minecraft:post_attack": [
{
"affected": "victim",
"enchanted": "attacker",
"effect": {
"type": "mc_rebalance:windup_effect",
"amount": 0.8
}
}
]
},
"exclusive_set": "#mc_rebalance:exclusive_set/capability",
"max_cost": {
"base": 51,
"per_level_above_first": 10
},
"max_level": 1,
"min_cost": {
"base": 1,
"per_level_above_first": 10
},
"slots": [
"mainhand"
],
"supported_items": "#mc_rebalance:enchantable/axe",
"weight": 10
}

View file

@ -8,6 +8,7 @@
"minecraft:feather_falling", "minecraft:feather_falling",
"minecraft:fire_aspect", "minecraft:fire_aspect",
"minecraft:sweeping_edge", "minecraft:sweeping_edge",
"mc_rebalance:windup",
"mc_rebalance:exploit", "mc_rebalance:exploit",
"minecraft:channeling", "minecraft:channeling",
"minecraft:riptide", "minecraft:riptide",