import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Eevee", fr: "Évoli", es: "Eevee", it: "Eevee", pt: "Eevee", de: "Evoli" }, illustrator: "MAHOU", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 133, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Surprise Attack", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1 } export default card