import { Card } from "../../../interfaces" import Set from "../Shining Revelry" const card: Card = { set: Set, name: { en: "Abra" }, illustrator: "Mousho", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Psychic"], description: { en: "This Pokémon uses its psychic powers while it sleeps. The contents of Abra's dreams affect the powers that the Pokémon wields." }, stage: "Basic", attacks: [{ name: { en: "Psyshot" }, damage: 20, cost: ["Psychic"] }], weaknesses: [{ type: "Darkness", value: "+20" }], retreat: 1 } export default card