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: "sm9-118", localId: 118, // Card informations name: { en: "Dragonair", fr: "Draco", }, hp: 90, type: [ Type.DRAGON, ], dexId: 148, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm9/118/low", fr: "https://assets.tcgdex.net/fr/sm/sm9/118/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm9/118/high", fr: "https://assets.tcgdex.net/fr/sm/sm9/118/high", }, }, evolveFrom: { en: "Dratini", fr: "Minidraco", }, tags: [ Tag.STAGE1, ], illustrator: "kirisAki", attacks: [{ cost: [ Type.WATER, Type.LIGHTNING ], name: { en: "Twister", fr: "Ouragan", }, text: { en: "Flip 2 coins. For each heads, discard an Energy from your opponent's Active Pokémon. If both of them are tails, this attack does nothing.", fr: "Lancez 2 pièces. Pour chaque côté face, défaussez une Énergie du Pokémon Actif de votre adversaire. Si vous obtenez 2 côtés pile, cette attaque ne fait rien.", }, damage: 30 }], weaknesses: [{ type: Type.FAIRY, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Up", code: "sm9" } } export default card