From c940cb7c66a36ce127bbaeb86f663416ddb10173 Mon Sep 17 00:00:00 2001 From: Sylvain Pollet-Villard Date: Thu, 9 Jan 2025 08:11:08 +0100 Subject: [PATCH] human type for electabuzz, electivire and tyrogue (#2676) * human electabuzz and electivire * make tyrogue human --------- Co-authored-by: Keldaan --- app/models/colyseus-models/pokemon.ts | 28 +++++++++++++------ .../dist/client/changelog/patch-5.10.md | 3 ++ 2 files changed, 23 insertions(+), 8 deletions(-) diff --git a/app/models/colyseus-models/pokemon.ts b/app/models/colyseus-models/pokemon.ts index cf1c7f0ed..9b63ecd79 100644 --- a/app/models/colyseus-models/pokemon.ts +++ b/app/models/colyseus-models/pokemon.ts @@ -843,14 +843,18 @@ export class Elekid extends Pokemon { } export class Electabuzz extends Pokemon { - types = new SetSchema([Synergy.ELECTRIC, Synergy.ARTIFICIAL]) + types = new SetSchema([ + Synergy.ELECTRIC, + Synergy.ARTIFICIAL, + Synergy.HUMAN + ]) rarity = Rarity.EPIC stars = 2 evolution = Pkm.ELECTIVIRE hp = 190 atk = 16 - def = 7 - speDef = 7 + def = 6 + speDef = 6 maxPP = 90 range = 1 skill = Ability.DISCHARGE @@ -858,13 +862,17 @@ export class Electabuzz extends Pokemon { } export class Electivire extends Pokemon { - types = new SetSchema([Synergy.ELECTRIC, Synergy.ARTIFICIAL]) + types = new SetSchema([ + Synergy.ELECTRIC, + Synergy.ARTIFICIAL, + Synergy.HUMAN + ]) rarity = Rarity.EPIC stars = 3 hp = 350 - atk = 32 - def = 10 - speDef = 10 + atk = 28 + def = 8 + speDef = 8 maxPP = 90 range = 1 skill = Ability.DISCHARGE @@ -10651,7 +10659,11 @@ export class Chimecho extends Pokemon { } export class Tyrogue extends Pokemon { - types = new SetSchema([Synergy.FIGHTING, Synergy.BABY]) + types = new SetSchema([ + Synergy.FIGHTING, + Synergy.HUMAN, + Synergy.BABY + ]) rarity = Rarity.UNIQUE stars = 2 evolution = Pkm.HITMONTOP diff --git a/app/public/dist/client/changelog/patch-5.10.md b/app/public/dist/client/changelog/patch-5.10.md index b6374ea99..116d1877a 100644 --- a/app/public/dist/client/changelog/patch-5.10.md +++ b/app/public/dist/client/changelog/patch-5.10.md @@ -2,6 +2,9 @@ # Changes to Pokemon & Abilities +- Electabuzz and Electivire are now Electric/Artificial/Human. Adjusted stat buffs from 5.9. +- Tyrogue is now Fighting/Human/Baby + # Changes to Synergies # Changes to Items