import { Card } from '../../../interfaces' import Set from '../Kalos Starter Set' const card: Card = { name: { en: "Slugma", fr: "Limagma", }, illustrator: "Mitsuhiro Arita", rarity: "None", category: "Pokemon", set: Set, dexId: [ 218, ], hp: 80, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", "Colorless", ], name: { en: "Combustion", fr: "Fournaise", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 2, } export default card