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: "sm3-87", localId: 87, // Card informations name: { en: "Darkrai", fr: "Darkrai", }, hp: 120, type: [ Type.DARKNESS, ], dexId: 491, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm3/87/low", fr: "https://assets.tcgdex.net/fr/sm/sm3/87/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm3/87/high", fr: "https://assets.tcgdex.net/fr/sm/sm3/87/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Hitoshi Ariga", attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS ], name: { en: "Hypnoblast", fr: "Hypnoblast", }, text: { en: "Your opponent's Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, damage: 30 },{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Dark Raid", fr: "Raid Obscur", }, text: { en: "If your opponent has already used their GX attack, this attack does 80 more damage.", fr: "Si votre adversaire a déjà utilisé son attaque GX, cette attaque inflige 80 dégâts supplémentaires.", }, damage: 80 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Burning Shadows", code: "sm3" } } export default card