mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-27 10:29:54 +00:00
22 lines
407 B
TypeScript
22 lines
407 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Call of Legends'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Professor Oak's New Theory",
|
|
de: "Professor Eichs neue Theorie"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Supporter",
|
|
|
|
effect: {
|
|
de: "Mische deine Handkarten in dein Deck. Ziehe danach 6 Karten."
|
|
}
|
|
}
|
|
|
|
export default card
|