import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Zygarde", }, illustrator: "Shin Nagasawa", rarity: "Rare", category: "Pokemon", set: Set, hp: 140, types: [ "Fighting", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Bite", }, damage: 30, }, { cost: [ "Fighting", "Fighting", "Colorless", "Colorless", ], name: { en: "Power Blast", }, effect: { en: "Discard a Fighting Energy from this Pokémon.", }, damage: 130, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 3, } export default card