import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Corphish", }, illustrator: "Hisao Nakamura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 341, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Beat", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Toxic Grip", }, effect: { en: "The Defending Pokémon is now Poisoned.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card