import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "sm6-136", localId: 136, // Card informations name: { en: "Zygarde-GX", fr: "Zygarde-GX", }, hp: 200, type: [ Type.FIGHTING, ], dexId: 718, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm6/136/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm6/136/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm6/136/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm6/136/high.png", }, }, evolveFrom: {}, tags: [ Tag.GX, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Cell Connector", fr: "Connecteur de Cellules", }, text: { en: "Attach 2 Fighting Energy cards from your discard pile to this Pokémon.", fr: "Attachez 2 cartes Énergie Fighting de votre pile de défausse à ce Pokémon.", }, damage: 50 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Land's Wrath", fr: "Force Chtonienne", }, damage: 130 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Verdict-GX", fr: "Verdict-GX", }, text: { en: "Prevent all damage done to this Pokémon by attacks from Pokémon-GX and Pokémon-EX during your opponent's next turn. (You can't use more than 1 GX attack in a game.)", fr: "Évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon-GX et de Pokémon-EX pendant le prochain tour de votre adversaire. (Vous ne pouvez utiliser qu’une attaque GX par partie.)", }, damage: 150 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 3, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Forbidden Light", code: "sm6" } } export default card