import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Vaporeon" }, illustrator: "Souichirou Gunjima", rarity: "One Shiny", category: "Pokemon", hp: 130, types: ["Water"], evolveFrom: { en: "Eevee" }, description: { en: "It lives close to water. Its long tail is ridged with\na fin, which is often mistaken for a mermaid's." }, stage: "Stage1", attacks: [{ name: { en: "Bubble Drain" }, damage: 60, cost: ["Water", "Colorless", "Colorless"], effect: { en: "Heal 30 damage from this Pokémon." } }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 2 } export default card