import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Pelipper", fr: "Bekipan" }, illustrator: "Eri Yamaki", rarity: "Uncommon", category: "Pokemon", set: Set, evolveFrom: { en: "Wingull", fr: "Goélise" }, attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Wing Attack", fr: "Cru-Ailes" }, damage: 50, }, { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Power Cyclone", fr: "Cyclone d’Énergie" }, effect: { en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.", fr: "Déplacez une Énergie de ce Pokémon vers l’un de vos Pokémon de Banc." }, damage: 110, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 2, hp: 120, types: ["Water"], regulationMark: "D" } export default card