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: "sm75-47", localId: 47, // Card informations name: { en: "Kyurem", fr: "Kyurem", }, hp: 130, type: [ Type.DRAGON, ], dexId: 646, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm75/47/low", fr: "https://assets.tcgdex.net/fr/sm/sm75/47/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm75/47/high", fr: "https://assets.tcgdex.net/fr/sm/sm75/47/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "TOKIYA", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Outrage", fr: "Colère", }, text: { en: "This attack does 10 more damage for each damage counter on this Pokémon.", fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur ce Pokémon.", }, damage: 20 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Frost Spear", fr: "Lance de Givre", }, text: { en: "This attack does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 20 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 100 }], weaknesses: [{ type: Type.FAIRY, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Dragon Majesty", code: "sm75" } } export default card