import { Card } from '../../../interfaces' import Set from '../Ancient Origins' const card: Card = { name: { en: "Spinarak", fr: "Mimigal", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 167, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "String Shot", fr: "Sécrétion", }, 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é.", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card