Skip to content
Draft
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
12 changes: 12 additions & 0 deletions LongWarOfTheChosen/Localization/XComGame.int
Original file line number Diff line number Diff line change
Expand Up @@ -8139,3 +8139,15 @@ TacticalText="<Bullet/> 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 <Ability:SecondaryWeaponName/> strike."
LocHelpText="Use the Grapple to pull a humanoid target to you and deliver a <Ability:SecondaryWeaponName/> strike."
LocPromotionPopupText="<Bullet/> Justice is a great way to pull an enemy out of position.<br/><Bullet/> The <Ability:SecondaryWeaponName/> strike is guaranteed to hit if the pull is successful, and a graze counts as a success.<br/><Bullet/> Justice does not benefit from the ripjack aim bonus, but instead gets a bonus +<Ability:JUSTICE_HIT_BONUS/> aim.<br/><Bullet/> An open space adjacent to the Skirmisher is needed to use Justice.<br/><Bullet/> Justice has a <Ability:SelfCooldown_LW/> turn cooldown."

[SkirmisherVengeance X2AbilityTemplate]
LocFriendlyName="Wrath"
LocLongDescription="Use the Grapple to pull yourself to an enemy and deliver a <Ability:SecondaryWeaponName/> strike."
LocHelpText="Use the Grapple to pull yourself to an enemy and deliver a <Ability:SecondaryWeaponName/> strike."
LocPromotionPopupText="<Bullet/> Wrath adds extra mobility for the Skirmisher, and can be used while the Grapple is on cooldown.<br/><Bullet/> The <Ability:SecondaryWeaponName/> strike is guaranteed to hit if the Grapple is successful, and a graze counts as a success.<br/><Bullet/> Wrath does not benefit from the ripjack aim bonus, but instead gets a bonus +<Ability:WRATH_HIT_BONUS/> aim.<br/><Bullet/> An open space adjacent to the enemy is needed to use Wrath.<br/><Bullet/> Wrath has a <Ability:SelfCooldown_LW/> turn cooldown."
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down