1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

82 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
},
name: {
en: "Vaporeon V",
fr: "Aquali V",
es: "Vaporeon V",
it: "Vaporeon V",
pt: "Vaporeon V",
de: "Aquana V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 210,
types: ["Water"],
stage: "Basic",
illustrator: "5ban Graphics",
suffix: "V",
attacks: [{
name: {
en: "Triple Draw",
fr: "Triple Pioche",
es: "Triple Robo",
it: "Pescata Tripla",
pt: "Triple Draw",
de: "Dreifachzug"
},
effect: {
en: "Draw 3 cards.",
fr: "Piochez 3 cartes.",
es: "Roba 3 cartas.",
it: "Pesca tre carte.",
pt: "Draw 3 cards.",
de: "Ziehe 3 Karten."
},
cost: ["Colorless"]
}, {
name: {
en: "Splash Jump",
fr: "Saut Éclaboussant",
es: "Salto Salpicadura",
it: "Salto Splash",
pt: "Splash Jump",
de: "Platschersprung"
},
effect: {
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Échangez ce Pokémon contre lun de vos Pokémon de Banc.",
es: "Cambia este Pokémon por 1 de tus Pokémon en Banca.",
it: "Scambia questo Pokémon con uno della tua panchina.",
pt: "Switch this Pokémon with 1 of your Benched Pokémon.",
de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus."
},
damage: 90,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2
}
export default card