import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Eevee", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 133, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Call for Family", }, effect: { en: "Search your deck for a Basic Pokémon and put it onto your Bench. Shuffle your deck afterward.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Rear Kick", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card