1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 02:59:53 +00:00
2025-05-04 00:37:30 +02:00

60 lines
652 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit (Latios)'
const card: Card = {
dexId: [81],
set: Set,
name: {
en: "Magnemite"
},
illustrator: "Tomokazu Komiya",
rarity: "None",
category: "Pokemon",
stage: "Basic",
hp: 40,
types: [
"Lightning",
],
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Rollout"
},
damage: 10
}, {
cost: [
"Colorless",
"Colorless"
],
name: {
en: "Hook"
},
damage: 20
}],
weaknesses: [
{
type: "Fighting",
value: "2x"
},
],
resistances: [
{
type: "Metal",
value: "-30"
},
],
retreat: 1,
}
export default card