import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Slugma", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 218, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", }, damage: 10, }, { cost: [ "Fire", ], name: { en: "Scorching Lava", }, effect: { en: "Discard a Energy card attached to Slugma in order to use this attack. The Defending Pokémon is now Burned.", }, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card