import { Card } from '../../../interfaces' import Set from '../Crystal Guardians' const card: Card = { name: { en: "Numel", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 322, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Take Down", }, effect: { en: "Numel does 10 damage to itself.", }, damage: 30, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card