import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Skitty", }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 300, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Minor Errand-Running", }, effect: { en: "Search your deck for 2 basic Energy cards, show them to your opponent, and put them into your hand. Shuffle your deck afterward.", }, }, { cost: [ "Colorless", ], name: { en: "Lullaby", }, effect: { en: "The Defending Pokémon is now Asleep.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card