bl2sdk_Mods
bl2sdk_Mods copied to clipboard
BL2 Eternal suggestion: Air dashes should carry momentum.
Lowering the gap covered from dash while adding momentum will improve it and also retain balance
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