1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00

84 lines
1.5 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",
},
illustrator: "ConceptLab",
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",
},
effect: {
en: "If you have 4 or fewer Pokémon in play, this Pokémon can't attack.",
fr: "Si vous avez 4 Pokémon ou moins en jeu, ce Pokémon ne peut pas attaquer.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Tag Purge",
fr: "Escouade-Éclat",
},
effect: {
en: "During your opponent's 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.",
},
damage: 120,
},
{
cost: [
"Psychic",
],
name: {
en: "Clear Vision-GX",
fr: "Acuité-GX",
},
effect: {
en: "For the rest of this game, your opponent can't use any GX attacks. (You can't use more than 1 GX attack in a game.)",
fr: "Pour le reste de cette partie, votre adversaire ne peut pas utiliser dattaque GX. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card