import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Weedle", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 13, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Spike Stab", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned. If tails, this attack does nothing (not even damage).", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card