mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
23 lines
744 B
TypeScript
23 lines
744 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Expedition Base Set'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Master Ball",
|
|
fr: "Master ball",
|
|
de: "Meisterball"
|
|
},
|
|
|
|
illustrator: "Keiji Kinebuchi",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
fr: "Regardez les 7 cartes du dessus de votre deck. Parmi ces cartes, vous pouvez choisir une carte de Pokémon de base ou d'Évolution. Montrez-la à votre adversaire et ajoutez-la à votre main. Mélangez le reste à votre deck.",
|
|
de: "Look at 7 cards from the top of your deck. You may choose a Basic Pokémon or Evolution card from those cards, show it your opponent, and put it into your hand. Shuffle the rest into your deck."
|
|
}
|
|
}
|
|
|
|
export default card
|