1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-02 04:19:53 +00:00

101 lines
2.7 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 '../SWSH Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Vaporeon",
fr: "Aquali",
es: "Vaporeon",
pt: "Vaporeon",
de: "Aquana",
it: "Vaporeon"
},
illustrator: "so-taro",
rarity: "None",
category: "Pokemon",
hp: 110,
types: ["Water"],
evolveFrom: {
en: "Eevee",
fr: "Évoli",
de: "Evoli",
es: "Eevee",
pt: "Eevee",
it: "Eevee"
},
abilities: [{
type: "Ability",
name: {
en: "Watery Shroud",
fr: "Voile Aquatique",
es: "Manto Acuoso",
pt: "Manto d'Água",
de: "Wasservorhang",
it: "Velo Acqueo"
},
effect: {
en: "As long as this Pokémon is on your Bench, prevent all damage done to this Pokémon by attacks (both yours and your opponent's).",
fr: "Tant que ce Pokémon est sur votre Banc, évitez tous les dégâts infligés à ce Pokémon par des attaques (les vôtres et celles de votre adversaire).",
es: "Mientras este Pokémon esté en tu Banca, evita todo el daño infligido a este Pokémon por ataques (tanto tuyos como de tu rival).",
pt: "Enquanto este Pokémon estiver no seu Banco, previna todo o dano causado a este Pokémon por ataques (seus e do seu oponente).",
de: "Solange sich dieses Pokémon auf deiner Bank befindet, verhindere allen Schaden, der diesem Pokémon durch Attacken (deine und die deines Gegners) zugefügt wird.",
it: "Fintanto che questo Pokémon è nella tua panchina, previeni tutti i danni inflitti a questo Pokémon da qualsiasi attacco, sia tuo che del tuo avversario."
}
}],
attacks: [{
name: {
en: "Hydro Pump",
fr: "Hydrocanon",
es: "Hidrobomba",
pt: "Jato d'Água",
de: "Hydropumpe",
it: "Idropompa"
},
effect: {
en: "This attack does 20 more damage for each {W} Energy attached to this Pokémon.",
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Énergie {W} attachée à ce Pokémon.",
es: "Este ataque hace 20 puntos de daño más por cada Energía {W} unida a este Pokémon.",
pt: "Este ataque causa 20 pontos de dano a mais para cada Energia {W} ligada a este Pokémon.",
de: "Diese Attacke fügt für jede an dieses Pokémon angelegte {W}-Energie 20 Schadenspunkte mehr zu.",
it: "Questo attacco infligge 20 danni in più per ogni Energia {W} assegnata a questo Pokémon."
},
damage: "60+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
description: {
en: "When Vaporeon's fins begin to vibrate, it is a sign that rain will come within a few hours."
},
stage: "Stage1",
dexId: [134],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
regulationMark: "D"
}
export default card