mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
117 lines
3.3 KiB
TypeScript
117 lines
3.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Lost Thunder'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Zeraora GX",
|
||
fr: "Zeraora GX",
|
||
es: "Zeraora GX",
|
||
it: "Zeraora GX",
|
||
pt: "Zeraora GX",
|
||
de: "Zeraora GX"
|
||
},
|
||
illustrator: "PLANETA Otani",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
807,
|
||
],
|
||
hp: 190,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
|
||
suffix: "GX",
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Thunderclap Zone",
|
||
fr: "Zone Vif Éclair",
|
||
es: "Zona Fulgor",
|
||
it: "Zona Fulmirapida",
|
||
pt: "Zona de Trovoada",
|
||
de: "Blitzsturmzone"
|
||
},
|
||
effect: {
|
||
en: "Each of your Pokémon that has any Lightning Energy attached to it has no Retreat Cost.",
|
||
fr: "Aucun de vos Pokémon auxquels de l’Énergie Lightning est attachée n’a de Coût de Retraite.",
|
||
es: "Cada uno de tus Pokémon que tenga alguna Energía Lightning unida a él no tiene ningún Coste de Retirada.",
|
||
it: "I tuoi Pokémon in gioco che hanno delle Energie Lightning assegnate non hanno costo di ritirata.",
|
||
pt: "Cada um dos seus Pokémon que tiver alguma Energia Lightning ligada a ele não terá custo de Recuo.",
|
||
de: "Jedes deiner Pokémon, an das mindestens 1 Lightning-Energie angelegt ist, hat keine Rückzugskosten."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Plasma Fists",
|
||
fr: "Plasma Punch",
|
||
es: "Puños Plasma",
|
||
it: "Pugni Plasma",
|
||
pt: "Punhos de Plasma",
|
||
de: "Plasmafäuste"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon can’t attack during your next turn.",
|
||
fr: "Ce Pokémon ne peut pas attaquer pendant votre prochain tour.",
|
||
es: "Este Pokémon no puede atacar durante tu próximo turno.",
|
||
it: "Questo Pokémon non può attaccare durante il tuo prossimo turno.",
|
||
pt: "Este Pokémon não poderá atacar durante a sua próxima vez de jogar.",
|
||
de: "Dieses Pokémon kann während deines nächsten Zuges nicht angreifen."
|
||
},
|
||
damage: 160,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
],
|
||
name: {
|
||
en: "Full Voltage GX",
|
||
fr: "Pleine Tension GX",
|
||
es: "Pleno Voltaje GX",
|
||
it: "Alta Tensione-GX",
|
||
pt: "Voltagem Máxima GX",
|
||
de: "Volle Voltzahl GX"
|
||
},
|
||
effect: {
|
||
en: "Attach 5 basic Energy cards from your discard pile to your Pokémon in any way you like. (You can’t use more than 1 GX attack in a game.)",
|
||
fr: "Attachez 5 cartes Énergie de base de votre pile de défausse à vos Pokémon, de la manière que vous voulez. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||
es: "Une 5 cartas de Energía Básica de tu pila de descartes a tus Pokémon de la manera que desees. (No puedes usar más de 1 ataque GX en una partida).",
|
||
it: "Assegna a piacimento ai tuoi Pokémon cinque carte Energia base dalla tua pila degli scarti. Non puoi usare più di un attacco GX a partita.",
|
||
pt: "Ligue 5 cartas de Energia básica da sua pilha de descarte aos seus Pokémon como desejar (você não pode usar mais de 1 ataque GX por partida).",
|
||
de: "Lege 5 Basis-Energiekarten aus deinem Ablagestapel beliebig an deine Pokémon an. (Du kannst pro Spiel nur 1 GX-Attacke einsetzen.)"
|
||
},
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Metal",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|