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: "xy6-37", localId: 37, // Card informations name: { en: "Gliscor", fr: "Scorvol", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 472, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy6/37/low", fr: "https://assets.tcgdex.net/fr/xy/xy6/37/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/37/high", fr: "https://assets.tcgdex.net/fr/xy/xy6/37/high", }, }, evolveFrom: { en: "Gligar", fr: "Scorplane", }, tags: [ Tag.STAGE1, ], illustrator: "Hajime Kusajima", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Rock Slide", fr: "Éboulement", }, text: { en: "This attack does 20 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 20 dégâts à 2 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Slash", fr: "Tranche", }, damage: 40 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Roaring Skies", code: "xy6" } } export default card