mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
24 lines
599 B
TypeScript
24 lines
599 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../FireRed & LeafGreen'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "PokéDex (HANDY909)",
|
|
fr: "Pokédex",
|
|
de: "PokéDex HANDY909"
|
|
},
|
|
|
|
illustrator: "K. Utsunomiya",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Item",
|
|
|
|
effect: {
|
|
fr: "Mélangez votre deck. Regardez les 6 cartes du dessus de votre deck puis remettez-les dans votre deck dans n'importe quel ordre.",
|
|
de: "Shuffle your deck. Look at 6 cards from the top of your deck, then put them back on top of your deck in any order."
|
|
}
|
|
}
|
|
|
|
export default card
|