1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00

33 lines
504 B
TypeScript

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.",
},
trainerType: "Stadium",
}
export default card