import { Card } from '../../../interfaces' import Set from '../Roaring Skies' const card: Card = { name: { en: "Fearow", fr: "Rapasdepic", }, illustrator: "Satoshi Shirai", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 22, ], hp: 100, types: [ "Colorless", ], evolveFrom: { en: "Spearow", fr: "Piafabec", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Peck", fr: "Picpic", }, damage: 30, }, { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Drill Run", fr: "Tunnelier", }, effect: { en: "Flip a coin. If heads, discard an Energy attached to your opponent’s Active Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.", }, damage: 70, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card