import { Card } from '../../../interfaces' import Set from '../Boundaries Crossed' const card: Card = { name: { en: "Numel", fr: "Chamallot", es: "Numel", it: "Numel", pt: "Numel", de: "Camaub" }, illustrator: "match", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 322, ], hp: 90, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", "Colorless", "Colorless", ], name: { en: "Flamethrower", fr: "Lance-Flamme", }, effect: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 60, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 3, } export default card