1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +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
1.3 KiB
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 '../BREAKpoint'
const card: Card = {
name: {
en: "Psychics Third Eye",
fr: "Troisième Œil du Kinésiste",
es: "Tercer Ojo de Médium",
it: "Terzo Occhio del Sensitivo",
pt: "Terceiro Olho do Psíquico",
de: "Psychos siebter Sinn"
},
illustrator: "Yusuke Ohmura",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Votre adversaire montre sa main.\n\nDéfaussez autant de cartes que vous voulez de votre main. Ensuite, piochez autant de cartes.",
en: "Your opponent reveals his or her hand.\n\nDiscard as many cards as you like from your hand. Then, draw that many cards.",
es: "Tu rival enseña las cartas de su mano.Descarta tantas cartas como quieras de tu mano. Después, roba ese mismo número de cartas.",
it: "Il tuo avversario mostra le carte che ha in mano.Scarta tutte le carte che vuoi dalla tua mano. Poi pesca lo stesso numero di carte.",
pt: "Seu oponente revela a própria mão.Descarte tantos cards quanto quiser da sua mão. Em seguida, compre aquele mesmo número de cards.",
de: "Dein Gegner deckt seine Handkarten auf.Lege beliebig viele Karten von deiner Hand auf deinen Ablagestapel. Ziehe anschließend dieselbe Anzahl Karten."
},
trainerType: "Supporter",
}
export default card