import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "xy6-56", localId: 56, // Card informations name: { en: "Shelgon", fr: "Drackhaus", }, hp: 80, type: [ Type.DRAGON, ], dexId: 372, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy6/56/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/56/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/56/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/56/high.png", }, }, evolveFrom: { en: "Bagon", fr: "Draby", }, tags: [ Tag.STAGE1, ], illustrator: { id: 24, name: "sui" }, abilities: [{ id: 276, type: AbilityType.TALENT, name: { en: "Exoskeleton", fr: "Exosquelette", }, text: { en: "Any damage done to this Pokémon by attacks is reduced by 10 (after applying Weakness and Resistance).", fr: "Tous les dégâts infligés à ce Pokémon par des attaques sont réduits de 10 (après application de la Faiblesse et de la Résistance).", } }], attacks: [{ cost: [ Type.FIRE, Type.WATER, Type.COLORLESS ], name: { en: "Rolling Tackle", fr: "Roulé-Boulé", }, damage: 60 }], weaknesses: [{ type: Type.FAIRY, value: "×2" }], retreat: 3, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Roaring Skies", code: "xy6" } } export default card