mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
30 lines
253 B
TypeScript
30 lines
253 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Gym Challenge'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Misty's Wish",
|
|
},
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Rare",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|