diff --git a/changelog/snippets/balance.6356.md b/changelog/snippets/balance.6356.md new file mode 100644 index 0000000000..ba52975c42 --- /dev/null +++ b/changelog/snippets/balance.6356.md @@ -0,0 +1,3 @@ +- (#6356) Reduce the speed of hover flak on water to be the same as on land. This makes it less oppressive supporting hover raids and more exposed when supporting naval fleets. + - Aeon T2 mobile flak: water speed multiplier 1.35 -> 1 (water speed 3.65 -> 2.7) + - Seraphim T2 mobile flak: water speed multiplier 1.4 -> 1 (water speed 3.64 -> 2.6) diff --git a/units/UAL0205/UAL0205_unit.bp b/units/UAL0205/UAL0205_unit.bp index afb935f883..dc325bb836 100644 --- a/units/UAL0205/UAL0205_unit.bp +++ b/units/UAL0205/UAL0205_unit.bp @@ -137,7 +137,7 @@ UnitBlueprint{ TurnFacingRate = 180, TurnRadius = 0, TurnRate = 120, - WaterSpeedMultiplier = 1.35, + WaterSpeedMultiplier = 1, WobbleFactor = 0, WobbleSpeed = 0, }, diff --git a/units/XSL0205/XSL0205_unit.bp b/units/XSL0205/XSL0205_unit.bp index c36b50c529..bba1db834a 100644 --- a/units/XSL0205/XSL0205_unit.bp +++ b/units/XSL0205/XSL0205_unit.bp @@ -168,7 +168,7 @@ UnitBlueprint{ TurnFacingRate = 180, TurnRadius = 0, TurnRate = 120, - WaterSpeedMultiplier = 1.4, + WaterSpeedMultiplier = 1, WobbleFactor = 0, WobbleSpeed = 0, },