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: "bwp-BW58", localId: "BW58", // Card informations name: { en: "Black Kyurem", fr: "Kyurem Noir", }, hp: 130, type: [ Type.DRAGON, ], dexId: 646, image: { low: { en: "https://assets.tcgdex.net/en/bw/bwp/BW58/low", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW58/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bwp/BW58/high", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW58/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Dual Claw", fr: "Paire de Griffes", }, text: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.", }, damage: 20 },{ cost: [ Type.WATER, Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Flash Freeze", fr: "Tonnerre de Glace", }, text: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 100 }], weaknesses: [{ type: Type.DRAGON, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "BW Black Star Promos", code: "bwp" } } export default card