mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-23 16:49:53 +00:00
121 lines
3.7 KiB
TypeScript
121 lines
3.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SM Black Star Promos'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Xurkitree GX",
|
||
fr: "Câblifère GX",
|
||
es: "Xurkitree GX",
|
||
it: "Xurkitree GX",
|
||
pt: "Xurkitree GX",
|
||
de: "Voltriant GX"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
796,
|
||
],
|
||
|
||
hp: 180,
|
||
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
suffix: "GX",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Flashing Head",
|
||
fr: "Tête Clignotante",
|
||
es: "Cabeza Destellante",
|
||
it: "Testa Lampeggiante",
|
||
pt: "Cabeça Piscante",
|
||
de: "Leuchtender Kopf"
|
||
},
|
||
effect: {
|
||
en: "Prevent all damage done to this Pokémon by attacks from your opponent’s Pokémon that have any Special Energy attached to them.",
|
||
fr: "Évitez tous les dégâts d’attaque infligés à ce Pokémon par les Pokémon de votre adversaire auxquels est attachée de l’Énergie spéciale.",
|
||
es: "Evita todo el daño infligido a este Pokémon por ataques de los Pokémon de tu rival que tengan alguna Energía Especial unida a ellos.",
|
||
it: "Previeni tutti i danni da attacchi inflitti a questo Pokémon dai Pokémon del tuo avversario che abbiano delle Energie speciali assegnate.",
|
||
pt: "Previne todo o dano causado a este Pokémon por ataques dos Pokémon do seu oponente que tenham alguma Energia Especial ligada a eles.",
|
||
de: "Verhindere allen Schaden, der diesem Pokémon durch Attacken von Pokémon deines Gegners, an die mindestens 1 Spezial-Energie angelegt ist, zugefügt wird."
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Rumbling Wires",
|
||
fr: "Câbles Grondants",
|
||
es: "Cables Ruidosos",
|
||
it: "Cavi Brontoloni",
|
||
pt: "Cabos Estrondosos",
|
||
de: "Rumpelnde Kabel"
|
||
},
|
||
effect: {
|
||
en: "Discard the top card of your opponent’s deck.",
|
||
fr: "Défaussez la première carte du dessus du deck de votre adversaire.",
|
||
es: "Descarta la primera carta de la baraja de tu rival.",
|
||
it: "Scarta la prima carta del mazzo del tuo avversario.",
|
||
pt: "Descarte a primeira carta do baralho do seu oponente.",
|
||
de: "Lege die oberste Karte vom Deck deines Gegners auf seinen Ablagestapel."
|
||
},
|
||
damage: 100,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
],
|
||
name: {
|
||
en: "Lighting GX",
|
||
fr: "Éclair GX",
|
||
es: "Resplandor GX",
|
||
it: "Lumen GX",
|
||
pt: "Relampejo GX",
|
||
de: "Beleuchten GX"
|
||
},
|
||
effect: {
|
||
en: "Your opponent reveals their hand. Add a card you find there to their Prize cards face down. (You can’t use more than 1 GX attack in a game.)",
|
||
fr: "Votre adversaire dévoile sa main. Ajoutez une des cartes que vous y trouvez à ses cartes Récompense, face cachée. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||
es: "Tu rival enseña las cartas de su mano. Añade 1 carta que encuentres entre ellas a sus cartas de Premio boca abajo. (No puedes usar más de 1 ataque GX en una partida).",
|
||
it: "Il tuo avversario mostra le carte che ha in mano. Aggiungi una carta presente tra esse alle sue carte Premio a faccia in giù. Non puoi usare più di un attacco GX a partita.",
|
||
pt: "Seu oponente revela a própria mão. Adicione 1 carta que encontrar lá às cartas de Prêmio dele(a) viradas para baixo (você não pode usar mais de 1 ataque GX por partida).",
|
||
de: "Dein Gegner zeigt dir seine Handkarten. Füge 1 Karte, die du dort findest, verdeckt seinen Preiskarten hinzu. (Du kannst pro Spiel nur 1 GX-Attacke einsetzen.)"
|
||
},
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Metal",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
retreat: 2
|
||
}
|
||
|
||
export default card
|