import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Koffing", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 109, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", }, damage: 10, }, { cost: [ "Grass", "Colorless", ], name: { en: "Double-edge", }, effect: { en: "Koffing does 10 damage to itself.", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card