1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +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

112 lines
2.3 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 '../Celestial Storm'
const card: Card = {
name: {
en: "Blaziken GX",
fr: "Braségali GX",
es: "Blaziken GX",
it: "Blaziken GX",
pt: "Blaziken GX",
de: "Lohgock GX"
},
illustrator: "5ban Graphics",
rarity: "Secret Rare",
category: "Pokemon",
set: Set,
dexId: [
257,
],
hp: 240,
types: [
"Fire",
],
evolveFrom: {
en: "Combusken",
fr: "Galifeu",
},
suffix: "GX",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
es: "Cuchillada",
it: "Lacerazione",
pt: "Talho",
de: "Schlitzer"
},
damage: 60,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Explosive Kick",
fr: "Coup de Pied Explosif",
es: "Patada Explosiva",
it: "Calcio Atomico",
pt: "Chute Explosivo",
de: "Explosiver Tritt"
},
effect: {
en: "Discard 2 Fire Energy from this Pokémon.",
fr: "Défaussez 2 Énergies Fire de ce Pokémon.",
es: "Descarta 2 Energías Fire de este Pokémon.",
it: "Scarta due Energie Fire assegnate a questo Pokémon.",
pt: "Descarte 2 Energias Fire deste Pokémon.",
de: "Lege 2 Fire-Energien von diesem Pokémon auf deinen Ablagestapel."
},
damage: 210,
},
{
cost: [
"Fire",
],
name: {
en: "Blaze Out GX",
fr: "Embrasement GX",
es: "Abrasamiento GX",
it: "Rogo-GX",
pt: "Chama Abrasadora GX",
de: "Brand GX"
},
effect: {
en: "Discard 2 Energy from your opponents Pokémon. (You cant use more than 1 GX attack in a game.)",
fr: "Défaussez 2 Énergies des Pokémon de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
es: "Descarta 2 Energías de los Pokémon de tu rival. (No puedes usar más de 1 ataque GX en una partida).",
it: "Scarta due Energie assegnate ai Pokémon del tuo avversario. Non puoi usare più di un attacco GX a partita.",
pt: "Descarte 2 Energias dos Pokémon do seu oponente (você não pode usar mais de 1 ataque GX por partida).",
de: "Lege 2 Energien von den Pokémon deines Gegners auf seinen Ablagestapel. (Du kannst pro Spiel nur 1 GX-Attacke einsetzen.)"
},
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card