Make grass types unable to be seeded
This commit is contained in:
parent
891b18592e
commit
696c31f3e2
|
@ -276,6 +276,10 @@ export class SeedTag extends BattlerTag {
|
|||
super(BattlerTagType.SEEDED, BattlerTagLapseType.TURN_END, 1, Moves.LEECH_SEED, sourceId);
|
||||
}
|
||||
|
||||
canAdd(pokemon: Pokemon): boolean {
|
||||
return !pokemon.isOfType(Type.GRASS);
|
||||
}
|
||||
|
||||
onAdd(pokemon: Pokemon): void {
|
||||
super.onAdd(pokemon);
|
||||
|
||||
|
|
Loading…
Reference in New Issue