PokéBase - Pokémon Q&A
0 votes
7,659 views

I always wondered, how is damage from an attack calculated? I know this question has already been asked, but I didn't really understand it. Can someone please make it easier for me to understand it?

by

1 Answer

3 votes
 
Best answer

Damage = ((((2 * Level / 5 + 2) * AttackStat * AttackPower / DefenseStat) / 50) + 2) * STAB * Weakness/Resistance * RandomNumber / 100

Well, this is actually very simple. There is really no way to make it any simpler, but I'll explain it again. Level is the level of your Pokemon attacking. The 5 and 2 are already set numbers and are not changed. AttackStat is the attacking Pokemon's attack or special attack stat, according to whether the move being used is special or physical. AttackPower is the power of the attack being used, for example Solar Beam would be 120 and Air Slash would be 60. DefenseStat is simple the target's defense or special defense, according to whether the move is physical or special. STAB is the same type attack bonus, so if a Pokemon who is an electric type uses Thunder, which is an electric type move, they get a 1.5 bonus (Pokemon with the ability Adaptability get a 2 boost from their STABs). Weakness/Resistance is whether the move used is super effective or not very effective. Here's how it works.

Not very effective (4x) = x.25
Not very effective (2x) = x.5
Neutral = x1
Super effective (x2) = x2
Super effective (x4) = x4

So, if a Pokemon used tackle on an Aggron, it would be a *4 resistance because both rock and steel types resist normal. Simple enough? Next, RandomNumber is just a random number between 85 and 100, and is what makes each hit do a different amount of damage. And 100 is another set number.

Now, you can calculate damage just by filling in the words according to the info and plugging it in an online calculator. I'll do one as an example. Max attack Haxorus vs. a Max defense Skarmory using Outrage.

Damage = ((((2 * 100 / 5 + 2) * 432 * 120 / 416) / 50) + 2) * 1.5 * .5 * 100 / 100

So I plugged it, and I came up with 80.0076923077, and I did on the Showdown calculator and got 79. Close enough. And showdown also came up with 20.05 - 23.65% damage.

Hope I helped clear things up! :)

by
edited by
Not sure how you got this answer as you were missing places for multiplication and all around weird ways to do the math. Such as why isn't the 5+2 together and if it's not supposed to be why is it not in parentheses. Just seems regurgitated from all others and didn't simplify if anything made it more complicated because you didn't explain all factors
The problem was that the writer didn't escape the asterisks, so they were read as formatting (italics). I fixed it.