import { Card } from '../../../interfaces' import Set from '../POP Series 8' const card: Card = { name: { en: "Croagunk", }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 453, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Ghastly Sound", }, effect: { en: "Flip a coin. If heads, your opponent can’t play any Supporter cards from his or her hand during his or her next turn.", }, }, { cost: [ "Psychic", "Psychic", ], name: { en: "Finger Poke", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "+10" }, ], description: { en: "Its cheeks hold poison sacs. It tries to catch foes off guard to jab them with toxic fingers." }, retreat: 1, variants: { normal: true, reverse: false, holo: true, firstEdition: false } } export default card