import { Card } from '../../../interfaces' import Set from '../Phantom Forces' const card: Card = { name: { en: "Spearow", fr: "Piafabec", }, illustrator: "Mizue", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 21, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Whirlwind", fr: "Cyclone", }, effect: { en: "Your opponent switches his or her Active Pokémon with 1 of his or her Benched Pokémon.", fr: "Votre adversaire échange son Pokémon Actif avec l’un de ses Pokémon de Banc.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card