import { Card } from '../../../interfaces' import Set from '../Plasma Freeze' const card: Card = { name: { en: "Krokorok", fr: "Escroco", }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 552, ], hp: 90, types: [ "Darkness", ], evolveFrom: { en: "Sandile", fr: "Mascaïman", }, stage: "Stage1", attacks: [ { cost: [ "Darkness", ], name: { en: "Bite", fr: "Morsure", }, damage: 20, }, { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "Corkscrew Punch", fr: "Poing Tire-Bouchon", }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 2, } export default card