1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-03 12:29:54 +00:00

44 lines
638 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Magneton"
},
illustrator: "Yumi",
rarity: "Two Diamond",
category: "Pokemon",
hp: 80,
types: ["Lightning"],
evolveFrom: {
en: "Magnemite"
},
description: {
en: "Three Magnemite are linked by a strong magnetic<br />force. Earaches will occur if you get too close."
},
stage: "Stage1",
attacks: [{
name: {
en: "Lightning Ball"
},
damage: 50,
cost: ["Lightning", "Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card