Guide to (Tohit and) Defense v1.10beta


Aramar

 

Posted

Guide to Defense, Version 1.10.beta

This is the first seriously major rewrite of the Guide to Defense since probably version 1.1. Its also probably the last version that's going to be called this: the next version is likely to be called the Guide to ToHit and Defense, since at this point, that's basically what this guide is. Its in a transition state right now as I play around with the information I want to add, delete, and modify.

I've tried hard to cut out a lot of the fluff, and shorten it, and correct typos and other errors. What I'm looking for is feedback on what to add back *in*: there's a lot of new stuff out there, and a lot of discussion since the last time I updated this guide (circa I7). What common questions do I forget to answer, or what things aren't explained well, things like that. So have at it, and tear it up.


Updates from 1.7:

* Inventions (see near the end of the guide)
* There are no versions from 1.4 to 1.9. Version number synced with Issue 10 (point releases: v1.10.1, 1.10.2, etc)
* Complete rewrite of the tohit algorithm explanations
* Rewritten examples
* More general discussion of Defense, Accuracy and Tohit mechanics
* Deleted a lot of older historical information about tohit preI6


Defense in CoH

Defense, ToHit, and Accuracy, and how they function in the tohit algorithm, are collectively among the least understood mechanisms in City of Heroes. This guide will try to explain how Defense, Tohit, Accuracy, and all elements that affect how often one thing hits another thing function, how tohit probabilities are calculated, and how the different elements in the game use these attributes.

Although specific powers numbers are mentioned throughout the Guide, this is not a Guide to specific powers values. For information on the strength of powers, consult City of Data: Powerset Quantification which is the largest and most accurate repository for powers information that I'm aware of. If your planner currently disagrees with City of Data, your planner is wrong. Note: City of Data is only guaranteed to be accurate as of the release of Issue 7. There have been changes to powers since then, but none too drastic relative to tohit mechanics.


DEFINITIONS AND THE BASIC TOHIT EQUATIONS

The basic tohit formula

NetToHit = Accuracy * (BaseToHit - Defense)

Terms:

NetToHit: the probability that one thing will hit another thing with an attack. If net tohit is 45%, then 45% of the time when A attacks B, A will hit B.

BaseToHit: the probability, associated with the attacker that represents the base probability that attacker has of hitting any target in general, before buffs, debuffs, and defense are taken into acount.

Defense: the ability, or power, to reduce the chances of an attacker from hitting you. Defense is normally expressed in percentage points, and is the number of percentage points that the defensive ability will reduce your chances of being hit by an attacker.

Accuracy: the effect of any buff that specifically affects the ability for a single power to hit its target. This includes accuracy enhancements, and things like inherent attack bonuses (i.e. weapon draw bonuses). Accuracy is a bit complicated: see the advanced tohit formula below.


The advanced tohit formula

The advanced tohit formula (my terminology - there isn't really a term for it) takes into account accuracy enhancements, tohit buffs, tohit debuffs, and defense debuffs. It is:

NetToHit = (InherentAttackAccuracy) * (1 + AccuracyEnhancement) * [ BaseToHit + ToHitBuffs - ToHitDebuffs - (Defense - DefenseDebuffs) ]

Terms:

Tohit buff/debuff: a power that increases or decreases your base tohit value. Certain powers (like tactics) offer tohit buffs, while others reduce the tohit of their target (i.e. radiation infection).

Defense buff/debuff: a power that increases or decreases your defense. While all attackers (players and NPCs) have a non-zero base tohit, all targets (players and NPCs) start off with zero base defense. Their net defense is the sum total of all defense buffs and defense debuffs.

InherentAttackAccuracy: the intrinsic accuracy of a specific attack. All attacks have an accuracy rating, which determines if the attack hits more often, or less often, than normal. Archery attacks have a 1.155 accuracy rating, sometimes referred to as "+15.5% accuracy" while some AoE mez attacks, like Flash, have a 0.8 accuracy rating, sometimes referred to as "-20% accuracy" (in both cases, the alternate description of the accuracy of the power is being expressed in percentages relative to 100% or 1.0).

AccuracyEnhancement: the amount of accuracy enhancement slotted into an attack. This number is only affected by accuracy enhancements. If you have +33.3% accuracy slotted, the AccuracyEnhancement is 0.333.

Common misconception about accuracy:

Some people think two different accuracy factors are additive: this is compounded by the fact that some posts by devs in the past have suggested that they are. They are not. The intrinsic accuracy of a power and accuracy enhancement slotting are *not* additive. One accuracy SO (+33.3%) and the weapon accuracy bonus of katana (+5%) do not add up to 38.3%. They multiply: 1.05 * 1.333 = 1.400. In fact, the "+XX%" notation is so misleading, that I do not generally use it, and this guide will always refer to accuracy factors using their multiplicative expression (1.333) and not their additive one (+33.3%) in mathematical calculations to avoid confusion.



As the equation above shows, tohit buffs and debuffs, and defense buffs and debuffs, are all additive. So if your base tohit is 50%, and you use or receive a 60% tohit buff, your modified tohit becomes:

0.50 + 0.60 = 1.10 = 110%
Note that this is higher than 100%: see tohit floors and tohit ceilings below.

If you have base tohit if 50%, your target has 30% defense, you have a 15% tohit buff, and you also apply a 10% defense debuff to the target, then your net tohit is:

0.50 + 0.15 - (0.30 - 0.10) = 0.65 - (0.20) = 0.45 = 45%

If you had 2-slotted accuracy (1.667 accuracy, or "+66.7%" accuracy) and you used an attack with a 1.05 accuracy rating, your overall net tohit would be:

(1.05) * (1.667) * (0.50 + 0.15 - (0.30 - 0.10)) = (1.05) * (1.667) * (0.65 - (0.20)) = 1.05 * 1.667 * 0.45 = 0.7877 = 78.77%


Floors, ceilings, and caps

There is a maximum net tohit value and a minimum tohit value honored by the CoH game engine. No power or set of powers can drive your net tohit higher than 95% or lower than 5%. In other words, there is always at least a 5% chance of hitting anything, and always at least a 5% chance of missing something.

The 5% minimum chance to hit something is referred to as the tohit floor.
The 5% minimum chance to miss something, or alternatively the 95% maximum chance to hit something, is referred to as the tohit ceiling.

It used to be thought that there was no cap on the amount of defense that a hero could achieve. It turns out there is, but it is very high and not normally applicable to most reasonable combat situations: its in the range of 200% defense at high levels (it scales upward with increasing combat level of your hero).

The full tohit formula

Taking into account accuracy, defense, buffs, debuffs, and floors and ceilings, its this:

Bounded[ NetToHit = (InherentAttackAccuracy) * (1 + AccuracyEnhancement) * Bounded[ BaseToHit + ToHitBuffs - ToHitDebuffs - (Defense - DefenseDebuffs) ] ]

Where Bounded[x] is the result of setting x to be 5% if x is lower than 5%, and 95% if x is higher than 95%. Notice that bounds checking is done twice: first after tohit and defense are combined (cf: the simplified tohit formula) and then again after accuracy buffs and debuffs are factored in.

(In excel terminology, Bounded(x) is MIN( MAX(x,0.05), 0.95) )


Rank and Level scaling, and the I7 Defense Scaling Update

Base tohit of villains

In I7, all critters have base tohit of 50%, and have intrinsic accuracy bonuses based on rank:

minions: 1.0 (i.e. no bonus)
LTs: 1.15
Bosses, Snipers: 1.3
Monsters, Giant Monsters, AVs, Controller Pets: 1.5


In I7, critters get accuracy buffs from +1 to +5, and then tohit buffs from +6 higher.

The level scaler in I7 for even to +10 is:

<font class="small">Code:[/color]<hr /><pre>lev acc tohit
+0 1.0 0
+1 1.1 0
+2 1.2 0
+3 1.3 0
+4 1.4 0
+5 1.5 0
+6 1.5 +5%
+7 1.5 +10%
+8 1.5 +15%
+9 1.5 +20%
+10 1.5 +40%</pre><hr />

(If you're attacking things higher than +10, you don't need my help.)

This is a change from I6 and all previous Issues back to release, when higher rank and higher level critters had increased Base Tohit, which was effectively a tohit buff. This was removed in I7 to more properly reflect the intention to make such critters hit more often, but not at the expense of disproportionately hurting defense sets.

Because there is now a Rank Accuracy Buff, and a Level Accuracy Buff, this is how the I7 tohit mechanics will work specifically for critters:

Bounded[ (InherentAttackAccuracy) * (RankBuff) * (LevelBuff) * Bounded[ (BaseToHit + ToHitBuffs - ToHitDebuffs + Defense - DefenseDebuffs) ] ]


Its important to note that I7 the defense scaler does not affect how tohit buffs work in any way (directly). Tohit buffs are just as dangerous for defense sets as before. What the change does is remove the tohit increases from higher rank and higher level foes: anything that nevertheless still possesses high tohit buffs is still a major threat to defense.

Its also important to note that because it changes villain tohit/accuracy, the defense scaler does not affect player's ability to hit critters or other players, in any way.

For more information about the I7 change to critter accuracy, please see my FAQ on the subject.


Base tohit of heroes (players)

The base tohit of heroes in PvE is 75%. In PvP (arena combat and player vs player fights in PvP zones) base player tohit was reduced (in I6) to 50%. This improves the performance of defense sets in PvP combat substantially, although tohit buffs (being additive) are still a significant issue.

Question: is this a "nerf?" Answer: no, its a proper balancing of defense sets. Defense sets performance were balanced against even level minions, which have a base 50% chance to hit. Furthermore, it is just as reasonable to view this as a +25% buff to player defense across the board, instead of a base -25% tohit chance.

[Note: as of 11/16/05 a patch note was added which specifically stated this exact thing.]



[ QUOTE ]
Example Calculations

To help people trying to make sense of this formula, I have two examples that show where all the numbers are supposed to go.

Example #1: Player attacking even level minion with thunder kick slotted with 1 acc SO; minion has 5% defense.

Net tohit = Bounded[ 1.05 * (1 + 0.333) * Bounded[ 0.75 - 0.05 ] ] = Bounded[ 1.05 * (1 + 0.333) * 0.70 ] ] = Bounded[ 0.9798 ] = 0.95 (capped) = 95%

