import { Card } from '../../../interfaces' import Set from '../Majestic Dawn' const card: Card = { name: { en: "Aipom", fr: "Capumain", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 190, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Collect", fr: "Collectionner", }, effect: { en: "Draw a card.", fr: "Piochez une carte.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Hand Trick", fr: "Coup de la main", }, effect: { en: "Return Aipom and all cards attached to it to your hand. (If you don't have any Benched Pokémon, this attack does nothing.)", fr: "Reprenez Capumain dans votre main ainsi que toutes les cartes qui lui sont attachées. (Si vous ne possédez pas de Pokémon de Banc, cette attaque est sans effet.)", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], retreat: 1, } export default card