import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "bw2-61", localId: 61, // Card informations name: { en: "Krokorok", fr: "Escroco", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 552, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw2/61/low", fr: "https://assets.tcgdex.net/fr/bw/bw2/61/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw2/61/high", fr: "https://assets.tcgdex.net/fr/bw/bw2/61/high", }, }, evolveFrom: { en: "Sandile", fr: "Mascaïman", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Bite", fr: "Morsure", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Crunch", fr: "Mâchouille", }, text: { 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: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Emerging Powers", code: "bw2" } } export default card