import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Numel", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 322, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Collect", }, effect: { en: "Draw a card.", }, }, { cost: [ "Fire", ], name: { en: "Lunge", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card