Knockdown (Game Mechanics)

From SWGANH Wiki
Jump to: navigation, search




Game Mechanics - Mechanics Category

SWGANH Wiki is a repository of Star Wars Galaxies Developer information. This site is only meant to be used by SWGANH Developer team.


Navigation

Description

Template (Game Messages)

Related Tags

25% This document has been partially completed.

Mechanics This document is about game mechanics.

Game Mechanics

Knockdown is a special class of posture change. It changes the target's posture to 'knocked down', which is graphically flat on the character's back. A target in this posture takes 1.5 times more damage while being attacked by melee opponents as well as incurring a defensive penalty against melee attack to hit chances. (Note: Defensive penalties probably should be on par with those while prone.) A knocked down character cannot use any combat queue actions for the duration of the knockdown (seems to be approximately 5 seconds), although they can start standing/changing posture immediately, as with any posture change. Knockdown has a 30 second timer, much like (but independent of) posture change during which the target cannot be knocked down again. Knockdown defensive skill mods will reduce the chance that the effect can be applied to the target. All knock down attacks have a base chance of succeeding against a target which is further modified by the target's defenses against knockdown. Knock down success chance is further lowered on a scaling basis against targets of higher CL than the target initiating the attack. Players are able to obtain knockdown from Pistoleer and Teras Kasi abilities.


Note: There is no known formula for calculating any aspect of knock down defense.

One possible idea is the following:


The defense vs. {state} skill mods are probably percentage based. So a 100% defense vs. stun would be the real limit: you never get stunned. However, it's also possible (but I've never seen it confirmed one way or the other) that different stun or KD attacks have different chances of sticking. You see this already with the potency stat on CM poisons/diseases: higher potency has a better chance of sticking. If that's the case, it might be along the lines of this:

ChanceOfState = ( AttackStatePotency - DefenseVsState ) / 100;
StateRoll = random(0,1);
if [ StateRoll < ChanceOfState ] { ApplyState(); }

Formulas

Note: Supposedly all states have a 5% chance to be applied/resisted regardless of defenses on the target.

  • 1. Needs a base knockdown application success chance for creatures.
  • 2. Needs a base knockdown application success chance for player knockdown abilities.
  • 3. Needs a formula for comparing knockdown application success chance versus knockdown defense modifiers of the target.

Source References

Source Source in Context