Menu

PvP Stat Scaling, Crit vs ATK & Build Priorities

Guide March 30, 2026 By Boring877

PvP in Star Savior works very differently from PvE when it comes to stats. The game doesn't just change the enemy stats -- it scales down your unit stats by a factor of 10, while leaving rate stats like Crit Rate and Crit Damage completely untouched. This creates a fundamentally different stat economy that changes which builds are optimal. This guide builds on the PvE Damage Formula & Stat Optimization Guide.

How PvP Stat Scaling Works

In PvP, your stats are processed through a StatScaleFactorBundle -- a set of per-provider multipliers that reduce certain stat sources:

NKM.decompiled.cs - OBF_30634 (StatScaleFactorBundle), line 18697
// Default (PvE) scales -- everything at 100%
public static readonly StatScaleFactorBundle DEFAULT =
    new StatScaleFactorBundle(GameMode.Default,
        StatScale:      10000,  // 100%
        TacticsScale:  10000,  // 100%
        StarLinkScale: 10000,  // 100%
        StellarScale:  10000,  // 100%
        EquipScale:    10000   // 100%
    );

// PvP hardcoded scales
public static readonly StatScaleFactorBundle PVP =
    new StatScaleFactorBundle(GameMode.Pvp,
        StatScale:      1000,  // 10%  -- base stats heavily reduced
        TacticsScale:     0,   // 0%   -- tactics completely removed!
        StarLinkScale:    0,   // 0%   -- star link completely removed!
        StellarScale:   1000,  // 10%
        EquipScale:     1000   // 10%
    );

These values are loaded from the game's const templet at runtime:

CLIENT_CONST_TEMPLET.json - PvpBattle section
"PvpBattle": {
    "PvpDefenceConst": 300,     // PvP DEF constant (vs 3000 in PvE)
    "StatScale": 1000,          // Base stats scaled to 10%
    "TacticsScale": 500,         // Tactics scaled to 5%
    "StarLinkScale": 500         // Star link scaled to 5%
}

What Gets Scaled

The critical detail is that the scale factors only apply to flat stats (ATK, HP, DEF). Rate stats pass through untouched. Here is the proof from the scale method implementation:

NKM.decompiled.cs - StatScaleFactorBundle, lines 18731-18758
// StatScale: returns scale for HP, ATK, DEF only
public int GetStatScale(NST_StatType stat)
{
    // Only NST_HP, NST_ATK, NST_DEF get scaled
    // Everything else returns 10000 (no change)
    if (stat == NST_HP || stat is NST_ATK or NST_DEF)
    {
        return this.StatScale;
    }
    return 10000;  // <-- Rate stats unaffected!
}

// TacticsScale: same pattern, only HP/ATK/DEF
public int GetTacticsScale(NST_StatType stat)
{
    if (stat != NST_HP && stat is not (NST_ATK or NST_DEF))
    {
        if (GameMode is Pvp or PvpRank)
            return 0;  // Non-HP/ATK/DEF stats get ZERO in PvP
        return 10000;
    }
    return this.TacticsScale;
}

// StarLinkScale: identical pattern
public int GetStarLinkScale(NST_StatType stat)
{
    if (stat != NST_HP && stat is not (NST_ATK or NST_DEF))
    {
        if (GameMode is Pvp or PvpRank)
            return 0;
        return 10000;
    }
    return this.StarLinkScale;
}

Full Stat Impact Table

StatPvEPvPChange
ATK6,000~600Scaled to 10%
HP34,000~3,400Scaled to 10%
DEF2,700~270Scaled to 10%
Crit Rate45%45%Unchanged
Crit Damage150%150%Unchanged
Effect Hit100%100%Unchanged
Effect Effect RES0%0%Unchanged
Turn Speed140140Unchanged
Tactics StatsFull0Completely removed
Star Link StatsFull0Completely removed
PvE to PvP Stat Scaling
Flat stats scaled to 10%, rate stats untouched, tactics/star link zeroed
ATK
6,000
~600
10%
HP
34,000
~3,400
10%
DEF
2,700
~270
10%
Crit Rate
45%
100%
Crit Damage
150%
100%
Turn Speed
140
100%
Tactics
Full
0%
Star Link
Full
0%
PvE Value
PvP Value
Unchanged

PvP Defense Constant

The PvP DEF constant is 300 (vs 3,000 in PvE). This means:

NKMUnitStatManager.cs - CalcDefReduction, line 17872
// PvE: DEF / (DEF + 3000)
// PvP: DEF / (DEF + 300)
// The formula is identical -- only the constant changes

result = defStat / (defStat + isPvpBattle
    ? PvpDefenceConst   // 300
    : DefenceConst);     // 3000
DEF (PvP)ReductionEnemy Keeps
15033.3%66.7%
27047.4%52.6%
30050.0%50.0%
50062.5%37.5%

Because DEF is also scaled to 10%, typical PvP units have ~200-300 DEF, which puts them right at the 40-50% reduction sweet spot. The proportional balance between ATK and DEF stays roughly the same as PvE.

PvE vs PvP Defense Reduction
Same formula, different constant. Proportionally similar results.
PvE 2700 DEF
47.4%
Constant: 3000
PvP 270 DEF
47.4%
Constant: 300
PvE DEF Constant
3,000
PvP DEF Constant
300
Ratio
10x

ATK Build vs Crit Build in PvP

