mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-11 23:55:12 +00:00
63 lines
1.7 KiB
TypeScript
63 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Mythical Island"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Gyarados ex",
|
|
fr: "Léviator-ex",
|
|
es: "Gyarados ex",
|
|
it: "Gyarados-ex",
|
|
de: "Garados-ex",
|
|
'pt-br': "Gyarados ex",
|
|
ko: "갸라도스 ex"
|
|
},
|
|
|
|
illustrator: "PLANETA CG Works",
|
|
category: "Pokemon",
|
|
hp: 180,
|
|
types: ["Water"],
|
|
|
|
evolveFrom: {
|
|
en: "Magikarp"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
suffix: "EX",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Rampaging Whirlpool",
|
|
fr: "Tourbillon Tempétueux",
|
|
es: "Torbellino Furioso",
|
|
it: "Vortice Impetuoso",
|
|
de: "Tosender Strudel",
|
|
'pt-br': "Redemoinho Furioso",
|
|
ko: "난동 바다회오리"
|
|
},
|
|
|
|
damage: 140,
|
|
cost: ["Water", "Water", "Water", "Colorless"],
|
|
|
|
effect: {
|
|
en: "Discard a random Energy from among the Energy attached to all Pokémon (both yours and your opponent's).",
|
|
fr: "Défaussez une Énergie au hasard parmi celles attachées à tous les Pokémon en jeu (les vôtres et ceux de votre adversaire).",
|
|
es: "Descarta 1 Energía aleatoria de entre las Energías unidas a todos los Pokémon (tanto tuyos como de tu rival).",
|
|
it: "Rimuovi un'Energia a caso fra quelle assegnate a tutti i Pokémon, sia tuoi che del tuo avversario.",
|
|
de: "Lege 1 zufällige Energie von allen Energien, die an alle Pokémon (deine und die deines Gegners) angelegt sind, ab.",
|
|
'pt-br': "Descarte 1 Energia aleatória dentre as Energias ligadas a todos os Pokémon (seus e do seu oponente).",
|
|
ko: "서로의 포켓몬 전원에게 붙어 있는 에너지에서 랜덤으로 1개 트래쉬한다."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 3,
|
|
rarity: "Four Diamond"
|
|
}
|
|
|
|
export default card |