1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00

46 lines
623 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Obsidian Flames"
const card: Card = {
dexId: [530],
set: Set,
name: {
fr: "Minotaupe",
en: "Excadrill",
es: "Excadrill",
it: "Excadrill",
pt: "Excadrill",
de: "Stalobor"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 120,
types: ["Metal"],
stage: "Stage1",
attacks: [{
cost: ["Metal"],
name: {
fr: "Transpercement",
en: "Pierce",
es: "Perforar",
it: "Perforare",
pt: "Perfurar",
de: "Durchbohren"
},
damage: 60
}],
retreat: 2,
regulationMark: "G",
variants: {
holo: false
}
}
export default card