import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "sm10-227", localId: 227, // Card informations name: { en: "Persian", }, hp: 100, type: [ Type.COLORLESS, ], dexId: 53, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/227/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/227/high", }, }, evolveFrom: { en: "Meowth", }, tags: [ Tag.STAGE1, ], illustrator: "nagimiso", abilities: [{ id: 502, type: AbilityType.TALENT, name: { en: "Gathering of Cats", }, text: { en: "Ignore all Energy in the attack costs of each of your Pokémon in play that has the Caturday attack.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Claw Slash", }, damage: 90 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card