mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 13:22:15 +00:00
33 lines
497 B
TypeScript
33 lines
497 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Cosmic Eclipse'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Professor Oak's Setup",
|
||
fr: "Installation du Professeur Chen",
|
||
},
|
||
illustrator: "Megumi Mizutani",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Cherchez jusqu’à 3 Pokémon de base de types différents dans votre deck et placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
||
},
|
||
trainerType: "Supporter",
|
||
|
||
}
|
||
|
||
export default card
|