1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 06:09:50 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/069.ts

22 lines
455 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Penny"
},
illustrator: "Susumu Maeya",
rarity: "Two Diamond",
category: "Trainer",
effect: {
en: "Look at a random Supporter card that's not Penny from your opponent's deck and shuffle it back into their deck. Use the effect of that card as the effect of this card."
},
trainerType: "Supporter"
}
export default card