1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 18:47:50 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

41 lines
576 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Obsidian Flames"
const card: Card = {
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"
}
export default card