1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

42 lines
943 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Evolutions'
const card: Card = {
name: {
en: "Professor Oaks 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