Jagged Alliance에서 스텔스 킬이 어떻게 작동하나요? 3

Jagged Alliance의 즉시 처치 메커니즘에 대한 설명 3.

Stealth kills

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. 예, 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 머리 또는 neck
  • +15% for attacks with 3+ Aim levels if attacker has perc 암살 (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:
    ㅏ) *0.75 if target is Aware
    비) *0.5 if target is Suspicious 또는 Surprised
  • *0.5 if attacker’s weapon penetration class (light/medum/heavy) is worse than target’s armor class (light/medum/heavy)

예:

Fox with Dex 92 and Stealthy trait 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 ~에 의해 0.5 because Goon is Surprised and get 36.
Then we multiply 36 ~에 의해 0.5 again because Goon has better armour class than Foxweapon 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% 그리고 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. 하지 않다, in this specific case it is just 1%, ~ 아니다 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 + 최대(0, (attacker’s Strength stattarget’s Health stat)/2).

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

이 가이드는 재기드 얼라이언스 3 에 의해 작성되었습니다 sandman25dcsss. 여기에서 원본 간행물을 방문할 수 있습니다. 링크. 이 가이드에 대해 우려 사항이 있는 경우, 주저하지 마시고 연락주세요 여기.

저자 소개