1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 20:36:15 +00:00

35 lines
640 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Platinum'
const card: Card = {
name: {
en: "Poké Ball",
fr: "Poké Ball",
de: "Pokéball"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Lancez une pièce. Si c'est face, choisissez un Pokémon dans votre deck, montrez-le à votre adversaire et placez-le dans votre main. Ensuite, mélangez votre deck.",
de: "Flip a coin. If heads, search your deck for a Pokémon, show it to your opponent, and put it into your hand. Shuffle your deck afterward."
},
trainerType: "Item",
}
export default card