mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-20 06:19:29 +02:00
Increase Gimmighoul's evo counter more with Big Nugget/Relic Gold
This commit is contained in:
parent
b6b756a162
commit
b9ccb4bc0f
@ -2818,7 +2818,7 @@ export class MoneyRewardModifier extends ConsumableModifier {
|
||||
|
||||
battleScene.getPlayerParty().map(p => {
|
||||
if (p.species?.speciesId === Species.GIMMIGHOUL || p.fusionSpecies?.speciesId === Species.GIMMIGHOUL) {
|
||||
p.evoCounter ? p.evoCounter++ : p.evoCounter = 1;
|
||||
p.evoCounter ? p.evoCounter += 1 * Math.min(Math.floor(this.moneyMultiplier), 3) : p.evoCounter = Math.min(Math.floor(this.moneyMultiplier), 3);
|
||||
const modifier = getModifierType(modifierTypes.EVOLUTION_TRACKER_GIMMIGHOUL).newModifier(p) as EvoTrackerModifier;
|
||||
battleScene.addModifier(modifier);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user