1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 16:19:54 +00:00
Florian Bouillon 1a98a6022b
Fixed GX being with a dash while it isn't on the card (#58)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-16 11:05:52 +02:00

125 lines
3.9 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 '../SM Black Star Promos'
const card: Card = {
name: {
en: "Zekrom GX",
fr: "Zekrom GX",
es: "Zekrom GX",
it: "Zekrom GX",
pt: "Zekrom GX",
de: "Zekrom GX"
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
644,
],
hp: 180,
types: [
"Lightning",
],
stage: "Basic",
suffix: "GX",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Bullet Uppercut",
fr: "Uppercut Projeté",
es: "Gancho Bala",
it: "Montante Lampo",
pt: "Gancho Projétil",
de: "Hakentreffer"
},
effect: {
en: "If your opponents Active Pokémon is a Pokémon-GX or a Pokémon-EX, this attack does 60 more damage. This attacks damage isnt affected by Weakness.",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-GX ou un Pokémon-EX, cette attaque inflige 60 dégâts supplémentaires. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse.",
es: "Si el Pokémon Activo de tu rival es un Pokémon-GX o un Pokémon-EX, este ataque hace 60 puntos de daño más. El daño de este ataque no se ve afectado por Debilidad.",
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-GX o un Pokémon-EX, questo attacco infligge 60 danni in più. I danni di questo attacco non sono influenzati dalla debolezza.",
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon-GX ou um Pokémon-EX, este ataque causará 60 pontos de dano a mais. O dano deste ataque não é afetado por Fraqueza.",
de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-GX oder ein Pokémon-EX ist, fügt diese Attacke 60 Schadenspunkte mehr zu. Der Schaden dieser Attacke wird durch Schwäche nicht verändert."
},
damage: "10+",
},
{
cost: [
"Lightning",
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Swift Bolt Strike",
fr: "Charge Foudre Fulgurante",
es: "Ataque Fulgor Súbito",
it: "Lucesiluro Folgorante",
pt: "Ataque de Raios Veloz",
de: "Turboblitzschlag"
},
effect: {
en: "Flip 2 coins. This attack does 60 more damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 60 dégâts supplémentaires pour chaque côté face.",
es: "Lanza 2 monedas. Este ataque hace 60 puntos de daño más por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 60 danni in più ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 60 pontos de dano a mais para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 60 Schadenspunkte mehr pro Kopf zu."
},
damage: "80+",
},
{
cost: [
"Lightning",
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Rampage Bolt GX",
fr: "Éclair Saccageur GX",
es: "Furia Fulgor GX",
it: "Bolide Impazzito GX",
pt: "Ataque de Raios Veloz",
de: "Turboblitzschlag"
},
effect: {
en: "This attacks damage isnt affected by any effects on your opponents Active Pokémon. (You cant use more than 1 GX attack in a game.)",
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
es: "El daño de este ataque no se ve afectado por ningún efecto en el Pokémon Activo de tu rival. (No puedes usar más de 1 ataque GX en una partida).",
it: "I danni di questo attacco non sono influenzati da alcun effetto presente sul Pokémon attivo del tuo avversario. Non puoi usare più di un attacco GX a partita.",
pt: "Jogue 2 moedas. Este ataque causa 60 pontos de dano a mais para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 60 Schadenspunkte mehr pro Kopf zu."
},
damage: 200,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 3,
}
export default card