1.05 = Martial Arts inherent accuracy bonus on all attacks
0.333 = Value of slotted accuracy enhancements
0.75 = Base tohit of player verses even level critter
0.05 = Defense of critter

Example #2: Player attacking player with thunder kick slotted with 2 acc SOs, attacker has +8% tohit buff from tactics, target has 55% defense.

Bounded[ 1.05 * (1 + 0.666) * Bounded[ 0.5 + 0.08 - 0.55 ] ] = Bounded[ 1.05 * (1 + 0.66) * Bounded[ 0.03 ] ] = Bounded[ 1.05 * (1 + 0.666) * 0.05 ] = 0.0875 = 8.75%

1.05 = Martial Arts inherent accuracy bonus on all attacks
0.666 = Value of slotted accuracy enhancements
0.08 = Tohit buffs on the attacker
0.5 = Base tohit of player verses player
0.55 = Defense of target

[/ QUOTE ]


There is an interesting quirk to how this works now. In I7, the "floor" will no longer be 5% for all villains. In fact, 5% has never been the absolute tohit floor (since circa I4); its only been the floor before accuracy is factored in. In other words, even in I6, there were villains that are IMPOSSIBLE to floor to 5% (i.e. Gunslingers) because they had/have attacks with inherent accuracy bonuses (Gunslingers: 2.0 accuracy, or "+100%" acc). Post I7, this effect is more prevalent as higher level and higher rank critters lose tohit and gain accuracy. This means "normal" defenses will become more effective against higher level and higher ranked foes, but ultra-high defense like elude and MoG will actually become somewhat less effective.



DEFENSE MECHANICS

Attack and Defense Typing

Every attack power is typed with one or more Attack Types which specify the kind of attack the power is, and what types of defense work to avoid it. There are ten attack types:

Melee_Attack, Ranged_Attack, AoE_Attack, Smashing_Attack, Lethal_Attack, Fire_Attack, Cold_Attack, Energy_Attack, Negative_Energy_Attack, Psionic_Attack

Melee_Attack, Ranged_Attack, and AoE_Attack are usually referred to as the Positional Types. The rest are usually called the Damage Types. But its important to note something very important.

Attack Types have nothing to do with actual damage.

"Fire attacks" are *not* attacks that do fire damage. "Fire attacks" are attacks that are typed "Fire_Attack" and that Fire defenses work on. They do not necessary do Fire damage.

There are eight damage types: smashing, lethal, fire, cold, energy, negative_energy, toxic, and psionic. Whether an attack does any of these, or none of these, has nothing directly to do with its damage type.

So that there is no confusion, here are some examples:

* Fireball does fire damage and smashing damage. Its typed Fire_Attack/AoE_attack. Smashing defenses do not protect against it.

* Ice Arrow is typed Cold_Attack/Ranged_Attack. It does not do cold damage. It does no damage at all.

* Dominate is typed Psionic_Attack. Notice it isn't typed with any "positional" type at all. So none of Super Reflexes defense powers work against it.

None of these are bugs: all of these are intentional by the devs.


One of the most frequently asked questions about defense is "why is there no toxic defense?" And the short answer is: because there is no toxic_attack type. Even if there was a toxic defense, it wouldn't protect against anything. The real question is, of course, why there is no toxic_attack type. That's a much more difficult question (see the end of the guide).


Defense Stacking Rules

If you have multiple defenses running (either your own powers or defense buffs cast on you by other players), defenses of the same type stack. Defense in CoH stacks additively, which is to say, if you have Defense A, and Defense B, and they stack, your net defense is A+B.

Its important to note that defense powers don't stack: defense types stack. So if you have a power with 10% defense to smashing, lethal, and energy, and another power with 10% defense to energy and negative, then if both are on you have 10% defense to smashing, lethal, and negative, and 20% defense to energy. Its that simple.

There was (and is) a special type of defense called "base defense" or "defense defense" which was basically a defense against all attacks, regardless of type. This form of defense would, of course, stack with everything. Its no longer generally used by the devs in powers definitions, and any powers that have base defense are likely, over time, to have that changed to typed defenses of some kind (defense to all types, most likely, like all power pool defenses have).

There was an issue a while ago in which the game engine was considering, say, someone with smashing defense and energy defense to get smash+energy defense against energy attacks with both smashing and energy components. This was considered a bug by the devs and corrected.


The Bottom Line

If you want to know how much defense you have against an attack, the game does this:

The game figures out how much defense you have to each attack type: melee, ranged, aoe, smashing, lethal, and so on.
Then it looks at the incoming attack, to see how its typed.
Then it looks at the defense values you have against each of the types the attack is typed to be.
Then it picks the highest one.
That's your defense against that attack.


So if you are attacked by a melee/lethal attack (say, headsplitter), and you have 20% melee defense and 15% lethal defense, you have 20% defense against that attack.


Enhancements

Defensive and Tohit powers can be enhanced using the appropriate enhancements. Defense buff/debuff, and Tohit buff/debuff enhancements (along with resistance enhancements) do not follow the general 8.33%/16.7%/33.3% TO/DO/SO (training, dual origin, single origin) enhancement progression that damage enhancements follow (this is usually referred to as "Schedule A" enhancements). Defense enhancements are worth 5% for training, 10% for dual origin, and 20% for single origin enhancements (usually called "Schedule B" enhancements).

The way enhancements work in defense powers (and in powers in general) is that the power has a base defensive value, and enhancements increase that value by a percentage amount equal to their value. To be precise: if a defense power's base value is +5% defense, and an (even level) defense SO is slotted into it, the defense power's new enhanced value is 5% * (1 + 0.2) = 6%: the power is increased in value by 20% (and not 20 percentage points, which would be 5% + 20% = 25%).

