import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Zigzagoon", fr: "Zigzaton" }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 263, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Collect", fr: "Collectionner" }, effect: { en: "Draw a card.", fr: "Piochez une carte." }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Headbutt", fr: "Coup d'boule" }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card