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: "pop2-17", localId: 17, // Card informations name: { en: "Celebi ex", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 251, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop2/17/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop2/17/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 1, name: "Ryo Ueda" }, abilities: [{ id: 572, type: AbilityType.POKEPOWER, name: { en: "Time Reversal", }, text: { en: "Once during your turn, when you put Celebi ex from your hand onto your Bench, you may search your discard pile for a card, show it to your opponent, and put it on top of your deck.", } }], attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Psychic Shield", }, text: { en: "Prevent all effects of attacks, including damage, done to Celebi ex by your opponent's Pokémon", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "POP Series 2", code: "pop2" } } export default card