import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Skitty", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 300, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tail Whip", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Tackle", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card