mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
42 lines
943 B
TypeScript
42 lines
943 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolutions'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Professor Oak’s Hint",
|
||
fr: "Indice du Prof. Chen",
|
||
es: "Pista del Profesor Oak",
|
||
it: "Consiglio del Professor Oak",
|
||
pt: "Dica do Professor Carvalho",
|
||
de: "Prof. Eichs Tipp"
|
||
},
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Piochez des cartes jusqu’à ce que vous ayez 7 cartes en main. Votre tour se termine.",
|
||
en: "Draw cards until you have 7 cards in your hand. Your turn ends.",
|
||
es: "Roba cartas hasta que tengas 7 cartas en tu mano. Tu turno termina.",
|
||
it: "Pesca fino ad avere sette carte in mano. Il tuo turno finisce.",
|
||
pt: "Compre cards até ter 7 cards em sua mão. Sua vez de jogar termina.",
|
||
de: "Ziehe so viele Karten, bis du 7 Karten auf der Hand hast. Dein Zug endet."
|
||
},
|
||
trainerType: "Supporter",
|
||
|
||
}
|
||
|
||
export default card
|