import { Card } from "../../../interfaces" import Set from "../Fusion Strike" const card: Card = { dexId: [263], set: Set, name: { en: "Galarian Zigzagoon", fr: "Zigzaton de Galar", es: "Zigzagoon de Galar", it: "Zigzagoon di Galar", pt: "Zigzagoon de Galar", de: "Galar-Zigzachs" }, rarity: "Common", category: "Pokemon", hp: 60, types: ["Darkness"], stage: "Basic", retreat: 1, regulationMark: "E", illustrator: "Eri Yamaki", description: { en: "Thought to be the oldest form of Zigzagoon, it moves in zigzags and wreaks havoc upon its surroundings." }, attacks: [{ cost: ["Darkness"], name: { en: "Lick", fr: "Léchouille", de: "Schlecker", es: "Lengüetazo", pt: "Lambida", it: "Leccata" }, damage: 10, effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert.", es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.", pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Paralisado.", it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato." } }], variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card