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: "bw1-64", localId: 64, // Card informations name: { en: "Krokorok", fr: "Escroco", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 552, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw1/64/low", fr: "https://assets.tcgdex.net/fr/bw/bw1/64/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw1/64/high", fr: "https://assets.tcgdex.net/fr/bw/bw1/64/high", }, }, evolveFrom: { en: "Sandile", fr: "Mascaïman", }, tags: [ Tag.STAGE1, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Torment", fr: "Tourmente", }, text: { en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.", fr: "Choisissez 1 des attaques du Pokémon Défenseur. Le Pokémon Défenseur ne pourra pas l'utiliser lors du prochain tour de votre adversaire.", }, damage: 10 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Bite", fr: "Morsure", }, damage: 50 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-20" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Black & White", code: "bw1" } } export default card