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: "base5-42", localId: 42, // Card informations name: { en: "Dark Persian", }, hp: 60, type: [ Type.COLORLESS, ], dexId: 53, image: { low: { en: "https://assets.tcgdex.net/en/base/base5/42/low.png", }, high: { en: "https://assets.tcgdex.net/en/base/base5/42/high.png", }, }, evolveFrom: { en: "Meowth", }, tags: [ Tag.STAGE1, ], illustrator: { id: 119, name: "Shin-ichi Yoshida" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Fascinate", }, text: { en: "Flip a coin. If heads, choose 1 of your opponent's Benched Pokémon and switch it with the Defending Pokémon. This attack can't be used if your opponent has no Benched 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.Uncommon, category: Category.POKEMON, set: { name: "Team Rocket", code: "base5" } } export default card