import { Card } from '../../../interfaces' import Set from '../Base Set 2' const card: Card = { name: { en: "Persian", }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 53, ], hp: 70, types: [ "Colorless", ], evolveFrom: { en: "Meowth", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Scratch", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Pounce", }, effect: { en: "If the Defending Pokémon attacks Persian during your opponent's next turn, any damage done by the attack is reduce by 10 (after applying Weakness and Resistance). (Benching either Pokémon ends this effect.)", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card