1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon 1a98a6022b
Fixed GX being with a dash while it isn't on the card (#58)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-16 11:05:52 +02:00

31 lines
1.2 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 '../Unified Minds'
const card: Card = {
name: {
en: "Reset Stamp",
fr: "Tampon de Réinitialisation",
es: "Sello Reinicio",
it: "Timbro Reset",
pt: "Carimbo de Recomposição",
de: "Reset-Stempel"
},
illustrator: "sadaji",
rarity: "Secret Rare",
category: "Trainer",
set: Set,
trainerType: "Item",
effect: {
en: "Your opponent shuffles their hand into their deck and draws a card for each of their remaining Prize cards.",
fr: "Votre adversaire mélange sa main avec son deck et pioche une carte pour chacune des cartes Récompense quil lui reste.",
es: "Tu rival pone las cartas de su mano en su baraja y las baraja todas, y roba 1 carta por cada una de las cartas de Premio que le queden.",
it: "Il tuo avversario rimischia le carte che ha in mano nel proprio mazzo e pesca una carta per ciascuna delle sue carte Premio rimanenti.",
pt: "Seu oponente embaralha a própria mão no baralho dele(a) e compra 1 carta para cada uma das cartas de Prêmio restantes dele(a).",
de: "Dein Gegner mischt seine Handkarten in sein Deck und zieht 1 Karte für jede seiner verbleibenden Preiskarten."
}
}
export default card