The way the game presents enhancement values is a cause for confusion. If you slot two even defense SOs into a power, the enhancement screen will show "+40% defense." The problem is that defense is measured in percentage points, and its confusing as to what this means. It does *not* mean "40 more points of defense." It actually means "1.4x the value of the power." So if the power was offering 5% defense, the enhanced value would be 5% * 1.4 = 7% defense.

As of the writing of this guide, I've *strongly* suggested to the devs that the in-game enhancement screen be changed from "+40%" to "x1.4" specifically for this reason.

Defense enhancements themselves vary in strength based on your hero's level relative to the enhancement: enhancements are 10% weaker than their base value for every level lower than your combat level they are, up to three levels lower, where they are 70% of effective strength (they are worthless if you are more than three levels higher). Conversely, they are 5% stronger for each level higher than your level they are, up to 15% stronger when they are three levels higher than you are (enhancements more than three levels higher than your character's level cannot be slotted). For example, a -2 defense SO (normally +20%) is +16% (20% * 0.8) while a +3 defense SO is +23% (20% * 1.15).


NEW: Invention Enhancements

The invention system, added in Issue 9, introduces a new kind of enhancement. All invention enhancements have the property that they have a fixed enhancement strength regardless of the level of the player's character. So if you slot a level 40 defense enhancement invention, that will have a +23.2% enhancement strength. That enhancement will always provide that same level of enhancement strength regardless of your level. Inventions do not "expire." See Invention Origin Enhancement Scaling on paragonwiki.com for tables on the strengths of invention enhancements.


***Enhancement Diversification***

Introduced in I6 is a change in how enhancements work called "enhancement diversification." Basically, it works like this for defense SOs: however you slot, and whatever you slot, you get the first 40% benefit (i.e. 2 even level SOs) at full strength, any benefit above 40% and below 50% at 0.90 (90%) of their value, and benefit above 50% and below 60% at 70% of their value, and any benefit above 60% at only 0.15 (15%) of their value.

This is tricky, so an example should help illustrate what's going on. You slot (presume even level SOs) one defense SO. Defense SOs provide 20% benefit, so you get 20% bonus to the defense power you slotted it in. The second SO adds 20%: you now have 40%. The next SO provides benefit above 40% (and below 60%), and so you get 90% of its value from 40% to 50%, and 70% of its value from 50% to 60%. So the third enhancement adds 0.9 * 10% + 0.7 * 10% = 0.16. So SO #3 adds 16%, not 20%, and your net benefit is now 56%, not 60%. The fourth SO you slot is providing benefit above 60% (note, this is calculated based on the raw values of the SOs, not the reduced value). So you only get 0.15 (15%) of its value. 15% of 20% is 3%. So you now have 60% total benefit, instead of 80%. The fifth and sixth SOs would similarly provide 15% of the SO strength, so SO #5 brings you to 63%, and #6 brings you to 66%.

Notice the extremely sharp cut off in benefit after enhancement #3. The basic rule on ED is: do not slot more than three SOs *worth* of enhancements. Its based on *benefit* and not on the little round thing you slot. So if you slot three SOs, and then one DO, the DO gets hit by ED. If you slot 3 HOs (Hamidon enhancements) of */*/defense and then an SO of defense, the SO gets hit by ED, even though "I didn't slot more than three of anything."

What matters is *benefit* - you simply aren't going to get much more than 3 SOs *worth* of benefit on anything, no matter what crazy combination of enhancements you try to use to dodge it.

Other enhancements, such as accuracy and damage, follow a different, but proportional scale (i.e. 3 SOs worth is where ED kicks in, even though 3 SOs of damage is about +100%, and not +60%).

I6 introduces something else: you can now tell *exactly* how much benefit your powers are getting from enhancements, by hovering your mouse cursor over the blue bar of the power in the enhancement screen. Also, you can "hover" (without dropping) an enhancement over a slot, and see in a popup window what the net overall change to the attributes will be if you chose to slot there.

For more information on Enhancement Diversification, see this article on ParagonWiki.com.


Inspirations

Luck inspirations appear to be +Defense to all types (i.e.: defense to melee, ranged, AoE, smash, lethal, fire, cold, energy, negative, psi), and additively stack with any other defense powers you might be running.

Insights, it has been confirmed, work like tohit buffs: they are exactly the opposite of lucks in effect.

Lucks and Insights are mislabeled. According to the devs, lucks and insights are REALLY these values:

DEF
S - 12.5%
M - 25%
L - 33%

ACC
S - 7.5%
M - 18.75%
L - 37.5%

This is considered a bug that is being worked on. What's unclear is whether the values are wrong and the labels are right, or the labels are wrong and the values are right, or if *neither* are what the values of the inspirations really *ought* to be


Resistance to defense debuffs

As of I6, resistance to defense debuffs have been added to some hero and villain sets. Not all sets with defense have had resistance to defense debuffs added: specifically Super Reflexes, Stone, Ice, and Energy Aura have had it added.

There is some confusion surrounding why resistance to defense debuffs was added in the first place. A common theory is that it was added because resistance resists resistance debuffs, but defense does not resist defense debuffs, so there was a disparity. That's actually not true: resistance resists resistance debuffs, while defense avoids defense debuffs.

The asymmetry comes because resistance to resistance debuffs doesn't go down when resistance itself is debuffed: the ability to resist resistance debuffs is itself not debuffable. It never gets weaker. But the ability to avoid a defense debuff obviously goes down as defense itself is debuffed. Defense is vulnerable to what is referred to as "cascade failure" where a defense debuff will reduce defense, making more defense debuffs land, which lowers defense even more, which allows even more defense debuffs to land.

This cascade failure, which occurs for defense sets but not for resistance sets, is the actual reason for the addition of defense debuff resistance, and it was specifically added to sets that rely on defense for a significant part of their protection. Its not an intrinsic property of defense, but a specific resistance added to specific power sets.

For more information on the strength of the debuff resistance, see City of Data listings for various defense powers.



THINGS RELATED TO DEFENSE

What is mez defense?

"Mez defense" is the generic term sometimes used to refer to powers that protect against mez. (Using terminology originally used by geko when explaining mez) there are two types of mez "defense" :mez protection and mez resistance. Neither of these is directly related to Defense in terms of damage mitigation, but its worth reviewing.

The basics of mez are: everyone has a threshold that mez effects must break through in order for the mez effect to take hold. Without any mez defense, everyone has a base mez level of -1. All mez powers have a mez magnitude. When a mez power lands, it adds its magnitude to your mez level. A hero with mez level of -1 that gets hit by a magnitude 3 hold has mez level of 2 (-1 + 3). Any mez level higher than zero means the target is mezzed. Mez protection continuously subtracts its associated defense magnitude from your mez level while the power is running. Someone running a mez defense power with mez protection magnitude 10 has a mez level of -11 (-1 - 10). If hit with a mag 3 hold, mez level increases to -8 (-11 + 3). It would take 3 more such holds for the mez level to reach +1.

Mez effects last for a certain period of time, then expire. Mez resistance allows a target to shake off mez effects faster. So instead of a mez effect lasting ten seconds, it might last eight.

Unlike damage resistance, mez resistance works on a different formula: NetDuration = OriginalDuration / (1 + MezResistance). For players, the mez resistance cap is 100%, which means the absolute best that mez resistance can reduce a mez duration on you is half: Duration / (1 + 1.0) = Duration / 2.

Mez protection and mez resistance are not true Defense or Resistance, but its useful to understand and is often confused with true Defense and Resistance.

All mez protection powers in melee defense sets scale up with level, with tankers getting maximum protection at level 35, and scrappers at level 45.

*** Note: in I6 mez protection powers were reduced from their previous levels. Maximum protection for tanks and scrappers used to be about magnitude 15, which in effect means controllers needed 6 holds to break protection. In I6, this has been tested to happen at 3 or 4 holds, which implies mez protection has been roughly cut in half.

What you probably don't know about mez protection.

Mez protection can actually be debuffed. Any power that debuffs a target's ability to *use* mez, will also as a natural consequence debuff their mez protection (that "strength" is the same number under the hood). Specifically: benumb debuffs mez strength, and therefore also debuffs mez protection. The 55.9% benumb debuff would also reduce your mez protection, from say 10.38 for a level 50 scrapper, down to 10.38 * (1 - 0.559) = 4.58. Like: two holds.



