1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
903 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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Surprise Box",
fr: "Boîte Surprise",
es: "Caja Sorpresa",
it: "Scatola a Sorpresa",
pt: "Caixa Surpresa",
de: "Überraschungskiste"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Placez une carte de la pile de défausse de votre adversaire dans sa main.",
en: "Put a card from your opponents discard pile into their hand.",
es: "Pon 1 carta de la pila de descartes de tu rival en su mano.",
it: "Prendi una carta dalla pila degli scarti del tuo avversario e aggiungila a quelle che ha in mano.",
pt: "Coloque 1 carta da pilha de descarte do seu oponente na mão dele(a).",
de: "Gib deinem Gegner 1 Karte aus seinem Ablagestapel auf seine Hand."
},
trainerType: "Item",
}
export default card