Critical Hit Calculator

Calculate critical hit damage, DPS increase, and probability for any game.

Crit Parameters

Critical Hit Damage

200
+25.0% effective DPS increase

Damage Comparison

Normal Hit100
Critical Hit200
Expected Per Hit125.00

Multi-Attack Analysis

Expected Crits2.5
Total Expected Damage1250
After Armor1250
Damage Range1000 - 2000

Probability

At Least 1 Crit94.37%
No Crits5.63%
All Crits0.0001%

What Is a Critical Hit?

A critical hit is a special attack outcome found in almost every modern video game, from action RPGs and MOBAs to turn-based strategy games and shooters. When a critical hit lands, the attack deals bonus damage beyond the normal value, giving players a powerful spike of output that can shift the momentum of any encounter.

Critical hits are governed by two core statistics: crit chance (the probability that any single attack will be a critical hit, expressed as a percentage) and crit multiplier (the factor by which base damage is multiplied when a crit lands). A third modifier — bonus crit damage — stacks additively with the base multiplier to further amplify the spike. Understanding exactly how these values interact is the first step to optimizing your damage output.

This critical hit calculator handles the full range of calculations: raw crit damage, expected damage per hit, DPS increase from your crit stats, multi-attack totals, armor mitigation, and the probability of landing at least one critical hit in a given number of attacks. Whether you are theorycrafting an ARPG build, evaluating gear upgrades, or studying game design math, every result here follows the exact arithmetic used in the page above.

Games implement crit systems differently — some cap crit chance at 100%, some use pseudorandom distribution (PRD) to prevent long streaks, and some apply crit multipliers before armor rather than after. This calculator models the most common independent-probability system where each attack rolls independently, and armor is applied uniformly to both normal and critical hits.

Core Formulas

Every output this calculator produces derives from a small set of formulas. Mastering them lets you make faster decisions during gameplay or build planning without opening the tool every time.

Critical Hit Damage is the most fundamental value. The effective multiplier combines the base crit multiplier with any bonus crit damage, both expressed as percentages and divided by 100 to convert to a decimal factor:

Once you have the crit damage value, the Expected Damage per Attack is a probability-weighted average of the normal hit and the critical hit. This is the figure that actually matters for sustained DPS comparisons, because over a long fight your average output converges to this number.

The DPS Increase is the percentage improvement of expected damage over raw base damage. This is the cleanest single number for comparing two gear sets: whichever configuration produces a higher DPS increase percentage simply deals more damage on average, regardless of attack speed.

After applying armor, both normal and critical damage are reduced by the same fraction. This means armor does not change your relative DPS increase from crits — it scales both down proportionally.

Critical Hit Damage & Expected DPS

critDamage = baseDamage × (critMultiplier + bonusCritDamage) / 100 expectedDamage = baseDamage × (1 − p) + critDamage × p dpsIncrease (%) = (expectedDamage / baseDamage − 1) × 100 where p = min(critChance, 100) / 100

Where:

  • baseDamage= Raw damage of the attack before any crit or armor modifiers
  • critMultiplier= Base critical hit multiplier expressed as a percentage (e.g. 200 = 2×)
  • bonusCritDamage= Additional crit damage percentage added on top of the base multiplier
  • p= Critical hit probability as a decimal (critChance / 100, capped at 1.0)
  • expectedDamage= Probability-weighted average damage per attack over many trials
  • dpsIncrease= Percentage improvement in average damage output due to crit stats

Probability of Landing Crits

Knowing your crit chance per hit is useful, but players often want to know the probability of seeing at least one critical hit within a burst combo or a skill rotation. This calculator computes three key probability metrics across N attacks, assuming each attack is an independent Bernoulli trial.

Probability of zero crits in N attacks is (1 − p)^N. For example, at 25% crit chance over 10 attacks, the chance of hitting zero crits is 0.75^10 ≈ 5.63%. That sounds low, but it means roughly one in eighteen combos will produce no crits at all — a real variance concern for short fights.

Probability of at least one crit is the complement: 1 − (1 − p)^N. At 25% over 10 attacks this equals approximately 94.37%. Most players perceive crits as "always happening" once crit chance climbs past 20–25%, and these numbers explain why: even modest crit chance produces near-certain crit appearances over a full rotation.

