mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-16 14:55:22 +01:00
[Bug][Balance] Actual correct minimum waves for Legends in Daily Mode (#6786)
Added true for ignoreCurveChanges Co-authored-by: Jimmybald1 <147992650+IBBCalc@users.noreply.github.com>
This commit is contained in:
parent
bb86b649d8
commit
3c7242d747
@ -184,7 +184,7 @@ export class Arena {
|
|||||||
ret = getPokemonSpecies(species!);
|
ret = getPokemonSpecies(species!);
|
||||||
|
|
||||||
if (ret.subLegendary || ret.legendary || ret.mythical) {
|
if (ret.subLegendary || ret.legendary || ret.mythical) {
|
||||||
const waveDifficulty = globalScene.gameMode.getWaveForDifficulty(waveIndex);
|
const waveDifficulty = globalScene.gameMode.getWaveForDifficulty(waveIndex, true);
|
||||||
if (ret.baseTotal >= 660) {
|
if (ret.baseTotal >= 660) {
|
||||||
regen = waveDifficulty < 80; // Wave 50+ in daily (however, max Daily wave is 50 currently so not possible)
|
regen = waveDifficulty < 80; // Wave 50+ in daily (however, max Daily wave is 50 currently so not possible)
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user