mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
59 lines
820 B
TypeScript
59 lines
820 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
dexId: [81],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Magnéti",
|
|
en: "Magnemite",
|
|
es: "Magnemite",
|
|
it: "Magnemite",
|
|
pt: "Magnemite",
|
|
de: "Magnetilo"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Lightning"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Lightning"],
|
|
|
|
name: {
|
|
fr: "Collision",
|
|
en: "Ram",
|
|
es: "Apisonar",
|
|
it: "Carica",
|
|
pt: "Aríete",
|
|
de: "Ramme"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Balle Rapide",
|
|
en: "Speed Ball",
|
|
es: "Bola Rápida",
|
|
it: "Velocipalla",
|
|
pt: "Bola Veloz",
|
|
de: "Geschwindigkeitsball"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |