mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-19 22:59:55 +00:00
27 lines
372 B
TypeScript
27 lines
372 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Promos-A"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Magnemite"
|
|
},
|
|
|
|
illustrator: "Miki Tanaka",
|
|
rarity: "Three Diamond",
|
|
category: "Pokemon",
|
|
types: ["Lightning"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Lightning Ball"
|
|
},
|
|
|
|
cost: ["Lightning"],
|
|
damage: 20
|
|
}]
|
|
}
|
|
|
|
export default card |