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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex10/116/high.png", }, }, evolveFrom: { en: "Rocket's Meowth", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "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.RareHoloEX, category: Category.POKEMON, set: { name: "Unseen Forces", code: "ex10" } } export default card