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: "ex10-116", localId: 116, // Card informations name: { en: "Rocket's Persian ex", }, hp: 100, type: [ Type.DARKNESS, ], dexId: 53, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex10/116/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex10/116/high", }, }, evolveFrom: { en: "Rocket's Meowth", }, tags: [ Tag.STAGE1, ], illustrator: "Mitsuhiro Arita", abilities: [{ id: 1209, type: AbilityType.POKEPOWER, name: { en: "Night Cry", }, text: { en: "Once during your turn, if Rocket's Persian ex is on your Bench, you may search your deck for a Pokémon with Dark or Rocket's in its name. Show it to your opponent and put it into your hand. Shuffle your deck afterward.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Toxic Claws", }, text: { en: "The Defending Pokémon is now Poisoned. Put 2 damage counters instead of 1 on the Defending Pokémon between turns.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unseen Forces", code: "ex10" } } export default card