mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
33 lines
448 B
TypeScript
33 lines
448 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Furious Fists'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Training Center",
|
|
fr: "Centre d'Entraînement",
|
|
},
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Ajoute 30 PV à chacun des Pokémon de Niveau 1 et de Niveau 2 en jeu (les vôtres et ceux de votre adversaire).",
|
|
},
|
|
trainerType: "Stadium",
|
|
|
|
}
|
|
|
|
export default card
|