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: "bw6-84", localId: 84, // Card informations name: { en: "Altaria", fr: "Altaria", }, hp: 70, type: [ Type.DRAGON, ], dexId: 334, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/84/low", fr: "https://assets.tcgdex.net/fr/bw/bw6/84/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/84/high", fr: "https://assets.tcgdex.net/fr/bw/bw6/84/high", }, }, evolveFrom: { en: "Swablu", fr: "Tylton", }, tags: [ Tag.STAGE1, ], illustrator: "HiRON", abilities: [{ id: 154, type: AbilityType.TALENT, name: { en: "Fight Song", fr: "Hymne au Combat", }, text: { en: "Your Dragon Pokémon's attacks do 20 more damage to the Active Pokémon (before applying Weakness and Resistance).", fr: "Les attaques de vos Pokémon Dragon infligent 20 dégâts supplémentaires aux Pokémon Actifs (avant application de la Faiblesse et de la Résistance).", } }], attacks: [{ cost: [ Type.WATER, Type.METAL, Type.COLORLESS ], name: { en: "Glide", fr: "Glissement", }, damage: 40 }], weaknesses: [{ type: Type.DRAGON, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card