mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 02:59:53 +00:00
35 lines
822 B
TypeScript
35 lines
822 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../HeartGold SoulSilver'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Professor Oak’s New Theory",
|
||
fr: "Nouvelle théorie du Prof. Chen",
|
||
de: "Professor Eichs neue Theorie"
|
||
},
|
||
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
fr: "Vous ne pouvez jouer qu’une carte Supporter à chaque tour. Lorsque vous jouez cette carte, placez-la près de votre Pokémon actif. Une fois votre tour terminé, défaussez-vous de cette carte.",
|
||
en: "Shuffle your hand into your deck. Then, draw 6 cards.",
|
||
de: "Mische deine Handkarten in dein Deck. Ziehe danach 6 Karten."
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
hp: 0
|
||
}
|
||
|
||
export default card
|