1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42: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

114 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 '../Unified Minds'
const card: Card = {
name: {
en: "Latios GX",
fr: "Latios GX",
es: "Latios GX",
it: "Latios GX",
pt: "Latios GX",
de: "Latios GX"
},
illustrator: "Yoshinobu Saito",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
381,
],
hp: 170,
types: [
"Psychic",
],
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Power Bind",
fr: "Puissance Restreinte",
es: "Sujeción de Poder",
it: "Legaforza",
pt: "Aprisionador de Poder",
de: "Kraftbindung"
},
effect: {
en: "If you have 4 or fewer Pokémon in play, this Pokémon cant attack.",
fr: "Si vous avez 4 Pokémon ou moins en jeu, ce Pokémon ne peut pas attaquer.",
es: "Si tienes 4 Pokémon o menos en juego, este Pokémon no puede atacar.",
it: "Se hai quattro o meno Pokémon in gioco, questo Pokémon non può attaccare.",
pt: "Se você tiver 4 ou menos Pokémon em jogo, este Pokémon não poderá atacar.",
de: "Wenn du 4 oder weniger Pokémon im Spiel hast, kann dieses Pokémon nicht angreifen."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Tag Purge",
fr: "Escouade-Éclat",
es: "Purga Relevo",
it: "Abbagliante Alleati",
pt: "Expurgação de Aliados",
de: "Team-Block"
},
effect: {
en: "During your opponents next turn, prevent all damage done to this Pokémon by attacks from TAG TEAM Pokémon.",
fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon ESCOUADE.",
es: "Durante el próximo turno de tu rival, evita todo el daño infligido a este Pokémon por ataques de Pokémon de equipo de RELEVOS.",
it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon ALLEATI.",
pt: "Durante a próxima vez de jogar do seu oponente, prevenirá todo o dano causado a este Pokémon por ataques de Pokémon ALIADOS.",
de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von TAG TEAM Pokémon zugefügt wird."
},
damage: 120,
},
{
cost: [
"Psychic",
],
name: {
en: "Clear Vision GX",
fr: "Acuité GX",
es: "Visión Clara GX",
it: "Chiara Visione GX",
pt: "Visão Clara GX",
de: "Freie Sicht GX"
},
effect: {
en: "For the rest of this game, your opponent cant use any GX attacks. (You cant use more than 1 GX attack in a game.)",
fr: "Jusquà la fin de la partie, votre adversaire ne peut pas utiliser dattaque GX. (Vous ne pouvez utiliser quune attaque GX par partie.)",
es: "Durante el resto de la partida, tu rival no puede usar ningún ataque GX. (No puedes usar más de 1 ataque GX en una partida).",
it: "Per il resto della partita, il tuo avversario non può usare attacchi GX. Non puoi usare più di un attacco GX a partita.",
pt: "Pelo resto da partida, seu oponente não poderá usar qualquer ataque GX (você não pode usar mais de 1 ataque GX por partida).",
de: "Für den Rest des Spiels kann dein Gegner keine GX-Attacken einsetzen. (Du kannst pro Spiel nur 1 GX-Attacke einsetzen.)"
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 0
}
export default card