import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/227/high.png", }, }, evolveFrom: { en: "Meowth", }, tags: [ Tag.STAGE1, ], illustrator: { id: 65, name: "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