import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Numel", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 322, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Rollout", }, damage: 10, }, { cost: [ "Fire", ], name: { en: "Kindle", }, effect: { en: "Discard a Fire Energy card attached to Numel and then discard an Energy card attached to the Defending Pokémon.", }, damage: 10, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card