import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Crawdaunt", }, illustrator: "Kagemaru Himeno", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 342, ], hp: 80, types: [ "Water", ], evolveFrom: { en: "Corphish", }, stage: "Stage1", attacks: [ { cost: [ "Water", ], name: { en: "Poison Claws", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Rend", }, effect: { en: "If the Defending Pokémon has any damage counters on it, this attack does 30 damage plus 30 more damage.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card