How prestiging works
Prestiging is handled by thePrestigeService and involves resetting most character stats while preserving prestige-related progress.
Prestige method
FromPrestigeService.prestige() (line 13):
- Calculate how many prestige cores you’ll earn
- Reset character to base stats
- Add earned cores to your total
- Increment prestige level by 1
Your gold, prestige cores, prestige level, and prestige multipliers are preserved when you prestige. Everything else resets.
Prestige requirements
You must reach a minimum stage before you can prestige.Minimum stage requirement
FromcalculatePrestigeCores() (line 21):
Prestige core calculation
Prestige cores are the primary currency earned from prestiging, used to purchase powerful prestige upgrades.Base formula
The core calculation uses a logarithmic formula:- Base multiplier: 4
- Scaling: log₁₀(current stage)
- Result is floored to nearest integer
Core gain by stage
Here’s how many cores you earn at different stages:| Stage | log₁₀(stage) | Base Cores | With 50% Boost | With 100% Boost |
|---|---|---|---|---|
| 20 | 1.301 | 5 | 7 | 10 |
| 30 | 1.477 | 5 | 8 | 11 |
| 50 | 1.699 | 6 | 9 | 13 |
| 100 | 2.000 | 8 | 12 | 16 |
| 200 | 2.301 | 9 | 13 | 18 |
| 500 | 2.699 | 10 | 15 | 21 |
| 1000 | 3.000 | 12 | 18 | 24 |
Prestige core multiplier
Core gains can be boosted by the “Kaizen Mastery” prestige upgrade:Kaizen Mastery upgrade
Kaizen Mastery upgrade
The “Kaizen Mastery” prestige upgrade increases core gain by 10% per level.Examples:
- Level 0: 1.0x multiplier (no bonus)
- Level 1: 1.1x multiplier (+10%)
- Level 5: 1.5x multiplier (+50%)
- Level 10: 2.0x multiplier (+100%)
Prestige level
Your prestige level increases by 1 every time you prestige, regardless of stage or cores earned.Prestige level in damage formula
Prestige level is a direct multiplier in the damage calculation:Prestige level 10 means your damage is multiplied by 10, even without any other prestige bonuses.
Prestige multipliers
TheprestigeMultipliers object contains separate multipliers for each stat:
Currently, prestige multipliers default to 1.0 and are not actively modified by the prestige system. They’re included for potential future features that grant permanent stat multipliers.
What resets when you prestige
Prestiging resets your character throughresetCharacter() (line 54):
- Reset to default
- Preserved
These properties return to their starting values:
level: 1baseStrength: 1baseIntelligence: 1baseEndurance: 1strengthModifier: 1.0intelligenceModifier: 1.0enduranceModifier: 1.0currentStage: 1currentWave: 1createdAt: Current timestamplastActiveAt: Current timestamp
Strategic considerations
When to prestige
The logarithmic formula creates strategic depth:- Early game: Prestige as soon as you reach stage 20 to start accumulating prestige level
- Mid game: Push to higher stages (50-100) for more cores per prestige
- Late game: Balance time investment vs. core gain
Core spending vs. hoarding
Prestige cores can be:- Spent on prestige upgrades for permanent bonuses
- Hoarded to benefit from the “Hoarded Power” upgrade
- Level 1: 2% DPS per core
- Level 5: 10% DPS per core
- Level 10: 20% DPS per core
Hoarded Power creates an interesting trade-off: spend cores on upgrades for permanent progression, or save them for immediate power.
Prestige upgrades
Prestige cores can be spent on permanent upgrades through thePrestigeUpgradeService. See the prestige upgrades section for details.
Available prestige upgrades
- Swift Strikes: Reduce attack interval by 5% per level
- Titan’s Power: Increase strength by 1 per level
- Kaizen Mastery: Increase core gain by 10% per level
- Fragile Foes: Reduce enemy health by 5% per level
- Hoarded Power: Gain 2% DPS per unused core per level
Prestige upgrades are permanent and persist across all future prestiges. They’re never reset.