import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Alolan Meowth", }, illustrator: "sui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 52, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { name: { en: "Nasty Plot", }, effect: { en: "Flip a coin. If heads, search your deck for a card and put it into your hand. Then, shuffle your deck.", }, }, { cost: [ "Darkness", ], name: { en: "Scratch", }, damage: 10, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], } export default card