Probability of all crits is p^N, which collapses quickly. At 50% crit chance across 8 attacks, every hit being a crit has probability 0.5^8 = 0.39% — spectacular when it happens, but extremely rare.

These probabilities underpin the Damage Range output. The minimum possible damage assumes zero crits (every hit deals base damage), while the maximum assumes all crits. High variance between those extremes means your actual fight-to-fight damage fluctuates heavily — relevant for burst DPS checks and speed runs where consistency matters as much as average output.

Armor Reduction and Effective Damage

Most games apply armor or damage reduction as a flat percentage subtracted from final damage. This calculator models that as a multiplicative factor: damageAfterArmor = damage × (1 − armorReduction / 100). The same factor applies to both normal hits and critical hits, so the relative benefit of crit stats is unchanged by armor — your DPS increase percentage is identical before and after armor reduction.

Where armor matters is in the absolute totals. A 20% armor reduction that seems minor on a 100-damage normal hit becomes a 70-point swing on a 350-damage critical hit. Understanding that armor scales with damage magnitude helps you evaluate the trade-off between stacking offensive crit stats and investing in armor penetration items.

The Total Expected Damage After Armor output combines the expected-per-hit math with the armor multiplier across all N attacks, giving you the realistic projected damage for a full ability rotation against a defended target. Use this value when comparing builds against tanky enemies with high mitigation.

Some games separate physical armor from magical or elemental resistance, applying different reduction values to different damage types. In those cases, run this calculator once per damage type with the relevant armor figure, then sum the results for a complete picture of your effective output.

Optimizing Your Crit Build

The core question in any crit build is: which is worth more — more crit chance or a higher crit multiplier? The answer depends on your current stats.

From the expected damage formula, both stats scale multiplicatively with base damage, but they interact with each other. When crit chance is very low, increasing the crit multiplier has diminishing impact because crits land rarely. Conversely, when the multiplier is already very high (say 300%+), adding another 5% crit chance delivers a larger absolute improvement than adding another 25% multiplier. A useful rule of thumb: if your crit multiplier is more than four times your crit chance (in their respective natural units), prioritizing crit chance is usually more efficient.

The DPS Increase output makes this comparison easy. Plug in two gear configurations and compare the percentages directly — no theory needed. The configuration with the higher DPS increase wins, regardless of which individual stat changed.

Beyond the raw numbers, consider diminishing returns from game-specific caps. Many games cap crit chance at 100% (this calculator enforces that cap via Math.min(chance, 100)), making further investment in crit chance wasted past that threshold. At that point every point should go toward crit multiplier or bonus crit damage. Some games also implement soft caps on multiplier scaling, so always test the live numbers rather than relying purely on formula extrapolation.

Finally, remember that expected damage is a long-run average. In short fights, variance matters. A 50% crit chance build will feel wildly inconsistent compared to a 20% crit chance, higher multiplier build that still produces the same expected DPS. Match your build philosophy to your content: burst boss phases reward high expected damage, while sustained farm speed rewards low variance and consistent crits.

Critical Hit Systems in Popular Games

Different games implement critical hits in meaningfully different ways, and knowing the conventions helps you enter the right numbers into this calculator.

Game / Genre Default Multiplier Notes
Diablo-style ARPGs 150–200% Crit chance and multiplier stack from many item affixes; no hard cap on multiplier
MOBAs (Dota 2, LoL) 175–250% Often uses pseudorandom distribution (PRD) to reduce streaks; crits may interact with bash/stun
Roguelikes / Roguelites 200%+ Wide variance by design; some titles grant guaranteed crits on conditions
Soulslike RPGs 130–160% Backstab / riposte mechanics deliver fixed bonus rather than a probability roll
Card / Turn-Based RPGs 150% Crits often interact with status effects or board state rather than pure stats

Use this table to identify the standard multiplier for your game, then enter your actual stat values for precise calculations. When a game uses pseudorandom distribution, the average crit chance over many attacks still matches the stated value, so the expected damage formula remains valid for planning purposes even though individual attack sequences differ from the pure-probability model.

Worked Examples

Standard 25% Crit Chance Build

Problem:

