mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-03 21:02:02 +00:00
48 lines
715 B
TypeScript
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 |