mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
54 lines
788 B
TypeScript
54 lines
788 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Stellar Crown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Impidimp",
|
|
fr: "Grimalin",
|
|
es: "Impidimp",
|
|
it: "Impidimp",
|
|
pt: "Impidimp",
|
|
de: "Bähmon"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Darkness"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Smack",
|
|
fr: "Claque",
|
|
es: "Palmetazo",
|
|
it: "Schiaffo",
|
|
pt: "Estalo",
|
|
de: "Klatscher"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Darkness", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Claw Slash",
|
|
fr: "Tranch'Griffe",
|
|
es: "Cuchillada Garra",
|
|
it: "Lacerartiglio",
|
|
pt: "Golpe de Garra",
|
|
de: "Klauenschlitzer"
|
|
},
|
|
|
|
damage: 40
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |