1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

33 lines
429 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Generations'
const card: Card = {
name: {
en: "Pokémon Center Lady",
fr: "Dame du Centre Pokémon",
},
illustrator: "Maiko Fujiwara",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Soignez 60 dégâts et retirez tous les États Spéciaux de l'un de vos Pokémon.",
},
trainerType: "Supporter",
}
export default card