import { Card } from '../../../interfaces' import Set from '../Sword & Shield' const card: Card = { name: { en: "Croagunk", fr: "Cradopaud", es: "Croagunk", it: "Croagunk", pt: "Croagunk", de: "Glibunkel" }, illustrator: "otumami", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Stampede", fr: "Ruée", es: "Estampida", it: "Fuggi Fuggi", pt: "Estouro", de: "Zertrampeln" }, damage: 10, }, { cost: [ "Darkness", "Colorless", ], name: { en: "Lunge Out", fr: "Allonger", es: "Arremeter", it: "Affondo Lungo", pt: "Bote", de: "Sprungangriff" }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, description: { en: "It makes frightening noises with its poison-filled cheek sacs. When opponents flinch, Croagunk hits them with a poison jab." } } export default card