1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

33 lines
463 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Generations'
const card: Card = {
name: {
en: "Poké Ball",
fr: "Poké Ball",
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Lancez une pièce. Si c'est face, cherchez un Pokémon dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
},
trainerType: "Item",
}
export default card