Difference between revisions of "Knockdown (Game Mechanics)"
(→Game Mechanics) |
(→Game Mechanics) |
||
(9 intermediate revisions by the same user not shown) | |||
Line 50: | Line 50: | ||
{| align="center" | {| align="center" | ||
|- | |- | ||
− | ||{{ | + | ||{{D25%}} |
|- | |- | ||
||{{GameMechanics}} | ||{{GameMechanics}} | ||
Line 60: | Line 60: | ||
− | 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 | + | 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;<br> | ||
+ | StateRoll = random(0,1);<br> | ||
+ | if [ StateRoll < ChanceOfState ] { ApplyState(); }<br> | ||
== Formulas == | == Formulas == | ||
− | '''Note: Supposedly all states have a | + | '''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. | * 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. | * 3. Needs a formula for comparing knockdown application success chance versus knockdown defense modifiers of the target. |
Latest revision as of 17:49, 11 March 2009
This article or section needs proper wiki formatting. |
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.
|
Game MechanicsKnockdown 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:
ChanceOfState = ( AttackStatePotency - DefenseVsState ) / 100; FormulasNote: Supposedly all states have a 5% chance to be applied/resisted regardless of defenses on the target.
Source References
|