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: "basep-17", localId: 17, // Card informations name: { en: "Dark Persian", }, hp: 60, type: [ Type.COLORLESS, ], dexId: 53, image: { low: { en: "https://assets.tcgdex.net/en/base/basep/17/low", }, high: { en: "https://assets.tcgdex.net/en/base/basep/17/high", }, }, evolveFrom: { en: "Meowth", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Tempt", }, text: { en: "If your opponent has any Benched Pokémon, flip a coin. If heads, choose 1 of your opponent's Benched Pokémon and switch it with the Defending Pokémon.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Poison Claws", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Wizards Black Star Promos", code: "basep" } } export default card