DEFENSE, ACCURACY, AND VILLAINS

Some villains are really nasty when it comes to hitting you. For example, all Malta attacks have an intrinsic 1.2 accuracy - as if they were slotted with a +20% accuracy enhancement. Malta Gunslingers are special: their attacks all have 2.0 accuracy: as if they were slotted with 3 accuracy SOs. Rularuu Watchers (the big eyeballs) have very high strength defense debuffs, and high accuracy (their defense debuffs range from -15% to -30% based on rank).

Certain CoV villains now use build up, with the associated tohit buff.

On the defensive side: Paragon Protectors that use MoG appear to have *massively* higher defense than the ones that (apparently) use Elude. Its unclear precisely why the large difference exists. And Behemoths definitely look to be getting more than the standard 5% defense for having a player in the invincibility field.

Villains seem, over time, to be acquiring defense powers and abilities. That could be a large source of people believing that "accuracy" has been reduced, when accuracy is unchanged, but the defensive capabilities of the villains has improved.


OVERVIEW OF DEFENSE IN POWER SETS

Note: much of this section has been trimmed: for more information on defense powers, see City of Data.


Positional Defenses

Few sets have positional defenses. The only two defensive sets with significant positional defenses are Super Reflexes (scrapper and stalker) and Ninjitsu. Almost all other self protection sets have damage-typed defensive powers.

All power pool defenses are typed Defense(All types). This means they have the same amount of defense to all attack types, including positional defense and damage-typed defenses.

Force Field bubbles have both damage-typed defense attributes, and positional-typed defense attributes. Each defensive bubble has protection to some types, but collectively they have protection to all types.


Invincibility

It took a long time for players to figure out what invincibility does, exactly, and what it does has changed several times from release to now. Invincibility offers Base 5% defense for tankers (3.75% defense for scrappers) so long as there is at least one thing in range. It then offers +1.5% defense per target in invincibility's aura range (1.125% for scrappers), to a maximum of ten. So, with nothing in range, invincibility offers zero defense. With one thing, its 6.5% defense (for tankers). With two things, its 8%. With 10 things, its 20% defense. Invincibility also has a tohit buff: its +2% per target in range, for a maximum buff of +20% (unslotted) tohit.


Stalker Hide

