1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Promos-A/024.ts

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