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: "bw9-98", localId: 98, // Card informations name: { en: "Tornadus-EX", fr: "Boréas-EX", }, hp: 180, type: [ Type.COLORLESS, ], dexId: 641, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw9/98/low", fr: "https://assets.tcgdex.net/fr/bw/bw9/98/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw9/98/high", fr: "https://assets.tcgdex.net/fr/bw/bw9/98/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Eske Yoshinob", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Windfall", fr: "Rafale de Vent", }, text: { en: "Shuffle your hand into your deck. Then, draw 6 cards.", fr: "Mélangez votre main avec votre deck. Ensuite, piochez 6 cartes.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Jet Blast", fr: "Rafale d'Explosions", }, text: { en: "Does 30 more damage for each Plasma Energy attached to this Pokémon.", fr: "Inflige 30 dégâts supplémentaires pour chaque Énergie Plasma attachée à ce Pokémon.", }, damage: 60 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Plasma Freeze", code: "bw9" } } export default card