bl2sdk_Mods icon indicating copy to clipboard operation
bl2sdk_Mods copied to clipboard

BL2 Eternal suggestion: Air dashes should carry momentum.

Open Lilu-VA opened this issue 1 year ago • 2 comments

Lilu-VA avatar Jul 28 '23 05:07 Lilu-VA

Lowering the gap covered from dash while adding momentum will improve it and also retain balance

Tekizyte avatar Aug 24 '23 07:08 Tekizyte

The code for momentum is already in "dashing.py" placed inside the "mechanics" folder. You can edit it with notepad/++

This is the line: "pawn.Velocity = ((_x / mag) * 200, (_y / mag) * 200, -10)" You can increase both the "200"s to reserve more momentum. I recommend 900

Also with this change the distance dash covers becomes too OP. To keep game balance you can decrease the values "6500" in this line: "self.dash_dir = ((x / mag) * 6500, (y / mag) * 6500, 0)"

I recommend 3000

Tekizyte avatar Aug 24 '23 14:08 Tekizyte