import { Card } from '../../../interfaces' import Set from '../Forbidden Light' const card: Card = { name: { en: "Spewpa", fr: "Pérégrain", }, illustrator: "Miki Tanaka", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 665, ], hp: 70, types: [ "Grass", ], evolveFrom: { en: "Scatterbug", fr: "Lépidonille", }, stage: "Stage1", attacks: [ { cost: [ "Grass", ], 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é.", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 2, } export default card