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