import { Card } from '../../../interfaces' import Set from '../BREAKpoint' const card: Card = { name: { en: "All-Night Party", fr: "Célébration Nocturne", }, illustrator: "Hitoshi Ariga", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Une seule fois pendant le tour de chaque joueur, si le Pokémon Actif de ce joueur est Endormi, il peut retirer cet État Spécial et soigner 30 dégâts au Pokémon.", en: "Once during each player’s turn, if that player’s Active Pokémon is Asleep, he or she may remove that Special Condition and heal 30 damage from that Pokémon." }, trainerType: "Stadium", } export default card