1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +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

119 lines
3.4 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 '../Dragon Majesty'
const card: Card = {
name: {
en: "Reshiram GX",
fr: "Reshiram GX",
es: "Reshiram GX",
it: "Reshiram GX",
pt: "Reshiram GX",
de: "Reshiram GX"
},
illustrator: "PLANETA Otani",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
643,
],
hp: 180,
types: [
"Fire",
],
suffix: "GX",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Flame Charge",
fr: "Nitrocharge",
es: "Nitrocarga",
it: "Nitrocarica",
pt: "Ataque de Chamas",
de: "Nitroladung"
},
effect: {
en: "Search your deck for up to 2 Fire Energy cards and attach them to this Pokémon. Then, shuffle your deck.",
fr: "Cherchez jusquà 2 cartes Énergie Fire dans votre deck et attachez-les à ce Pokémon. Mélangez ensuite votre deck.",
es: "Busca en tu baraja hasta 2 cartas de Energía Fire y únelas a este Pokémon. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a due carte Energia Fire e assegnale a questo Pokémon. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por até 2 cartas de Energia Fire no seu baralho e ligue-as a este Pokémon. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach bis zu 2 Fire-Energiekarten und lege sie an dieses Pokémon an. Mische anschließend dein Deck."
},
},
{
cost: [
"Fire",
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Scorching Column",
fr: "Colonne Torride",
es: "Columna Abrasadora",
it: "Torre Ustionante",
pt: "Coluna Abrasadora",
de: "Versengende Säule"
},
effect: {
en: "Your opponents Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
pt: "O Pokémon Ativo do seu oponente agora está Queimado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
},
damage: 110,
},
{
cost: [
"Fire",
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Vermilion GX",
fr: "Vermillon-GX",
es: "Bermellón-GX",
it: "Vermiglio-GX",
pt: "Vermelhão-GX",
de: "Zinnober-GX"
},
effect: {
en: "You may attach up to 5 Fire Energy cards from your hand to your Pokémon in any way you like. (You cant use more than 1 GX attack in a game.)",
fr: "Vous pouvez attacher jusquà 5 cartes Énergie Fire de votre main à vos Pokémon, de la manière que vous voulez. (Vous ne pouvez utiliser quune attaque GX par partie.)",
es: "Puedes unir hasta 5 cartas de Energía Fire de tu mano a tus Pokémon de la manera que desees. (No puedes usar más de 1 ataque GX en una partida).",
it: "Puoi assegnare a piacimento ai tuoi Pokémon fino a cinque carte Energia Fire dalla tua mano. Non puoi usare più di un attacco GX a partita.",
pt: "Você pode ligar até 5 cartas de Energia Fire da sua mão aos seus Pokémon como desejar (você não pode usar mais de 1 ataque GX por partida).",
de: "Du kannst bis zu 5 Fire-Energiekarten aus deiner Hand beliebig an deine Pokémon anlegen. (Du kannst pro Spiel nur 1 GX-Attacke einsetzen.)"
},
damage: 180,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card