import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Numel", fr: "Chamallot" }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 322, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Collect", fr: "Collectionner" }, effect: { en: "Draw a card.", fr: "Piochez une carte." }, }, { cost: [ "Fire", ], name: { en: "Lunge", fr: "Coup rapide" }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet." }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card