1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

24 lines
802 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Emerald'
const card: Card = {
name: {
en: "PokéNav",
fr: "PokéNav",
de: "PokéNav"
},
illustrator: "Katsura Tabata",
rarity: "Uncommon",
category: "Trainer",
set: Set,
trainerType: "Item",
effect: {
fr: "Regardez les 3 cartes du dessus de votre deck et choisissez un Pokémon de base, une carte Évolution ou une carte Énergie. Montrez-la à votre adversaire et placez-la dans votre main. Replacez les 2 autres cartes au dessus de votre deck dans n'importe quel ordre.",
de: "Look at the top 3 cards of your deck, and choose a basic Pokémon, Evolution card, or Energy card. Show it to your opponent and put it into your hand. Put the 2 other cards back on top of your deck in any other."
}
}
export default card