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

25 lines
340 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: "Zekrom"
},
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Lightning"],
stage: "Basic"
}
export default card