import { Card } from '../../../interfaces' import Set from '../Cosmic Eclipse' const card: Card = { name: { en: "Golett", fr: "Gringolem", }, illustrator: "Shigenori Negishi", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 622, ], hp: 90, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Return", fr: "Retour", }, effect: { en: "You may draw cards until you have 5 cards in your hand.", fr: "Vous pouvez piocher des cartes jusqu’à ce que vous ayez 5 cartes en main.", }, damage: 10, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 3, } export default card