Jagged Alliance 3 – Stealth Kills Explained

Description of instant kill mechanics.

Stealth Kills

Сrеdit gоеs to sandman25dcsss !

Here are my findings after studying source code.

The most important thing is that number of stealth kill bars scales linearly:

  • 1 bar – 1%-24% chance of instakill
  • 2 bars – 25-49% chance of instakill
  • 3 bars – 50%-74% chance of instakill
  • 4 bars – 75%-100% chance of instakill

Factors affecting chance to instakill:

  • Min chance is 1%
  • Attacker’s Dexterity: +1% for each dexterity point
  • Target’s Wisdom: -1% for each wisdom point. Yes, each unit has wisdom, for instance Goon has wisdom 30 while Elite Raid Leader has wisdom 85.
  • If at this point the chance is negative because attacker’s Dexterity is less than target’s Wizdom, the chance becomes 0
  • -40% for Crocodile and a few story characters
  • +10% if targeted body part is head or neck
  • +15% for attacks with 3+ Aim levels if attacker has perc Assassination (Dexterity tier 3)
  • +10% if attacker has perc Ambusher (Dexterity tier 2)
  • +10% if attacker has trait Stealthy. Also final chance to kill instantly cannot be below 30% if attacker has this trait.
  • +2% per Aim level if weapon has Tactical Device modification

After all those factors are totaled the game can multiply the calculated chance based on:

Target state:

  • a) *0.75 if target is Aware
  • b) *0.5 if target is Suspicious or Surprised
  • *0.5 if attacker’s weapon penetration class (light/medum/heavy) is worse than target’s armor class (light/medum/heavy)

Example:

Fox with Dex 92 and Stealthy perk uses weapon with light penetration class to shoot at Goon’s medium armoured body part, the Goon has Wisdom 30 and is Surprised after his teammate has just been killed by Fox.

  • So we have 92 (attacker’s Dexterity) – 30 (target’s Wisdom) + 10 (Stealthy trait)=72.
  • Then we multiply 72 by 0.5 because Goon is Surprised and get 36.
  • Then we multiply 36 by 0.5 again because Goon has better armour class than Fox’ weapon penetration class and get 18. But since Fox has Stealthy trait the chance cannot be less than 30% so Fox has 30% chance to instakill Goon.
  • As you can see difference between 72% and 18% is huge and it is caused by different enemy state and armor.

Even if enemy has a perk to avoid first hit during each turn, it still dies to instakill. But if instakill roll fails and enemy gets just a normal hit, the perk is activated and enemy avoids all damage, even if the damage would be 100% HP.

Another Example:

Grizzly with Dex 76 shooting at Elite Raider Leader with Wizdom 85. Calculated chance is 0%. Min chance is 1% so we have 1% of instakill. It does not matter if target is aware and what armor class uses. The game shows 1 stealth kill bar and you decide to try your luck. Don’t, in this specific case it is just 1%, not 24%.

Melee Instant Kill

Also while studying the code I noticed that Machete (melee weapon) has a chance to kill enemy instantly too, even if it is not stealthy attack. It does not stack with stealth chance, game uses whichever chance is greater. Machete needs to target neck for that and the instakill chance is calculated as 5 + max(0, (attacker’s Strength stat – target’s Health stat)/2).

Example:

Igor with Strength 98 uses Machete to attack Goon’s neck with Health 28, chance to kill instantly is 5 + max( 0, (98-28) / 2) = 5 + max(0, 70/2)=5 + max(0,35) = 5 + 35 = 40, that means 40%

Volodymyr Azimoff
About Volodymyr Azimoff 13797 Articles
I love games and I live games. Video games are my passion, my hobby and my job. My experience with games started back in 1994 with the Metal Mutant game on ZX Spectrum computer. And since then, I’ve been playing on anything from consoles, to mobile devices. My first official job in the game industry started back in 2005, and I'm still doing what I love to do.

1 Comment

Leave a Reply

Your email address will not be published.


*