From 347972d103c5acae788f8b879723c2f182f612e4 Mon Sep 17 00:00:00 2001 From: Flashfyre Date: Sun, 12 May 2024 20:45:41 -0400 Subject: [PATCH] Remove boosted shiny rate --- src/field/pokemon.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 0713df99f..807be3f8d 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -1096,11 +1096,8 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { let shinyThreshold = new Utils.IntegerHolder(32); if (thresholdOverride === undefined) { - if (!this.hasTrainer()) { - if (new Date() < new Date('2024-05-13')) - shinyThreshold.value *= 3; + if (!this.hasTrainer()) this.scene.applyModifiers(ShinyRateBoosterModifier, true, shinyThreshold); - } } else shinyThreshold.value = thresholdOverride;