diff --git a/LongWarOfTheChosen/Localization/XComGame.int b/LongWarOfTheChosen/Localization/XComGame.int
index de758098c..f50c5152e 100644
--- a/LongWarOfTheChosen/Localization/XComGame.int
+++ b/LongWarOfTheChosen/Localization/XComGame.int
@@ -8139,3 +8139,15 @@ TacticalText=" The Icarus Armor allows a soldier to instantly leap to a
LocFriendlyName="Caustic Blood"
LocLongDescription="When this unit takes damage, acid splashes out in a small area centered on it."
LocFlyOverText="Caustic Blood"
+
+[Justice X2AbilityTemplate]
+LocFriendlyName="Justice"
+LocLongDescription="Use the Grapple to pull a humanoid target to you and deliver a strike."
+LocHelpText="Use the Grapple to pull a humanoid target to you and deliver a strike."
+LocPromotionPopupText=" Justice is a great way to pull an enemy out of position.
The strike is guaranteed to hit if the pull is successful, and a graze counts as a success.
Justice does not benefit from the ripjack aim bonus, but instead gets a bonus + aim.
An open space adjacent to the Skirmisher is needed to use Justice.
Justice has a turn cooldown."
+
+[SkirmisherVengeance X2AbilityTemplate]
+LocFriendlyName="Wrath"
+LocLongDescription="Use the Grapple to pull yourself to an enemy and deliver a strike."
+LocHelpText="Use the Grapple to pull yourself to an enemy and deliver a strike."
+LocPromotionPopupText=" Wrath adds extra mobility for the Skirmisher, and can be used while the Grapple is on cooldown.
The strike is guaranteed to hit if the Grapple is successful, and a graze counts as a success.
Wrath does not benefit from the ripjack aim bonus, but instead gets a bonus + aim.
An open space adjacent to the enemy is needed to use Wrath.
Wrath has a turn cooldown."
diff --git a/LongWarOfTheChosen/Src/LW_Overhaul/Classes/X2DownloadableContentInfo_LongWarOfTheChosen.uc b/LongWarOfTheChosen/Src/LW_Overhaul/Classes/X2DownloadableContentInfo_LongWarOfTheChosen.uc
index a5ee343e8..a533d8222 100644
--- a/LongWarOfTheChosen/Src/LW_Overhaul/Classes/X2DownloadableContentInfo_LongWarOfTheChosen.uc
+++ b/LongWarOfTheChosen/Src/LW_Overhaul/Classes/X2DownloadableContentInfo_LongWarOfTheChosen.uc
@@ -5479,6 +5479,12 @@ static function bool AbilityTagExpandHandler(string InString, out string OutStri
case 'DFA_RANGE_PENALTY_NEGATION_MODIFIER':
OutString = string(int(-1 * class'X2Effect_DeathFromAbove_LW'.default.DFA_RANGE_PENALTY_NEGATION_MODIFIER * 100));
return true;
+ case 'JUSTICE_HIT_BONUS':
+ Outstring = string(class'X2Ability_SkirmisherAbilitySet'.default.JUSTICE_HIT_BONUS);
+ return true;
+ case 'WRATH_HIT_BONUS':
+ Outstring = string(class'X2Ability_SkirmisherAbilitySet'.default.WRATH_HIT_BONUS);
+ return true;
default:
return false;
}