import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Spinarak", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 167, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Sharp Stinger", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned. If tails, the Defending Pokémon is now Paralyzed.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card