Here is the core comparison. Does investing in Crit outperform raw ATK when both are scaled to 10%? For the gear sets referenced below, see the Equipment System Guide.

5000 ATK + Full Crit vs 7000 ATK + No Crit

Expected damage formula
Expected Damage = ATK * (1 + CritRate * CritDamage)

// Build A (Crit focus): 5000 ATK, 45% CR, 150% CD
A_PvE = 5000 * (1 + 0.45 * 1.50) = 5000 * 1.675 = 8,375
A_PvP =  500 * (1 + 0.45 * 1.50) =  500 * 1.675 =   838

// Build B (ATK focus): 7000 ATK, 10% CR, 50% CD
B_PvE = 7000 * (1 + 0.10 * 0.50) = 7000 * 1.050 = 7,350
B_PvP =  700 * (1 + 0.10 * 0.50) =  700 * 1.050 =   735

// Crit build wins by 14% in BOTH PvE and PvP
// The ratio is identical -- scaling doesn't change the comparison

The PvP scaling doesn't change the ATK vs Crit comparison at all. Both builds get scaled by the same 10%, so the ratio between them stays identical. Crit still wins by the same 14% on average.

Crit vs ATK Build Average Damage
Same 14% gap in both PvE and PvP
Crit (PvE)
8,375
45% CR
ATK (PvE)
7,350
10% CR
-- PvP (x0.1 scaling) --
Crit (PvP)
838
45% CR
ATK (PvP)
735
10% CR
Crit Build Advantage
+14%
Same in PvE?
Yes

With Set Bonuses

BuildSetupAvg Damage (PvE)Advantage
Crit (Destruction)5000 ATK, 45% CR, 190% CD9,275+10.4%
ATK (Attack)8400 ATK, 10% CR, 50% CD8,820Baseline
Crit (Insight)5000 ATK, 75% CR, 150% CD10,625+26.5%
Speed (Speed)5000 ATK, 45% CR, 150% CD, 170 SPD9,275 + turnsTactical

The Consistency Problem

The average damage favors crit. But individual hits don't care about averages:

Per-Hit Damage Distribution
Build A has higher average, but 55% of the time deals less
Build A (Crit)
8,375
avg
Build B (ATK)
7,350
avg
Crit hit (Build A)
Non-crit hit
Build A: 55% at 5k, 45% at 14.5k
Build B: 90% at 7k, 10% at 10.5k
// Build A (Crit): 45% CR, 190% CD
//   55% of the time: 5,000 damage (NO crit)
//   45% of the time: 14,500 damage (CRIT)

// Build B (ATK): 10% CR, 50% CD
//   90% of the time: 7,000 damage (no crit)
//   10% of the time: 10,500 damage (crit)

Build A has a 55% chance of dealing LESS damage than Build B on any given hit. Over many hits, the average favors Build A. But in PvP, where battles last 5-7 turns and every skill matters, the consistency of Build B can be more valuable.

Crit Probability Over a Short Fight

HitsChance of 0 Crits (45% CR)Chance of At Least 1 Crit
155%45%
317%83%
55%95%
71.5%98.5%

Over a full PvP match (7+ actions), you're very likely to crit at least a few times. The crit build's higher ceiling compounds over multiple turns. But on any single clutch skill (like a Nova Burst), there's a 55% chance you don't crit. Check Character Builds for PvP-ready team compositions.

PvP Build Recommendations

If building specifically for PvP

  1. ATK set (+20% ATK) is the safe choice -- consistent damage, no RNG, works on every hit
  2. Speed is extremely valuable -- Turn Speed is NOT scaled in PvP. 170 SPD gives you the same turn denial as in PvE
  3. Effect Hit is at full value -- debuffs land just as easily as in PvE
  4. Tactics and Star Link stats are worthless in PvP -- don't invest in these for PvP teams

If building for general content (PvE + PvP)

  1. Crit build is fine -- it wins on average in both modes by ~10-14%
  2. Accept the variance -- you will have fights where you lose the crit rolls
  3. Speed set (+15 SPD) might be the best PvP compromise -- gives tactical advantage without relying on RNG

What NOT to invest in for PvP

  • Tactics stats -- scaled to 0%, completely disabled
  • Star Link stats -- scaled to 0%, completely disabled
  • Excessive DEF -- the PvP DEF constant is low enough that you get diminishing returns quickly at ~300 DEF
  • Flat HP stacking -- scaled to 10%, so HP-focused substats give minimal value

Summary

PvP doesn't change the ATK vs Crit math -- both get scaled equally. The real PvP-specific insights are: (1) Speed, Crit Rate, and Crit Damage are your most efficient stats because they aren't reduced, (2) Tactics and Star Link investments are wasted in PvP, and (3) the short fight length makes consistency more valuable than ceiling damage, which slightly favors ATK builds for clutch PvP moments.

Source Code References

  • NKM.decompiled.cs -- StatScaleFactorBundle (lines 18688-18760), damage formula, DEF reduction
  • NKM.Templets.decompiled.cs -- Stat type classification (line 29156), OBF_2137 rate stat check
  • Star.Templets.decompiled.cs -- PvP stat scale templet loading (line 22426)
  • CLIENT_CONST_TEMPLET.json -- PvpBattle config values

Full decompiled and deobfuscated source: github.com/boring877/star-savior-decompiled

Tags
advancedcombatpvpstatsoptimizationtheorycraftdamage