import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' import set from '../../../sets/swsh/swsh35' const card: Card = { // Card Global Informations id: "swsh35-28", localId: 28, name: { en: "Zygarde", }, illustrator: "Shin Nagasawa", rarity: Rarity.RARE, category: Category.POKEMON, set, // Card Pokémon Informations hp: 140, type: [ Type.FIGHTING, ], attacks: [ { cost: [ Type.COLORLESS, ], name: { en: "Bite", }, damage: 30, }, { cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS, ], name: { en: "Power Blast", }, text: { en: "Discard a Fighting Energy from this Pokémon.", }, damage: 130, }, ], weaknesses: [ { type: Type.GRASS, value: "×2", }, ], retreat: 3, // Card Trainer/Energy informations } export default card