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-BW37", localId: "BW37", // Card informations name: { en: "Kyurem-EX", fr: "Kyurem ex", }, hp: 180, type: [ Type.WATER, ], dexId: 646, image: { low: { en: "https://assets.tcgdex.net/en/bw/bwp/BW37/low", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW37/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bwp/BW37/high", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW37/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Shizurow", attacks: [{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Frozen Wings", fr: "Ailes Gelées", }, text: { en: "Discard a Special Energy attached to the Defending Pokémon.", fr: "Défaussez une Énergie spéciale attachée au Pokémon Défenseur.", }, damage: 60 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hail Blizzard", fr: "Tempêtegrêle", }, text: { en: "This Pokémon can't use Hail Blizzard during your next turn.", fr: "Ce Pokémon ne peut pas utiliser Tempêtegrêle pendant votre prochain tour.", }, damage: 120 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "BW Black Star Promos", code: "bwp" } } export default card