A character deals 100 base damage with 25% crit chance and a 200% crit multiplier. No bonus crit damage, no armor. What is the crit damage and expected damage per hit, and how much does DPS increase?

Solution Steps:

  1. 1Compute the effective multiplier: (200 + 0) / 100 = 2.0
  2. 2Compute crit damage: 100 × 2.0 = 200
  3. 3Convert crit chance to decimal: 25 / 100 = 0.25
  4. 4Compute expected damage: 100 × (1 − 0.25) + 200 × 0.25 = 75 + 50 = 125
  5. 5Compute DPS increase: (125 / 100 − 1) × 100 = 25%

Result:

Crit damage = 200; Expected damage per hit = 125; DPS increase = 25%

High-Multiplier Build with Bonus Crit Damage

Problem:

A warrior has 150 base damage, 30% crit chance, a 200% base crit multiplier, and 50% bonus crit damage from a legendary item. No armor. What are the crit damage and expected values?

Solution Steps:

  1. 1Combine multipliers: (200 + 50) / 100 = 2.5 effective multiplier
  2. 2Compute crit damage: 150 × 2.5 = 375
  3. 3Convert crit chance: 30 / 100 = 0.30
  4. 4Compute expected damage: 150 × 0.70 + 375 × 0.30 = 105 + 112.5 = 217.5
  5. 5Compute DPS increase: (217.5 / 150 − 1) × 100 = 45%

Result:

Crit damage = 375; Expected damage per hit = 217.5; DPS increase = 45%

Multi-Attack Rotation with Armor

Problem:

A ranger fires 8 shots at 200 base damage, 50% crit chance, 175% crit multiplier, 0 bonus crit damage, against an enemy with 20% armor reduction. What are total expected damage and the probability of at least one crit?

Solution Steps:

  1. 1Effective multiplier: (175 + 0) / 100 = 1.75
  2. 2Crit damage: 200 × 1.75 = 350
  3. 3Convert chance: 50 / 100 = 0.5
  4. 4Normal damage after armor: 200 × (1 − 0.20) = 160; Crit damage after armor: 350 × 0.80 = 280
  5. 5Expected damage after armor per hit: 160 × 0.5 + 280 × 0.5 = 80 + 140 = 220
  6. 6Total expected damage after armor: 220 × 8 = 1760
  7. 7Probability of no crits: (1 − 0.5)^8 = 0.5^8 ≈ 0.39%; Probability of at least one crit: 1 − 0.39% ≈ 99.61%
  8. 8Damage range: min = 200 × 8 = 1600 (all normal); max = 350 × 8 = 2800 (all crits)

Result:

Total expected damage (after armor) = 1760; Probability of at least one crit = 99.61%; Damage range = 1600 – 2800

Comparing Two Gear Sets

Problem:

Set A gives 200 base damage, 40% crit chance, 200% multiplier. Set B gives 180 base damage, 55% crit chance, 200% multiplier. No bonus crit damage or armor. Which set has higher expected damage per hit?

Solution Steps:

  1. 1Set A: multiplierDecimal = 200 / 100 = 2.0; critDamage = 200 × 2 = 400; chanceDecimal = 0.40
  2. 2Set A expected: 200 × 0.60 + 400 × 0.40 = 120 + 160 = 280
  3. 3Set B: multiplierDecimal = 2.0; critDamage = 180 × 2 = 360; chanceDecimal = 0.55
  4. 4Set B expected: 180 × 0.45 + 360 × 0.55 = 81 + 198 = 279
  5. 5Set A: DPS increase = (280/200 − 1) × 100 = 40%; Set B: DPS increase = (279/180 − 1) × 100 = 55%

Result:

Set A expected = 280 vs Set B expected = 279. Set A has marginally higher absolute damage per hit, but Set B delivers a larger DPS increase percentage (55% vs 40%) relative to its lower base — demonstrating that raw expected damage and DPS increase % can favor different sets depending on context.

