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: "ex11-50", localId: 50, // Card informations name: { en: "Persian", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 53, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex11/50/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/50/high", }, }, evolveFrom: { en: "Meowth", }, tags: [ Tag.STAGE1, ], illustrator: "Naoyo Kimura", abilities: [{ id: 77, type: AbilityType.POKEPOWER, name: { en: "Prowl", }, text: { en: "Once during your turn, when you play Persian from your hand to evolve 1 of your Pokémon, you may search your deck for any 1 card and put it into your hand. Shuffle your deck afterward.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Snap Tail", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Delta Species", code: "ex11" } } export default card