1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
2021-10-07 10:38:16 +02:00

25 lines
334 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Celebrations'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
},
name: {
en: "Mew"
},
rarity: "Rare",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
stage: "Basic"
}
export default card