import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Zygarde", fr: "Zygarde", }, illustrator: "kawayoo", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 718, ], hp: 130, types: [ "Fightning", ], stage: "Basic", attacks: [ { cost: [ "Fightning", "Colorless", "Colorless", ], name: { en: "Pulse Blast", fr: "Explosion Vibrante", }, damage: 60, }, { cost: [ "Fightning", "Fightning", "Fightning", "Colorless", ], name: { en: "Land's Wrath", fr: "Force Chtonienne", }, damage: 130, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 3, } export default card