Increase damage and reduction token stack limit

pull/33/head
Flashfyre 2024-04-04 11:59:02 -04:00
parent 217ffcfb26
commit 7b85b92a6e
2 changed files with 4 additions and 1 deletions

View File

@ -1431,6 +1431,9 @@ function getNewModifierTypeOption(party: Pokemon[], poolType: ModifierPoolType,
break;
}
}
if (index === undefined)
return null;
if (player)
console.log(index, ignoredPoolIndexes[tier].filter(i => i <= index).length, ignoredPoolIndexes[tier])

View File

@ -1891,7 +1891,7 @@ abstract class EnemyDamageMultiplierModifier extends EnemyPersistentModifier {
}
getMaxStackCount(scene: BattleScene): integer {
return 99;
return 999;
}
}