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