mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
24 lines
693 B
TypeScript
24 lines
693 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../FireRed & LeafGreen'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Prof. Oak's Research",
|
|
fr: "La recherche du Prof. Chen",
|
|
de: "Professor Eichs Nachforschunge"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Supporter",
|
|
|
|
effect: {
|
|
fr: "Vous ne pouvez jouer qu'une seule carte Supporter par tour. Lorsque vous jouez cette carte, placez-la à côté de votre Pokémon Actif. À la fin de votre tour, défaussez-la.\n\nMélangez votre main avec votre deck. Ensuite, piochez 5 cartes.",
|
|
de: "Mische deine Hand in dein Deck, und ziehe dann 5 Karten."
|
|
}
|
|
}
|
|
|
|
export default card
|