Tips & Best Practices

  • Stack crit chance first when it is below ~20% — low crit chance makes a high multiplier nearly irrelevant since crits land too rarely to matter.
  • Use the DPS increase percentage — not raw expected damage — to compare gear sets fairly, since it normalizes for different base damage values.
  • At 100% crit chance, every attack crits and expected damage equals crit damage; all further investment should go to the crit multiplier or bonus crit damage fields.
  • Run the probability panel before a boss fight to understand how likely you are to see at least one crit during your opener — critical for burst windows with cooldowns.
  • When evaluating armor penetration items, check the 'After Armor' total rather than the pre-armor expected damage — high crit builds benefit more from penetration because crits lose more absolute damage to armor.
  • Use the damage range output to gauge consistency: a wide min–max spread means high variance, which is risky in time-gated content even if expected damage is optimal.
  • Bonus crit damage adds linearly to the multiplier, so 50% bonus on a 200% base gives 2.5×, not 3× — enter both values separately in this calculator to avoid overcounting.
  • Test your planned build at multiple target attack counts (e.g., 5, 10, 20) to understand how crit probability and totals scale across short burst windows versus sustained rotations.

Frequently Asked Questions

The crit multiplier is the base percentage applied to base damage on a critical hit — for example, 200% means the hit deals 2× base damage. Bonus crit damage is an additive percentage stacked on top of that base multiplier before the calculation runs: a 200% multiplier plus 50% bonus crit damage yields an effective multiplier of 250%, or 2.5×. This calculator adds them together before dividing by 100, matching how most games handle stacked crit damage affixes.
Expected damage is the probability-weighted average of both possible outcomes on each attack. The formula is: (baseDamage × (1 − critChance)) + (critDamage × critChance), where critChance is expressed as a decimal. Over a large number of attacks, your actual average damage per hit converges to this value, making it the most reliable stat for comparing builds and gear. Short fight variance can cause real outputs to deviate significantly, but expected damage is the correct baseline for planning.
No — armor is applied as a uniform multiplier to all damage types, so it scales normal damage and crit damage equally. The expected damage after armor is simply (expectedDamage before armor) × (1 − armorReduction / 100), and the DPS increase percentage before and after armor is identical. What armor does affect is absolute damage totals: higher crit damage means armor absorbs more absolute points on a crit, which is why armor penetration becomes more valuable as your crit multiplier grows.
Because each attack is an independent random event, bad luck can produce a zero-crit streak no matter how high the per-attack probability is. At 50% crit chance over 10 attacks, the probability of hitting zero crits is 0.5^10 ≈ 0.10% — very small, but not zero. Games that implement pseudorandom distribution (PRD) reduce this variance by increasing the effective crit chance after each non-crit and resetting it after a crit, but the long-run average still matches the stated stat.
The damage range shows the theoretical extremes across your selected number of attacks: the minimum assumes every single attack is a normal hit (baseDamage × attacks), and the maximum assumes every attack crits (critDamage × attacks). In practice, actual totals land somewhere between these bounds following a binomial distribution. A very wide range between minimum and maximum indicates high variance — important to consider in timed challenges, races, or boss enrage timers where a bad luck streak can result in failure even with an optimally built character.
This calculator automatically caps critical hit chance at 100% using Math.min(critChance, 100) before converting to a decimal. If your game has a lower cap — for example 75% — simply enter no more than that capped value in the crit chance field. All downstream calculations (expected damage, DPS increase, probability metrics) will then correctly reflect the capped probability. Once you have reached the cap, any further investment in crit chance on gear provides no benefit, and you should redirect those item affixes toward crit multiplier or bonus crit damage.
Yes. The underlying math is identical for any system with a binary success/fail probability and a bonus outcome multiplier. For crafting crits, enter the base crafting output as base damage, the chance of a critical craft as crit chance, and the multiplier applied to the output as the crit multiplier. The expected output and DPS increase fields then give you the average crafted quantity per attempt and the throughput gain from your crit crafting stats.

Sources & References

Last updated: 2026-06-05

💡

Help us improve!

How would you rate the Critical Hit Calculator?

<>

Editorial Note

MyCalcBuddy Editorial Team

This page is maintained as an educational calculator reference.

Source

Formula Source: Standard Mathematical References

by Various

UpdatedLast reviewed: May 2026
CheckedFormula checks are based on standard references and internal QA review.

Privacy choices

MyCalcBuddy uses necessary storage for the site to work. Optional analytics, notifications, and future advertising features stay off unless you allow them.