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: "xy10-54", localId: 54, // Card informations name: { en: "Zygarde-EX", }, hp: 190, type: [ Type.FIGHTING, ], dexId: 718, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy10/54a/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy10/54a/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Land's Pulse", }, text: { en: "If there is any Stadium card in play, this attack does 20 more damage.", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Cell Storm", }, text: { en: "Heal 30 damage from this Pokémon.", }, damage: 60 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Land's Wrath", }, damage: 100 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Fates Collide", code: "xy10" } } export default card