1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/216.ts

48 lines
715 B
TypeScript

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