1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +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

73 lines
1.4 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
name: {
en: "Gyarados VMAX",
fr: "Léviator VMAX",
es: "Gyarados VMAX",
it: "Gyarados VMAX",
pt: "Gyarados VMAX",
de: "Garados VMAX"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 330,
types: ["Water"],
stage: "VMAX",
illustrator: "Shin Nagasawa",
attacks: [{
name: {
en: "Hyper Beam",
fr: "Ultralaser",
es: "Hiperrayo",
it: "Iper Raggio",
pt: "Hyper Beam",
de: "Hyperstrahl"
},
effect: {
en: "Discard an Energy from your opponents Active Pokémon.",
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
es: "Descarta 1 Energía del Pokémon Activo de tu rival.",
it: "Scarta unEnergia dal Pokémon attivo del tuo avversario.",
pt: "Discard an Energy from your opponents Active Pokémon.",
de: "Lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 120,
cost: ["Water", "Water", "Colorless"]
}, {
name: {
en: "Max Tyrant",
fr: "Tyranomax",
es: "Maxitiránico",
it: "Dynatiranno",
pt: "Max Tyrant",
de: "Dyna-Tyrann"
},
damage: 240,
cost: ["Water", "Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 4
}
export default card