Skip to content

Commit

Permalink
human type for electabuzz, electivire and tyrogue (#2676)
Browse files Browse the repository at this point in the history
* human electabuzz and electivire

* make tyrogue human

---------

Co-authored-by: Keldaan <keldaan.ag@gmail.com>
  • Loading branch information
sylvainpolletvillard and keldaan-ag authored Jan 9, 2025
1 parent 234e4d6 commit c940cb7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 8 deletions.
28 changes: 20 additions & 8 deletions app/models/colyseus-models/pokemon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -843,28 +843,36 @@ export class Elekid extends Pokemon {
}

export class Electabuzz extends Pokemon {
types = new SetSchema<Synergy>([Synergy.ELECTRIC, Synergy.ARTIFICIAL])
types = new SetSchema<Synergy>([
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
attackSprite = AttackSprite.ELECTRIC_MELEE
}

export class Electivire extends Pokemon {
types = new SetSchema<Synergy>([Synergy.ELECTRIC, Synergy.ARTIFICIAL])
types = new SetSchema<Synergy>([
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
Expand Down Expand Up @@ -10651,7 +10659,11 @@ export class Chimecho extends Pokemon {
}

export class Tyrogue extends Pokemon {
types = new SetSchema<Synergy>([Synergy.FIGHTING, Synergy.BABY])
types = new SetSchema<Synergy>([
Synergy.FIGHTING,
Synergy.HUMAN,
Synergy.BABY
])
rarity = Rarity.UNIQUE
stars = 2
evolution = Pkm.HITMONTOP
Expand Down
3 changes: 3 additions & 0 deletions app/public/dist/client/changelog/patch-5.10.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c940cb7

Please sign in to comment.