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