import { Card } from '../../../interfaces' import Set from '../Majestic Dawn' const card: Card = { name: { en: "Croagunk", fr: "Cradopaud", }, illustrator: "Kent Kanetsuna", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 453, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Light Punch", fr: "Poing léger", }, damage: 10, }, { cost: [ "Psychic", ], name: { en: "Poison Sting", fr: "Dard-venin", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Empoisonné.", }, }, ], weaknesses: [ { type: "Psychic", value: "+10" }, ], retreat: 1, } export default card