import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Vaporeon ex", }, illustrator: "Hikaru Koike", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 134, ], hp: 120, types: [ "Water", ], evolveFrom: { en: "Eevee", }, suffix: "EX", abilities: [ { type: "Poke-POWER", name: { en: "Evolutionary Swirl", }, effect: { en: "Once during your turn, when you play Vaporeon ex from your hand to evolve 1 of your Pokémon, you may have your opponent shuffle his or her hand into his or her deck. Then, your opponent draws up to 4 cards.", }, }, ], attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Fastwave", }, effect: { en: "This attack's damage isn't affected by Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.", }, damage: 40, }, { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Hydrosplash", }, damage: 60, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card