1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

79 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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