import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Absol ex", }, illustrator: "Ryo Ueda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 359, ], hp: 100, types: [ "Darkness", ], suffix: "EX", abilities: [ { type: "Poke-POWER", name: { en: "Cursed Eyes", }, effect: { 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: [ "Darkness", "Colorless", ], name: { en: "Psychic Pulse", }, effect: { 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: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card