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: "ex16-92", localId: 92, // Card informations name: { en: "Absol ex", }, hp: 100, type: [ Type.DARKNESS, ], dexId: 359, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex16/92/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex16/92/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 1, name: "Ryo Ueda" }, abilities: [{ id: 31, type: AbilityType.POKEPOWER, name: { en: "Cursed Eyes", }, text: { en: "Once during your turn, when you put Absol ex from your hand onto your Bench, you may move 3 damage counters from 1 of your opponent's Pokémon to another of his or her Pokémon.", } }], attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS ], name: { en: "Psychic Pulse", }, text: { en: "Does 10 damage to each of your opponent's Benched Pokémon that has any damage counters on it. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Power Keepers", code: "ex16" } } export default card