import { Card } from '../../../interfaces' import Set from '../EX trainer Kit (Latias)' const card: Card = { dexId: [300], set: Set, name: { en: "Skitty" }, illustrator: "Atsuko Nishida", rarity: "None", category: "Pokemon", stage: "Basic", hp: 50, types: [ "Colorless", ], attacks: [{ cost: [ "Colorless", ], name: { en: "Tackle" }, damage: 10 }, { cost: [ "Colorless", "Colorless" ], name: { en: "Lunge" }, effect: { en: "Flip a coin. If tails, this attack does nothing." }, damage: 30 }], weaknesses: [ { type: "Fighting", value: "2x" }, ], retreat: 1, } export default card