![Better Combat [Fabric & Forge]](https://media.forgecdn.net/avatars/thumbnails/566/413/256/256/637925434672465483.png)
Different speed for each attack
Jaimarl opened this issue ยท 7 comments
I read project readme, checked client side and server side configurations, and no such feature exists - YES
Is your feature request related to a problem? Please describe.
I wanted to make the first 2 rapier attacks slow and the next 3 fast.
Describe the solution you'd like
Add the ability to change the speed of each attack the same way it is done with damage. Without this feature, creating a unique and interesting attack pattern for a weapon is much more difficult.
I agree it would be nice to have such feature.
I have been thinking about this feature, and unfortunately I came to the conclusion that there is no good way to implement it.
Faster attacks within a combo would deal less damage due to the weapon cooldown reducing it. This could be automatically counteracted.
However in such scenario it would be easy to just wait before doing the quick attack, deal full damage, with the added bonus damage of speed counteract. Leading to exploitable combat.
This feature requires a great deal of math magic to get it work.
Anyone with the capacity to dwell into this is welcome to PR it.
Can't you just use the formula damage + (base_damage - damage)
? In this case, it doesn't matter how charged the attack is, the damage will always be the same.
As mentioned before, I don't think this is possible to implement in a consistent way, most people expect.
@Jaimarl Hello! How about configurable cooldown for each attack? Let's say the cooldown between the first two attacks is the normal one for the rapier, and the second cooldown is shorter, leading to the third attack being faster? Would it be possible?
This is not possible in a way that most people expect it to work.
The attack move with the faster attack speed, would be performed without fully recovering from the attack cooldown. Hence doing lower damage.
Damage could be compensated with a multiplier. But this only works when the user is spamming attack, in case there is a little pause between attacks, the faster attack would result higher damage done.
I mean, if the second cooldown could be lesser, the attack would not be performed without fully recovering from it;
But some things would be needed:
- A combo system. The player would need to press the attack key consecutively in the correct time window, otherwise, the combo would reset, and the next attack would be the same as the first one.
- Different, configurable cooldowns would be needed after each strike (let's say the default cooldown is 1; the cooldown after the second strike could be 0.75).
- Keep tracking o what step of a combo the player is in, and reset it every time a combo is finished or missed.
But I don't know if it's possible to do such a thing with the current state of the Minecraft code, it's just what I think could conceptually work