mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-14 04:46:14 +00:00
22 lines
484 B
TypeScript
22 lines
484 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Call of Legends'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Professor Elm's Training Method",
|
|
de: "Professor Linds Trainingsmethoden"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Supporter",
|
|
|
|
effect: {
|
|
de: "Durchsuche dein Deck nach 1 Evolutionskarte, zeige sie deinem Gegner und nimm sie auf die Hand. Mische anschließend dein Deck."
|
|
}
|
|
}
|
|
|
|
export default card
|