mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
26 lines
373 B
TypeScript
26 lines
373 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Macdonald\'s Collection 2015'
|
|
|
|
const card: Card = {
|
|
dexId: [309],
|
|
set: Set,
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: false,
|
|
firstEdition: false
|
|
},
|
|
|
|
name: {
|
|
en: "Electrike"
|
|
},
|
|
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Lightning"],
|
|
stage: "Basic"
|
|
}
|
|
|
|
export default card |