import { Card } from "../../../interfaces" import Set from "../Eevee Grove" const card: Card = { set: Set, name: { en: "Sylveon ex" }, illustrator: "PLANETA CG Works", rarity: "Four Diamond", category: "Pokemon", hp: 140, types: ["Psychic"], evolveFrom: { en: "Eevee" }, stage: "Stage1", suffix: "EX", abilities: [{ type: "Ability", name: { en: "Happy Ribbon" }, effect: { en: "Once during your turn, when you play this Pokémon from your hand to evolve 1 of your Pokémon, you may draw 2 cards." } }], attacks: [{ name: { en: "Fairy Wind" }, damage: 70, cost: ["Psychic", "Colorless"] }], weaknesses: [{ type: "Metal", value: "+20" }], retreat: 1 } export default card