import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Trapinch", fr: "Kraknoix", }, illustrator: "Suwama Chiaki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 328, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Gnaw", fr: "Ronge", }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Mud-Slap", fr: "Coud'Boue", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card