Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nerf short-range teleport jumps #6623

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions changelog/snippets/balance.6623.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- (#6623) While the introduction of variable teleport speeds and costs was an overall positive change for the balance of the game, it has become evident that shorter-ranged jumps are too powerful. The current 15-second delay is quite short and does not allow much leeway for counterplay. This PR aims to remedy this issue without nerfing the mechanic excessively.

- **All ACUs, as well as Aeon and Seraphim SACUs**
- Personal Teleporter
- TeleportDelay: 15 --> 17.5
- TeleportFlatEnergyCost: 75000 --> 87500
4 changes: 2 additions & 2 deletions units/UAL0001/UAL0001_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -662,8 +662,8 @@ UnitBlueprint{
},
QuickSelectPriority = 1,
SelectionPriority = 3,
TeleportDelay = 15,
TeleportFlatEnergyCost = 75000,
TeleportDelay = 17.5,
TeleportFlatEnergyCost = 87500,
},
Intel = {
FreeIntel = true,
Expand Down
4 changes: 2 additions & 2 deletions units/UAL0301/UAL0301_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -531,8 +531,8 @@ UnitBlueprint{
},
},
SelectionPriority = 3,
TeleportDelay = 15,
TeleportFlatEnergyCost = 75000,
TeleportDelay = 17.5,
TeleportFlatEnergyCost = 87500,
},
Intel = {
FreeIntel = true,
Expand Down
4 changes: 2 additions & 2 deletions units/UEL0001/UEL0001_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -664,8 +664,8 @@ UnitBlueprint{
},
QuickSelectPriority = 1,
SelectionPriority = 3,
TeleportDelay = 15,
TeleportFlatEnergyCost = 75000,
TeleportDelay = 17.5,
TeleportFlatEnergyCost = 87500,
},
Intel = {
FreeIntel = true,
Expand Down
4 changes: 2 additions & 2 deletions units/URL0001/URL0001_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -587,8 +587,8 @@ UnitBlueprint{
},
QuickSelectPriority = 1,
SelectionPriority = 3,
TeleportDelay = 15,
TeleportFlatEnergyCost = 75000,
TeleportDelay = 17.5,
TeleportFlatEnergyCost = 87500,
},
Intel = {
ActiveIntel = { Omni = true },
Expand Down
4 changes: 2 additions & 2 deletions units/XSL0001/XSL0001_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -654,8 +654,8 @@ UnitBlueprint{
Icon = "amph",
QuickSelectPriority = 1,
SelectionPriority = 3,
TeleportDelay = 15,
TeleportFlatEnergyCost = 75000,
TeleportDelay = 17.5,
TeleportFlatEnergyCost = 87500,
},
Intel = {
FreeIntel = true,
Expand Down
4 changes: 2 additions & 2 deletions units/XSL0301/XSL0301_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -528,8 +528,8 @@ UnitBlueprint{
},
},
SelectionPriority = 3,
TeleportDelay = 15,
TeleportFlatEnergyCost = 75000,
TeleportDelay = 17.5,
TeleportFlatEnergyCost = 87500,
},
Intel = {
FreeIntel = true,
Expand Down
Loading