You can reverse the damping with
max(1000-distanceHereToThere, 0)
Basically any distance above 1000 won't be damped, and any within 1000 will.
With the above the damping increases linearly, but you can square it to make it increase in a more drastic way.
max(1000-distanceHereToThere, 0)^2