import { Card } from '../../../interfaces' import Set from '../Unbroken Bonds' const card: Card = { name: { en: "Persian", }, illustrator: "nagimiso", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 53, ], hp: 100, types: [ "Colorless", ], evolveFrom: { en: "Meowth", }, stage: "Stage1", abilities: [ { type: "Ability", name: { en: "Gathering of Cats", }, effect: { en: "Ignore all Energy in the attack costs of each of your Pokémon in play that has the Caturday attack.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Claw Slash", }, damage: 90, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card