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-91", localId: 91, // Card informations name: { en: "Garchomp", fr: "Carchacrok", }, hp: 140, type: [ Type.DRAGON, ], dexId: 445, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/91/low", fr: "https://assets.tcgdex.net/fr/bw/bw6/91/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/91/high", fr: "https://assets.tcgdex.net/fr/bw/bw6/91/high", }, }, evolveFrom: { en: "Gabite", fr: "Carmache", }, tags: [ Tag.STAGE2, ], illustrator: "Naoki Saito", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Jet Headbutt", fr: "Bélier Volant", }, damage: 40 },{ cost: [ Type.WATER, Type.FIGHTING, Type.COLORLESS ], name: { en: "Sand Tomb", fr: "Tourbi-Sable", }, text: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.", }, damage: 80 }], weaknesses: [{ type: Type.DRAGON, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card