import { Card } from '../../../interfaces' import Set from '../Emerging Powers' const card: Card = { name: { en: "Krokorok", fr: "Escroco", es: "Krokorok", it: "Krokorok", pt: "Krokorok", de: "Rokkaiman" }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 552, ], hp: 90, types: [ "Fighting", ], evolveFrom: { en: "Sandile", fr: "Mascaïman", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Bite", fr: "Morsure", }, damage: 20, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Crunch", fr: "Mâchouille", }, effect: { en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.", }, damage: 40, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 2, } export default card