import { Card } from '../../../interfaces' import Set from '../Gym Heroes' const card: Card = { name: { en: "Sabrina's Abra", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 63, ], hp: 40, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Energy Loop", }, effect: { en: "Return a Energy card attached to Sabrina's Abra to your hand in order to use this attack.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card