import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Krabby", }, illustrator: "Shin-ichi Yoshida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 98, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Grass", "Grass", ], name: { en: "Crabhammer", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card