import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Impidimp", fr: "Grimalin" }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Darkness", ], name: { en: "Beat", fr: "Bataille" }, damage: 10, }, { cost: [ "Darkness", "Colorless", ], name: { en: "Stampede", fr: "Ruée" }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, hp: 70, types: ["Darkness"], regulationMark: "D" } export default card