1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

83 lines
2.0 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 '../Neo Destiny'
const card: Card = {
name: {
en: "Light Vaporeon",
fr: "Aquali lumineux",
de: "Helles Aquana"
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
134,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Eevee",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Wash Away",
fr: "Lavage",
de: "Wash Away"
},
effect: {
en: "If you have any Benched Pokémon, flip a coin. If heads, remove all damage counters from 1 of your Benched Pokémon and discard all Energy cards attached to it.",
fr: "Si vous avez des Pokémon sur votre Banc, lancez une pièce. Si c'est face, retirez tous les marqueurs de dégâts d'un des Pokémon de votre Banc et défaussez-vous de toutes les cartes Énergie qui y sont attachées.",
de: "If you have any Benched Pokémon, flip a coin. If heads, remove all damage counters from 1 of your Benched Pokémon and discard all Energy cards attached to it."
},
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Hypno Shower",
fr: "Hypnodouche",
de: "Hypnoshower"
},
effect: {
en: "The Defending Pokémon is now Asleep. Remove 1 damage counter from each Benched Pokémon (yours and your opponent's) with any damage counters on it.",
fr: "Le Pokémon Défenseur est maintenant Endormi. Retirez un marqueur de dégâts de chaque Pokémon du Banc (le vôtre et celui de votre adversaire) ayant des marqueurs de dégâts sur lui.",
de: "The Defending Pokémon is now Asleep. Remove 1 damage counter from each Benched Pokémon (yours and your opponent's) with any damage counters on it."
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
description: {
fr: "Si sa nageoire commence à vibrer, c'est signe qu'il va bientôt pleuvoir."
}
}
export default card