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: "sm11-159", localId: 159, // Card informations name: { en: "Noivern", fr: "Bruyverne", }, hp: 120, type: [ Type.DRAGON, ], dexId: 715, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm11/159/low", fr: "https://assets.tcgdex.net/fr/sm/sm11/159/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm11/159/high", fr: "https://assets.tcgdex.net/fr/sm/sm11/159/high", }, }, evolveFrom: { en: "Noibat", fr: "Sonistrelle", }, tags: [ Tag.STAGE1, ], illustrator: "Shin Nagasawa", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Boomburst", fr: "Bang Sonique", }, text: { en: "This attack does 20 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 20 dégâts à chacun des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, },{ cost: [ Type.PSYCHIC, Type.DARKNESS, Type.COLORLESS ], name: { en: "Dragon Pulse", fr: "Dracochoc", }, text: { en: "Discard the top card of your deck.", fr: "Défaussez la carte du dessus de votre deck.", }, damage: 120 }], weaknesses: [{ type: Type.FAIRY, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unified Minds", code: "sm11" } } export default card