1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,83 @@
import { Card } from '../../../interfaces'
import Set from '../Unified Minds'
const card: Card = {
name: {
en: "Latios-GX",
fr: "Latios-GX",
},
illustrator: "Yoshinobu Saito",
rarity: "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