1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +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
995 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 '../Evolutions'
const card: Card = {
name: {
en: "Pokédex",
fr: "Pokédex",
es: "Pokédex",
it: "Pokédex",
pt: "Pokédex",
de: "Pokédex"
},
illustrator: "Keiji Kinebuchi",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Regardez les 5 cartes du dessus de votre deck et replacez-les dans lordre de votre choix.",
en: "Look at the top 5 cards of your deck and put them back in any order.",
es: "Mira las 5 primeras cartas de tu baraja y vuelve a ponerlas en la parte superior de tu baraja en el orden que quieras.",
it: "Guarda le prime cinque carte del tuo mazzo e rimettile a posto nellordine che preferisci.",
pt: "Olhe os 5 primeiros cards do seu baralho e coloque-os de volta em qualquer ordem.",
de: "Schau dir die obersten 5 Karten deines Decks an und lege sie in beliebiger Reihenfolge zurück in dein Deck."
},
trainerType: "Item",
}
export default card