import { Card } from '../../../interfaces' import Set from '../Supreme Victors' const card: Card = { name: { en: "Croagunk", fr: "Cradopaud", }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 453, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Hook", fr: "Crochet", }, damage: 10, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Corkscrew Punch", fr: "Poing en tire-bouchon", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "+10" }, ], retreat: 1, } export default card