import { Card } from '../../../interfaces' import Set from '../Kalos Starter Set' const card: Card = { name: { en: "Weedle", fr: "Aspicot", }, illustrator: "Akira Komayama", rarity: "None", category: "Pokemon", set: Set, dexId: [ 13, ], hp: 40, types: [ "Grass", ], stage: "Basic", 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: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card