import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Skitty", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 300, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Plus Energy", }, effect: { en: "Attach a basic Energy card from your hand to 1 of your Pokémon.", }, }, { cost: [ "Colorless", ], name: { en: "Scratch", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card