1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-19 14:49:55 +00:00

21 lines
482 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../DP trainer Kit (Manaphy)'
const card: Card = {
name: {
en: "Dusk Ball"
},
illustrator: "Ryo Ueda",
rarity: "None",
category: "Trainer",
set: Set,
effect: {
en: "Look at the 7 cards from the bottom of your deck. Choose 1 Pokémon you find there, show it to your opponent, and put it into your hand. Put the remaining cards back on top of your deck. Shuffle your deck afterward."
}
}
export default card