All stalkers have a power called hide. Hide offers defense to melee/ranged/AoE/smash/lethal/fire/cold/energy/negative. The defense appears to be about 3.75% to all listed types except AoE, and 37.5% to AoE (that's not a misprint: thirty seven point five percent) when hidden, and 1.875% to all listed types when hide is suppressed. Hide also provides the highest -perception (i.e. stealth) of any power, and while hidden stalker attacks critical (double damage) and assassin's strike powers do six times bonus critical damage.


Special Note on Stealth

Stealth powers generally break their concealment component when you either attack or are attacked. When the stealth is broken, most stealth powers that have a defense buff component will have about half their defense also suppressed while the stealth component is broken.

For information on which powers suppress their defense when stealth is suppressed, consult City of Data.


Special Note on Power Boost

The power Power Boost (both the blaster energy manipulation version, and the epic power pool version) boosts defense powers while power boost is active. The boost is about equal to the base value of the defense power being boosted (its variable based on what archetype is using the power: see City of Data for specifics). For example, if you have hover running (2.5% defense) and you trigger power boost, hover gains 2.5% additional defense. If hover was 5-slotted with defense SOs (net 5% defense) the boost would still be 2.5% (to 7.5% total defense).


What is the Streak Breaker?

The streak breaker is a bit of code within the tohit calculator that is designed to prevent very long strings of misses. There is a lot of misunderstanding about how the streak breaker works, so I'm going to be very specific in terms of detailing how I know what I know about the streak breaker.

First, the streak breaker only breaks streaks of misses, not hits. Confirmed by my own testing, dev postings, and red name PMs.

Second, the streak breaker affects both heroes and villains. Confirmed by my own testing, dev postings, and red name PMs.

Third, the streak breaker "decides" to break a string of misses when the string of misses exceeds a particular value. That value is dependent on the tohit probability between the attacker and the target. Here is Weirdbeard's specific statements on how the streakbreaker works:

[ QUOTE ]

Final to-hit : misses allowed
&gt;.9 : 1
.8-.9 : 2
.6-.8 : 3
.4-.6 : 4
.3-.4 : 6
.2-.3 : 8
0 -.2 : 100

Auto-hit powers are not included in the system.

Critters get the benefits of the system as well.

The system does not track each power individually; instead it tracks every miss you make in a row, regardless of power (or target). Otherwise you could have nine different powers, each with a 0.95 to-hit, and if you executed them all in a row you could miss each attack (note a caveat at the bottom of the post regarding this).

AE attacks are considered distinct sequential attacks on indivudual targets for the purpose of the system (so if you AEd two targets and had 0.95 to-hit for both, you be guaranteed to hit one of them).

To determine the to-hit used in the table above, you take either the current to-hit, or the worst to-hit in your current miss series, whichever is lower.


[/ QUOTE ]

This basically matches all the testing I've done to measure the streakbreaker, correcting for some errors in my testing methodology that Weirdbeard was able to detect in my discussions with him.


DEFENSE ISSUES

These are some of the issues related to how defense and tohit works in City of Heroes


Autohitting attacks

There are attacks that automatically hit, bypassing the tohit floors and ceilings. Very few attacks currently autohit. Among them are things like the damage aura from the Envoy of Shadows, and the damage from caltrops.

According to the devs, the intent is to remove all autohitting damage with two exceptions: special case damage (like special AV powers, ala the Envoy of Shadows), and "trivial" damage that occurs as part of autohitting debuffs (ala Caltrops). For the most part, they seem to have done this, but there appear to be exceptions to this rule.


Quartz eminators

Quartz eminators are a +100% tohit buff to all affected DE. 'Nuff said.

Geas of the Kind Ones / Force of Nature

These accolades (hero/villain) offer a +200% tohit buff (!) and a -200% defense debuff to the player. Which means anyone using it can basically hit anything no matter how much defense the target has, and anyone with defense that uses it will suddenly find themselves without any. Yes, in fact, the devs really do hate defense that much. Or it might just be me.
(Actually, this has been acknowledged to be a decimal point error, however as its primary effect is in PvP (no critter possesses that power - thank god) no change is currently contemplated.


What's up with tohit buffs in general?

Good question. Very high tohit buffs are, at least, uncommon in PvE. They are very common in PvP, because high order tohit buffs are extremely common in player power sets.

The two most common tohit buffs are build up and Aim, and both are high order tohit buff (the exact numbers are being currently debated: its quite possible that both BU and Aim have much lower tohit values than originally assumed, but even the lower debated numbers are still very high relative to most defense numbers). Virtually all blasters, most defenders, almost all scrappers, and most tankers have access to either Build Up or Aim, and many blasters have access to both. Only controllers as a class lack BU or Aim (and pets have a tohit bonus).

If you are relying on defense in the arena, here's the score. Unless you are operating in triple-stacked bubbles, running maximally slotted Elude plus everything else SR, or hiding in a PFF, if someone wants to hit you, they are going to hit you. Even moderate tohit buffs are high enough to negate all of your defense and allow them to hit you about as often as they can hit a defenseless cardboard box. If you are operating under Elude, they will have to try harder to hit you. Very well-slotted BU+Aim can do it, as can defender/corruptor Aim with tactics. And there is an accolade (Geas of the Kind Ones) that offers a +200% tohit buff, which essentially can hit through anything.

Which is not to say this is impossible to address.


Why is there no toxic defense?

Because there's no toxic attack type, so there's no toxic defense to protect against it. Why is there no toxic attack type? Short answer: too time-consuming to add to the game engine, for what the devs perceive to be insufficient benefit to the game as a whole. This means that "hole" is likely to be around for a very very long time.

Lots of people have suggested ways to work around this, or just add it back in, including me. These are unlikely to get very far with the devs.


Mind Control

Mind control attacks are all typed psionic_attack. They are *not* typed "ranged_attack" or any other positional type. This means that as far as those attacks are concerned, super reflex and ninjitsu defenses don't exist. SR and Ninjitsu no more affect these attacks than the lethal defense in Parry affects psionic blasts.

This is not a bug. This is by explicit design decision: mind control attacks were designed to specifically require psionic defense explicitly to protect against them. As a result, SR has no protection against mind control attacks in PvP or PvE (Lost, Tsoo, Rikti, Carnies, among other groups use mind control attacks). Its unclear if this is *balanced*, but its not bugged.


New for I9: Inventions

It would be impossible in this guide to give anything but a brief overview of the Invention System. Here are some of the highlights, relevant to questions of tohit and defense.

What does Kismet +Acc do?

The Kismet +Acc IO grants +6% tohit buff to the player while the IO is active. The Kismet IO grants its buff for 120 seconds after the power its slotted into is activated. If its slotted into a passive or toggle power, those powers have "activation periods" where the power pulses to refresh its buff on the player (yes, even passive powers "do something" continuously). This means that for all intents and purposes, if Kismet is slotted into a passive or toggle power, its on as long as the power is on (which for a passive means "always").

When an invention set like, say, Crushing Impact claims to be giving me a 7% accuracy bonus if I slot 4 of them into a power, what does that actually do?

Invention set accuracy bonuses are actual accuracy bonuses, not tohit bonuses (they originally were tohit, but were changed during beta: the patch that implemented the change did not propagate to the live servers until after Issue 9 went live, however). The way they work is that they act like additional accuracy slotting. So if you have two attacks, one of which is slotted with one accuracy SO (+0.333 acc) and one of which is slotted with two accuracy SOs (+0.666), then if you have a +7% set accuracy bonus, those two powers will end up with 1.403 accuracy (1.333 + 0.07) and 1.736 accuracy (1.666 + 0.07). Note that even though it looks like they act like enhancements, they are not actually enhancements, and are unaffected by ED.



THE CANONICAL LIST OF DEFENSE-RELATED COMPLAINTS REGULARLY DISCUSSED ON THE FORUMS

Especially post I7, this list is very different from what it used to be:

* High defense is too frustrating in the arena
* Low defense is too frustrating in the arena
* There are too many defense debuffs in the game
* Defense debuffs are too strong
* Tohit buffs in the arena are too strong
* Defense requires you to be lucky
* Defense is inferior to Resistance in all respects
* Force Field defenders have insufficient self-protection
* Lucky and Evasion are in the wrong order in the SR set
* The -DEF in Unyielding should be removed given the overall reductions to the invuln set
* Geas of the Kind Ones supplants Quartz eminators as Most Stupidly High Tohit Buff
* Energy Aura appears to have way too many types of attacks for which it has no defensive protection
* Why is mind control not typed positionally?


Be forewarned: this stuff has been debated to death. Also, while I strongly encourage people to post their ideas, observations, comments, and suggestions on defense-related issues, bear in mind that if you post a message stating, essentially "I have the answer to everything" one of two things is extremely likely to happen: the message will be ignored, or the suggestion in the message will be heavily critiqued. Be prepared for both.


THE PURPLE PATCH

Get asked about this all the time. Here is what happens when you try to attack something much higher than you are, in terms of your powers effectiveness going down, and in terms of your base tohit going down also. Note: this affects players attacking higher leveled foes. Low level villains attacking a higher level player are not affected by the purple patch. These numbers come from a Geko post from the distant past.

[ QUOTE ]

Foes your level have not changed. You have a 75% chance to hit and your powers are 100% effective.
Foes 1 level above you - No Change. You have a 65% chance to hit and your powers are 90% effective.
Foes 2 levels above you - No Change. You have a 56% chance to hit and your powers are 80% effective.
Foes 3 levels above you - You have a 48% chance to hit and your powers are 65% effective.
Foes 4 levels above you - You have a 39% chance to hit and your powers are 48% effective.
Foes 5 levels above you - You have a 30% chance to hit and your powers are 30% effective.
Foes 6 levels above you - You have a 34% chance to hit and your powers are 15% effective.
Foes 7 levels above you - You have a 20% chance to hit and your powers are 8% effective.
Foes 8 levels above you - You have an 8% chance to hit and your powers are 5% effective.
Foes 9 levels above you - You have a 5% chance to hit and your powers are 4% effective.
Foes 10 levels above you - You have a 5% chance to hit and your powers are 3% effective.
Foes 11 levels above you - You have a 5% chance to hit and your powers are 2% effective.
Foes 12+ levels above you - You have a 5% chance to hit and your powers are 1% effective.


[/ QUOTE ]

Note: this includes the corrected tohit numbers that were discovered around I6.


A discussion on AT modifiers

All defense powers (in fact, all powers period) are designed with a scale value. Its the inherent strength of the power. However, the actual strength of the power depends on which AT has it. Each AT has a set of modifiers that "scale" the power's values to the proper strength.

This table is the AT defense modifier table (taken from Iakona's thread).

<font class="small">Code:[/color]<hr /><pre>
Modifier Blast Contr Def Scrap Tank PeacB Warsh Brute Stalk MasM Dom Corrupt
M Buff Def 0.070 0.090 0.100 0.075 0.100 0.075 0.075 0.075 0.075 0.090 0.085 0.085
R Buff Def 0.065 0.075 0.100 0.065 0.065 0.075 0.075 0.065 0.065 0.075 0.075 0.075</pre><hr />

For example, these are the values for Super Reflexes:

SR Toggles: Scale 1.85
SR Passives: Scale 0.75

This means SR toggles are 1.85 * 0.075 = 0.13875 = 13.875% SR passives are 0.75 * 0.075 = 0.05625 = 5.625%

Note that there are two values, an "M" (melee) modifier, and an "R" (ranged) modifier. This has nothing to do with melee or ranged defense. M modifiers are used for powers that self buff, and R modifiers are used for powers that ally buff. So powers like combat jumping, hover, and stealth use the melee modifier. Maneuvers uses the ranged modifier. Grant Invisibility seems to be an exception to this rule: GI uses the melee modifier, not the ranged modifier, as you would expect given that its a buff.

Most Power pool defenses are 0.25 scale. Weave is an exception: its 0.50 scale. It seems stealth is also an exception: its 0.5 scale unsuppressed, and 0.25 scale suppressed. This is suggested in the Prima Guide.

Supposedly, everything obeys AT modifiers, including all defense powers, whether in primary or secondary sets, or in power pools. An interesting exception is the Unyielding Debuff: its -5% for both scrappers and tankers.

SR scrappers and SR stalkers have the same defense values, except SR stalkers have a higher scale value for Evasion, because they lack lucky. Ninjitsu stalkers have the same values for toggle defenses as SR scrappers and stalkers. This is because the toggles and passives for SR scrappers, SR stalkers, and Ninjitsu stalkers all have the same scale value, and scrappers and stalkers have the same AT defense modifier. Simple as that.

For additional information on archetype modifiers, see City of Data: Archetype Modifiers.



SOURCES OF ADDITIONAL INFORMATION

I kept the power set numbers out of this guide for the most part, except where they appear to be commonly discussed or questioned. If you want them, here they are:

City of Data is the best source of numbers around, period. Its based on I7 numbers, so as the game continues to change, it will slowly become dated, but its information is otherwise unparalleled.

Paragonwiki is an excellent source of collected background information about the game.

The Prima Update for I7 has a lot of numbers now published for all sorts of power values. Fair warning: if you are not knowledgeable about how the numbers actually *work* in CoH, this guide might lead you astray. For example, power pool defenses are listed for a theoretical AT with Defense buff modifier 0.100 - i.e. its good for tankers. Scrappers would actually benefit by only 75% of the listed values for defense and resistance.

If Iakona posts it, its probably correct. Check his posts on the forums. Unfortunately, at the moment Iakona is "on indefinite leave from the game."


Use of this Guide

Anyone compiling information for use by players of City of Heroes and City of Villains has permission to reproduce this guide whole or in part, so long as some form of attribution is maintained. But if you make a ton of money off of it, and I find out about it, I'm going to come looking for my cut.


[Guide to Defense] [Scrapper Secondaries Comparison] [Archetype Popularity Analysis]

In one little corner of the universe, there's nothing more irritating than a misfile...
(Please support the best webcomic about a cosmic universal realignment by impaired angelic interference resulting in identity crisis angst. Or I release the pigmy water thieves.)

 

Posted

Thanks for the post. Will nitpick later.


Story Arcs I created:

Every Rose: (#17702) Villainous vs Legacy Chain. Forget Arachnos, join the CoT!

Cosplay Madness!: (#3643) Neutral vs Custom Foes. Heroes at a pop culture convention!

Kiss Hello Goodbye: (#156389) Heroic vs Custom Foes. Film Noir/Hardboiled detective adventure!

 

Posted

As always, excellent guide. My thoughts:

[ QUOTE ]
Bounded[ NetToHit = (InherentAttackAccuracy) * (1 + AccuracyEnhancement) * Bounded[ BaseToHit + ToHitBuffs - ToHitDebuffs - (Defense - DefenseDebuffs) ] ]

[/ QUOTE ]
What about showing where the ToHit and Defense caps are applied here? It becomes important in PvP since the "base 50% ToHit" is implemented as a 25% def bonus instead of a BaseToHit reduction, as you mentioned. It's confused me a bit in the past. Something like:

Bounded[ NetToHit = (InherentAttackAccuracy) * (1 + AccuracyEnhancement) * Bounded[ BoundedToHit(BaseToHit + ToHitBuffs - ToHitDebuffs) - BoundedDefense(Defense - DefenseDebuffs) ] ]

This:
[ QUOTE ]
All mez protection powers in melee defense sets scale up with level, with tankers getting maximum protection at level 35, and scrappers at level 45.

[/ QUOTE ]
is a quote from Statesman (I think) that IMO needs to die. Mez protection never stops increasing with level. A standard tank has -11.725 mag at 35, -13.975 at 50, which is the difference between being held by 3 Troller/Dom holds and 4.

In addition to mez protection, mez resistance is also affected by strength modifers.

You also might want to change Iakona's link to his v2 guide, so people don't have to go digging through pages to find the data (and also don't get confused by the incorrect numbers on Aim in the linked post).

Again, the CoH community owes you a great deal for this guide. Thanks!


 

Posted

[ QUOTE ]
* Lucky and Evasion are in the wrong order in the SR set

[/ QUOTE ]
Focused Fighting
Focused Senses
Evasion
Practiced Brawler
Dodge
Agile
Lucky
Quickness
Elude

Next ...

[ QUOTE ]
* The -DEF in Unyielding should be removed given the overall reductions to the invuln set

[/ QUOTE ]
That, and the recognition that Invulnerability is still completely vulnerable to Defense Debuffs ...

[ QUOTE ]
* Geas of the Kind Ones supplants Quartz eminators as Most Stupidly High Tohit Buff

[/ QUOTE ]
Which then begs the question ... how long does it take to fix a decimal point typo in a spreadsheet? YEARS?!?



We now return you to your regularly scheduled blunt trauma on dessicated corpse event, already in progress ...


It's the end. But the moment has been prepared for ...

 

Posted

[ QUOTE ]


THE PURPLE PATCH

Get asked about this all the time. Here is what happens when you try to attack something much higher than you are, in terms of your powers effectiveness going down, and in terms of your base tohit going down also. Note: this affects players attacking higher leveled foes. Low level villains attacking a higher level player are not affected by the purple patch. These numbers come from a Geko post from the distant past.

[ QUOTE ]

Foes your level have not changed. You have a 75% chance to hit and your powers are 100% effective.
Foes 1 level above you - No Change. You have a 65% chance to hit and your powers are 90% effective.
Foes 2 levels above you - No Change. You have a 56% chance to hit and your powers are 80% effective.
Foes 3 levels above you - You have a 48% chance to hit and your powers are 65% effective.
Foes 4 levels above you - You have a 39% chance to hit and your powers are 48% effective.
Foes 5 levels above you - You have a 30% chance to hit and your powers are 30% effective.
Foes 6 levels above you - You have a 34% chance to hit and your powers are 15% effective.
Foes 7 levels above you - You have a 20% chance to hit and your powers are 8% effective.
Foes 8 levels above you - You have an 8% chance to hit and your powers are 5% effective.
Foes 9 levels above you - You have a 5% chance to hit and your powers are 4% effective.
Foes 10 levels above you - You have a 5% chance to hit and your powers are 3% effective.
Foes 11 levels above you - You have a 5% chance to hit and your powers are 2% effective.
Foes 12+ levels above you - You have a 5% chance to hit and your powers are 1% effective.


[/ QUOTE ]

Note: this includes the corrected tohit numbers that were discovered around I6.



[/ QUOTE ]


Typo for 6 lvls below, should be 24% rather than 34% (or so I'd assume from the progression, that or it's a bizarre dev spreadsheet error?)


 

Posted

[ QUOTE ]
As always, excellent guide. My thoughts:

[ QUOTE ]
Bounded[ NetToHit = (InherentAttackAccuracy) * (1 + AccuracyEnhancement) * Bounded[ BaseToHit + ToHitBuffs - ToHitDebuffs - (Defense - DefenseDebuffs) ] ]

[/ QUOTE ]
What about showing where the ToHit and Defense caps are applied here? It becomes important in PvP since the "base 50% ToHit" is implemented as a 25% def bonus instead of a BaseToHit reduction, as you mentioned. It's confused me a bit in the past. Something like:

Bounded[ NetToHit = (InherentAttackAccuracy) * (1 + AccuracyEnhancement) * Bounded[ BoundedToHit(BaseToHit + ToHitBuffs - ToHitDebuffs) - BoundedDefense(Defense - DefenseDebuffs) ] ]

[/ QUOTE ]

Further addendum to this...shouldn't the NetToHit = be on the outside of the Bounded[]?

NetToHit = Bounded[ (InherentAttackAccuracy) * (1 + AccuracyEnhancement) * Bounded[ BoundedToHit(BaseToHit + ToHitBuffs - ToHitDebuffs) - BoundedDefense(Defense - DefenseDebuffs) ] ]

From the original:
[ QUOTE ]
Example Calculations

To help people trying to make sense of this formula, I have two examples that show where all the numbers are supposed to go.

Example #1: Player attacking even level minion with thunder kick slotted with 1 acc SO; minion has 5% defense.

Net tohit = Bounded[ 1.05 * (1 + 0.333) * Bounded[ 0.75 - 0.05 ] ] = Bounded[ 1.05 * (1 + 0.333) * 0.70 ] ] = Bounded[ 0.9798 ] = 0.95 (capped) = 95%

1.05 = Martial Arts inherent accuracy bonus on all attacks
0.333 = Value of slotted accuracy enhancements
0.75 = Base tohit of player verses even level critter
0.05 = Defense of critter

[/ QUOTE ]

I'd suggest a bit of a change on the color scheme for your sample numbers. The green is hard to see on the CoH forum skin, and the red can be a pain over on the CoV red skin. How about:

[ QUOTE ]
Example Calculations

To help people trying to make sense of this formula, I have two examples that show where all the numbers are supposed to go.

Example #1: Player attacking even level minion with thunder kick slotted with 1 acc SO; minion has 5% defense.

Net tohit = Bounded[ 1.05 * (1 + 0.333) * Bounded[ 0.75 - 0.05 ] ] = Bounded[ 1.05 * (1 + 0.333) * 0.70 ] ] = Bounded[ 0.9798 ] = 0.95 (capped) = 95%

1.05 = Martial Arts inherent accuracy bonus on all attacks
0.333 = Value of slotted accuracy enhancements
0.75 = Base tohit of player verses even level critter
0.05 = Defense of critter

[/ QUOTE ]


 

Posted

A While back when I tried to transfer your guide to paragon wiki I had a hell of a time deciphering sections, subsections, etc.

This guide has pretty much the same problem. I see yellow text which sometimes seems to start a header and other times seems like a note. There is all caps/bold there is firstletter/bold, and there is italics. I think the guide would benefit immensely from a I, 1, i, outline style, with a nice ToC at the top.


 

Posted

Mmm, updates.

[ QUOTE ]
So that there is no confusion, here are some examples:

* Fireball does fire damage and smashing damage. Its typed Fire_Attack/AoE_attack. Smashing defenses do not protect against it.

* Ice Arrow is typed Cold_Attack/Ranged_Attack. It does not do cold damage. It does no damage at all.

* Dominate is typed Psionic_Attack. Notice it isn't typed with any "positional" type at all. So none of Super Reflexes defense powers work against it.

[/ QUOTE ]

Another good example: Levitate deals smashing damage, but is typed Psionic_Attack only. This is the only example I can think of where damage type and attack type are in complete disagreement.

[ QUOTE ]
The power Power Boost (both the blaster energy manipulation version, and the epic power pool version) boosts defense powers while power boost is active.

[/ QUOTE ]

For the sake of completeness you may want to mention Dominators and Power Build Up here too.

[ QUOTE ]
All mez protection powers in melee defense sets scale up with level, with tankers getting maximum protection at level 35, and scrappers at level 45.

[/ QUOTE ]

I know a dev tossed this out at some point, but I don't think it's actually correct, or isn't correct anymore. Per iakona's formulas from the second power standardization thread, it appears to be a straight 1-50 progression.

[ QUOTE ]
Specifically: benumb debuffs mez strength, and therefore also debuffs mez protection. The 55.9% benumb debuff would also reduce your mez protection, from say 10.38 for a level 50 scrapper, down to 10.38 * (1 - 0.559) = 4.58. Like: two holds.

[/ QUOTE ]

It may also be worth mentioning Weaken, which if CoD is correct is even more powerful at 74.5%. I think those are the only two mez debuffs in the game, correct?

Power Boost should also buff mez protection, which I think is really only relevant to Dominators if used prior to Domination. FF or Sonic controllers or defenders with the ancillary PB/PBU would also be affected, but since their mez protection is a toggle and PB is short duration the uses for that are probably limited.

[ QUOTE ]
Supposedly, everything obeys AT modifiers, including all defense powers, whether in primary or secondary sets, or in power pools. An interesting exception is the Unyielding Debuff: its -5% for both scrappers and tankers.

[/ QUOTE ]

The debuff for brutes and scrappers was reduced to -3.75 in the 8/1/06 patch.


 

Posted

[ QUOTE ]
Power Boost should also buff mez protection, which I think is really only relevant to Dominators if used prior to Domination.

[/ QUOTE ]
Domination is one of those powers exempt from PB's buff.


 

Posted

Ah, sneaky. That suggests more foresight than I would have anticipated.


 

Posted

[ QUOTE ]
It becomes important in PvP since the "base 50% ToHit" is implemented as a 25% def bonus instead of a BaseToHit reduction, as you mentioned.

[/ QUOTE ]

I believe in fact, it is implemented as a change to base tohit, not a 25% defense bonus. It has to be, because a 25% zone-wide player defense buff would help us against critters also, and the game currently does not have the tech to apply a defense buff only for some attackers. But it *can* alter your base to hit based on your target: clearly that happens when you simultaneously attack two things of different levels.


[ QUOTE ]
is a quote from Statesman (I think) that IMO needs to die. Mez protection never stops increasing with level. A standard tank has -11.725 mag at 35, -13.975 at 50, which is the difference between being held by 3 Troller/Dom holds and 4.

In addition to mez protection, mez resistance is also affected by strength modifers.

[/ QUOTE ]

True: we now have the correct tables. I will adjust the guide to reflect the correct mez-related tables.


[Guide to Defense] [Scrapper Secondaries Comparison] [Archetype Popularity Analysis]

In one little corner of the universe, there's nothing more irritating than a misfile...
(Please support the best webcomic about a cosmic universal realignment by impaired angelic interference resulting in identity crisis angst. Or I release the pigmy water thieves.)

 

Posted

[ QUOTE ]
Typo for 6 lvls below, should be 24% rather than 34%

[/ QUOTE ]

Typo. Corrected in the next beta version.


[Guide to Defense] [Scrapper Secondaries Comparison] [Archetype Popularity Analysis]

In one little corner of the universe, there's nothing more irritating than a misfile...
(Please support the best webcomic about a cosmic universal realignment by impaired angelic interference resulting in identity crisis angst. Or I release the pigmy water thieves.)

 

Posted

[ QUOTE ]
Further addendum to this...shouldn't the NetToHit = be on the outside of the Bounded[]?

[/ QUOTE ]

Yep. Corrected.

[ QUOTE ]
The green is hard to see on the CoH forum skin, and the red can be a pain over on the CoV red skin. How about:

[/ QUOTE ]

I will take it under advisement: I'll specifically check the colors in both forum schemes to make sure they look better (I bounce back and forth, but typically edit guides on the blue side only). I agree your colors look better.


[Guide to Defense] [Scrapper Secondaries Comparison] [Archetype Popularity Analysis]

In one little corner of the universe, there's nothing more irritating than a misfile...
(Please support the best webcomic about a cosmic universal realignment by impaired angelic interference resulting in identity crisis angst. Or I release the pigmy water thieves.)

 

Posted

[ QUOTE ]
A While back when I tried to transfer your guide to paragon wiki I had a hell of a time deciphering sections, subsections, etc.

This guide has pretty much the same problem. I see yellow text which sometimes seems to start a header and other times seems like a note. There is all caps/bold there is firstletter/bold, and there is italics. I think the guide would benefit immensely from a I, 1, i, outline style, with a nice ToC at the top.

[/ QUOTE ]

I haven't forgotten about that: this is a content pass to make sure I have what I want in this version: the next version is going to make a prettification pass to improve the organization. First step was to cut a lot of the fat out while making sure I didn't cut out something important. You're absolutely correct that the headers and section breaks are currently somewhat of a mess.

I'm actually thinking of making a multi-post version of this guide: that might be better for organizational purposes, and would allow me to link TOC between posts.


[Guide to Defense] [Scrapper Secondaries Comparison] [Archetype Popularity Analysis]

In one little corner of the universe, there's nothing more irritating than a misfile...
(Please support the best webcomic about a cosmic universal realignment by impaired angelic interference resulting in identity crisis angst. Or I release the pigmy water thieves.)

 

Posted

A few nitpicky things:

[ QUOTE ]
For more information on Enhancement Diversification, see this article on ParagonWiki.com.


[/ QUOTE ]

The link sends me to the main page and not the ED page. But maybe that's just me..

[ QUOTE ]
The fourth SO you slot is providing benefit above 60% (note, this is calculated based on the raw values of the SOs, not the reduced value). So you only get 0.15 (15%) of its value. 15% of 20% is 3%. So you now have 60% total benefit, instead of 80%. The fifth and sixth SOs would similarly provide 15% of the SO strength, so SO #5 brings you to 63%, and #6 brings you to 66%.

[/ QUOTE ]

The 4th SO actually would net 59%, the 5th 62% ect..

[ QUOTE ]
Hide also provides the highest -perception (i.e. stealth) of any power,

[/ QUOTE ]

Not quite true. Invisibility powers provide more in PvP and SI provides more in PvP and PvE.

[ QUOTE ]
If hover was 5-slotted with defense SOs (net 5% defense) the boost would still be 2.5% (to 7.5% total defense).

[/ QUOTE ]

Must have overlooked this when changing to account for ED?

[ QUOTE ]
The two most common tohit buffs are build up and Aim, and both are high order tohit buff (the exact numbers are being currently debated: its quite possible that both BU and Aim have much lower tohit values than originally assumed, but even the lower debated numbers are still very high relative to most defense numbers).

[/ QUOTE ]

Have the values changed since CoD?

But great revisit to an already great guide.

Ian


 

Posted

Most of these are vestigal information from much older versions that linger on: I've noted them and corrected them for the next version. I'll also be taking another pass through all the links: Paragonwiki links in particular are likely to be broken since their relocation.


[Guide to Defense] [Scrapper Secondaries Comparison] [Archetype Popularity Analysis]

In one little corner of the universe, there's nothing more irritating than a misfile...
(Please support the best webcomic about a cosmic universal realignment by impaired angelic interference resulting in identity crisis angst. Or I release the pigmy water thieves.)

 

Posted

First off Thanks on behalf of those that read this and do not reply. I've been looking forward to this post since you mentioned it.

Posting for both sides would be nice to make the color readable. Posting it the sites you mention would also help others find it.

The formula would have a higher comprehension return for language focused learners if the examples of the formula have the numbers replaced by the names. This would be a reverse example to the ones listed. Verbal learners would then read the equation as a sentence or pseudo code. I can't post an example yet. Ill have reply again or edit this later.

I wonder if there is a way for the guide to be dynamic using the concepts of OOP, ASP or Wiki. Linking directly to the numbers in CoD. Those numbers may become as you alluded to 'out of date' per see.

Does Hamidon have any attacks that are exclusions? Where some are unresisted? Nictus damage has a similar feature.


 

Posted

[ QUOTE ]
Does Hamidon have any attacks that are exclusions? Where some are unresisted? Nictus damage has a similar feature.

[/ QUOTE ]

The pre-I9 Hamidon had untyped attacks that did untyped damage. Meaning, no defense worked on the attacks, and no resistance worked on the damage. The I9+ Hamidon is a little different: the attacks are all still untyped (no defense works on them), but some of them do untyped damage as before, some do toxic, and therefore resistable, and some of them do "special" which means no resistance *power* resists their damage, but the resistance conferred by EoEs (essence of the earth inspiration) does resist its damage, much like ambrosia and the crystal titan (they use two different "special" damage flags so the inspirations do not work across those two).


[Guide to Defense] [Scrapper Secondaries Comparison] [Archetype Popularity Analysis]

In one little corner of the universe, there's nothing more irritating than a misfile...
(Please support the best webcomic about a cosmic universal realignment by impaired angelic interference resulting in identity crisis angst. Or I release the pigmy water thieves.)

 

Posted

Is Nictus unresistable/bonus delivered on a typed attack that could be avoided with typed or positional defense? That could be fun to work towards with IOs.


Blue
American Steele: 50 BS/Inv
Nightfall: 50 DDD
Sable Slayer: 50 DM/Rgn
Fortune's Shadow: 50 Dark/Psi
WinterStrike: 47 Ice/Dev
Quantum Well: 43 Inv/EM
Twilit Destiny: 43 MA/DA
Red
Shadowslip: 50 DDC
Final Rest: 50 MA/Rgn
Abyssal Frost: 50 Ice/Dark
Golden Ember: 50 SM/FA

 

Posted

There's no such thing as an attack that deals pure Nictus damage, and unless I'm blanking on something there are only two attacks that have it, period: Quantum Rifle and the Void melee attack whose name escapes me. Both of those also deal negative energy damage, and given that purples work on them they must be typed negative, ranged/melee, or both.


 

Posted

Outstanding guide, Arcanaville. I have to pick a nit with your level scaling info for accuracy.

These are the numbers I got from Pohsyb back in I6. Unless you're privy to some updated information, they should be the correct ones. (It's identical to yours until you get to +6, where it drops off more quickly.)

[ QUOTE ]
Foes your level have not changed. You have a 75% chance to hit and your powers are 100% effective.
Foes 1 level above you - You have a 65% chance to hit and your powers are 90% effective.
Foes 2 levels above you - You have a 56% chance to hit and your powers are 80% effective.
Foes 3 levels above you - You have a 48% chance to hit and your powers are 65% effective.
Foes 4 levels above you - You have a 39% chance to hit and your powers are 48% effective.
Foes 5 levels above you - You have a 30% chance to hit and your powers are 30% effective.
Foes 6 levels above you - You have a 20% chance to hit and your powers are 15% effective.
Foes 7 levels above you - You have a 8% chance to hit and your powers are 8% effective.

[/ QUOTE ]


 

Posted

[ QUOTE ]
Outstanding guide, Arcanaville. I have to pick a nit with your level scaling info for accuracy.

These are the numbers I got from Pohsyb back in I6. Unless you're privy to some updated information, they should be the correct ones. (It's identical to yours until you get to +6, where it drops off more quickly.)

[ QUOTE ]
Foes your level have not changed. You have a 75% chance to hit and your powers are 100% effective.
Foes 1 level above you - You have a 65% chance to hit and your powers are 90% effective.
Foes 2 levels above you - You have a 56% chance to hit and your powers are 80% effective.
Foes 3 levels above you - You have a 48% chance to hit and your powers are 65% effective.
Foes 4 levels above you - You have a 39% chance to hit and your powers are 48% effective.
Foes 5 levels above you - You have a 30% chance to hit and your powers are 30% effective.
Foes 6 levels above you - You have a 20% chance to hit and your powers are 15% effective.
Foes 7 levels above you - You have a 8% chance to hit and your powers are 8% effective.

[/ QUOTE ]

[/ QUOTE ]

For some reason, I merged the tohit table up to +5, and forgot to do the rest. I initially thought the 34 was a typo, but it was actually a sign of the glitch. Good catch: corrected in the next draft.


[Guide to Defense] [Scrapper Secondaries Comparison] [Archetype Popularity Analysis]

In one little corner of the universe, there's nothing more irritating than a misfile...
(Please support the best webcomic about a cosmic universal realignment by impaired angelic interference resulting in identity crisis angst. Or I release the pigmy water thieves.)

 

Posted

[ QUOTE ]
So that there is no confusion, here are some examples:

* Fireball does fire damage and smashing damage. Its typed Fire_Attack/AoE_attack. Smashing defenses do not protect against it.

* Ice Arrow is typed Cold_Attack/Ranged_Attack. It does not do cold damage. It does no damage at all.

* Dominate is typed Psionic_Attack. Notice it isn't typed with any "positional" type at all. So none of Super Reflexes defense powers work against it.

[/ QUOTE ]

Is it possible for an attack to have more than one damage type? It's been a while since I've come across a specific example, but I've seen it said many times that for an attack with multiple damage components the highest defense value is used. So in the Fireball example if I had 10% smashing defense and 5% fire defense, supposedly the 10% number would be used. If I'm understanding what you're saying correctly, anything other than fire defense (or positional defense) would be ignored.

That would be a change to my understanding of how typed defense works. It has been said, and I have long understood, that with only smashing/lethal defense I would be protected from any attack that had a smashing or lethal component. That would include a lot of ice, fire, and energy attacks.

So if that is not true....is there any source for how various attacks are typed? Or maybe I should ask if there's any *published* source. ;P


 

Posted

[ QUOTE ]

Is it possible for an attack to have more than one damage type? It's been a while since I've come across a specific example, but I've seen it said many times that for an attack with multiple damage components the highest defense value is used. So in the Fireball example if I had 10% smashing defense and 5% fire defense, supposedly the 10% number would be used. If I'm understanding what you're saying correctly, anything other than fire defense (or positional defense) would be ignored.

[/ QUOTE ]

Your understanding is correct. Defense cares only about attack typing; the actual damage dealt is irrelevant. Attack type and damage type are related in a generally predictable fashion, but that is not necessarily the case. Levitate, for example, is typed Psionic Attack but deals smashing damage.

However, lots of attacks do have multiple typings. Bitter Ice Blast, for example, is typed Ranged Attack, Smashing Attack, Cold Attack. If you had smashing and cold defense, you would use whichever is higher. Corner cases like Fireball and Levitate are the exceptions, not the rule, but they do exist.

[ QUOTE ]
So if that is not true....is there any source for how various attacks are typed? Or maybe I should ask if there's any *published* source. ;P

[/ QUOTE ]

City of Data. Unless you mean, like, officially published on paper. In which case, no (and it would probably be at least 17% wrong in any case, going by the oh-so-stellar record of most strategy guides). Parts of it are gradually becoming outdated, but CoD is about the closest thing to official as you're going to find.