mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-18 14:29:55 +00:00
19 lines
396 B
TypeScript
19 lines
396 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../DP trainer Kit (Manaphy)'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Energy Search"
|
|
},
|
|
|
|
illustrator: "Kai Ishikawa",
|
|
rarity: "None",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
en: "Search your deck for a basic Energy card, show it to your opponent, and put it into your hand. Shuffle your deck afterward."
|
|
}
|
|
}
|
|
|
|
export default card |