1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

40 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
fr: "Uniforme de Survie",
en: "Expedition Uniform",
es: "Uniforme de Expedición",
it: "Completo da esplorazione",
pt: "Uniforme de Expedição",
de: "Entdecker-Set"
},
illustrator: "AYUMI ODASHIMA",
rarity: "Uncommon",
category: "Trainer",
effect: {
fr: "Regardez les 3 cartes du dessous de votre deck, puis placez-les sur le dessus de votre deck dans lordre de votre choix.",
en: "Look at the bottom 3 cards of your deck and put them on top of your deck in any order.",
es: "Mira las 3 últimas cartas de tu baraja y ponlas en la parte superior de tu baraja en el orden que quieras.",
it: "Guarda le ultime tre carte del tuo mazzo e mettile in cima nellordine che preferisci.",
pt: "Olhe as 3 cartas de baixo do seu baralho e coloque-as como as cartas de cima do seu baralho em qualquer ordem.",
de: "Schau dir die untersten 3 Karten deines Decks an und lege sie in beliebiger Reihenfolge auf dein Deck."
},
trainerType: "Item",
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card