mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-18 22:39:54 +00:00
33 lines
554 B
TypeScript
33 lines
554 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Diamond & Pearl'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Night Pokémon Center",
|
|
fr: "Centre Pokémon de Nuit",
|
|
},
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Choisissez 1 de vos Pokémon. Lancez 2 pièces. Si ce sont deux faces, retirez à ce Pokémon tous ses marqueurs de dégât. Si ce sont deux piles, défaussez toutes les cartes Énergie attachées à ce Pokémon.",
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|