import { Card } from '../../../interfaces' import Set from '../Lost Thunder' const card: Card = { name: { en: "Pikipek", fr: "Picassaut", }, illustrator: "Suwama Chiaki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 731, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Send Back", fr: "Renvoyer", }, effect: { en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.", fr: "Votre adversaire échange son Pokémon Actif avec l’un de ses Pokémon de Banc.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Peck", fr: "Picpic", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card