import { Card } from '../../../interfaces' import Set from '../Next Destinies' const card: Card = { name: { en: "Pidove", fr: "Poichigeon", es: "Pidove", it: "Pidove", pt: "Pidove", de: "Dusselgurr" }, illustrator: "MAHOU", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 519, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Scout", fr: "Espionnage", }, effect: { en: "Your opponent reveals his or her hand.", fr: "Votre adversaire montre sa main.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Gust", fr: "Tornade", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card