From 4fc194295b40d38da0760bb8ec895639005b789a Mon Sep 17 00:00:00 2001 From: Flashfyre Date: Sun, 21 Apr 2024 19:58:55 -0400 Subject: [PATCH] Remove event shiny bonus --- 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 d3d657742e8..57a03a308fa 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -986,11 +986,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('4/22/2024')) - shinyThreshold.value *= 3; + if (!this.hasTrainer()) this.scene.applyModifiers(ShinyRateBoosterModifier, true, shinyThreshold); - } } else shinyThreshold.value = thresholdOverride;