import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Slugma", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 218, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", "Colorless", ], name: { en: "Singe", }, effect: { en: "The Defending Pokémon is now Burned.", }, damage: 10, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card