import { Card } from '../../../interfaces' import Set from '../Yellow A Alternate' const card: Card = { name: { en: "Eevee", fr: "Évoli", }, illustrator: "kirisAki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 133, ], hp: 60, types: [ "Colorless", ], stage: "Basic", abilities: [ { type: "Ability", name: { en: "Energy Evolution", fr: "Évolution de l'Énergie", }, effect: { en: "When you attach a basic Energy card from your hand to this Pokémon during your turn, you may search your deck for a card that evolves from this Pokémon that is the same type as that Energy card and put it onto this Pokémon to evolve it. Then, shuffle your deck.", fr: "Lorsque vous attachez pendant votre tour une carte Énergie de base de votre main à ce Pokémon, vous pouvez chercher dans votre deck une carte qui est l’évolution de ce Pokémon et du même type que cette carte Énergie. Mettez-la sur ce Pokémon pour le faire évoluer. Mélangez ensuite votre deck.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Quick Draw", fr: "Pioche Rapide", }, effect: { en: "Flip a coin. If heads, draw a card.", fr: "Lancez une pièce. Si c’est face, piochez une carte.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, } export default card