From e636796cf92cc1e212bdb07ef4fc0ad49711af4c Mon Sep 17 00:00:00 2001 From: Keldaan Date: Fri, 17 Feb 2023 16:21:37 +0100 Subject: [PATCH] nerf-flying (#393) --- app/types/Config.ts | 6 +++--- app/types/strings/Effect.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/types/Config.ts b/app/types/Config.ts index d53e771537..aa0a0141c6 100644 --- a/app/types/Config.ts +++ b/app/types/Config.ts @@ -213,15 +213,15 @@ export const FlyingProtectThreshold: { [key in Effect]?: ThresholdDuration } = { threshold: 0.2 }, [Effect.FEATHER_DANCE]: { - duration: 2000, + duration: 1500, threshold: 0.4 }, [Effect.MAX_AIRSTREAM]: { - duration: 3000, + duration: 2000, threshold: 0.5 }, [Effect.MAX_GUARD]: { - duration: 4000, + duration: 2500, threshold: 0.5 } } diff --git a/app/types/strings/Effect.ts b/app/types/strings/Effect.ts index 35849c851b..1caa64bcf8 100644 --- a/app/types/strings/Effect.ts +++ b/app/types/strings/Effect.ts @@ -338,17 +338,17 @@ export const EffectDescription: { fra: `Give a protection effect for 1sec when the pokemon fell under 20% ${Stat.HP}` }, [Effect.FEATHER_DANCE]: { - eng: `Give a protection effect for 2sec when the pokemon fell under 40% ${Stat.HP}`, + eng: `Give a protection effect for 1.5sec when the pokemon fell under 40% ${Stat.HP}`, esp: `Give a protection effect for 1sec when the pokemon fell under 40% ${Stat.HP}`, fra: `Give a protection effect for 1sec when the pokemon fell under 40% ${Stat.HP}` }, [Effect.MAX_AIRSTREAM]: { - eng: `Give a protection effect for 3sec when the pokemon fell under 50% ${Stat.HP}`, + eng: `Give a protection effect for 2sec when the pokemon fell under 50% ${Stat.HP}`, esp: `Give a protection effect for 2sec when the pokemon fell under 50% ${Stat.HP}`, fra: `Give a protection effect for 2sec when the pokemon fell under 50% ${Stat.HP}` }, [Effect.MAX_GUARD]: { - eng: `Give a protection effect for 4sec when the pokemon fell under 50% ${Stat.HP}`, + eng: `Give a protection effect for 2.5sec when the pokemon fell under 50% ${Stat.HP}`, esp: `Add a second protection effect at 30%`, fra: `Add a second protection effect at 30%` },