mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-31 19:59:53 +00:00
36 lines
759 B
TypeScript
36 lines
759 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Promos-A"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Hand Scope",
|
|
fr: "Scrute Main",
|
|
es: "Periscopio",
|
|
it: "Mirino Manuale",
|
|
de: "Handperiskop",
|
|
'pt-br': "Luneta",
|
|
ko: "핸드스코프"
|
|
},
|
|
|
|
illustrator: "Toyste Beach",
|
|
rarity: "None",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Your opponent reveals their hand.",
|
|
fr: "Votre adversaire dévoile sa main.",
|
|
es: "Tu rival enseña las cartas de su mano.",
|
|
it: "Il tuo avversario mostra le carte che ha in mano.",
|
|
de: "Dein Gegner zeigt dir seine Handkarten.",
|
|
'pt-br': "Seu oponente revela a mão dele.",
|
|
ko: "상대의 패의 앞면을 모두 본다."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
boosters: []
|
|
}
|
|
|
|
export default card
|