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-88", localId: 88, // Card informations name: { en: "Gabite", fr: "Carmache", }, hp: 80, type: [ Type.DRAGON, ], dexId: 444, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/88/low", fr: "https://assets.tcgdex.net/fr/bw/bw6/88/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/88/high", fr: "https://assets.tcgdex.net/fr/bw/bw6/88/high", }, }, evolveFrom: { en: "Gible", fr: "Griknot", }, tags: [ Tag.STAGE1, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Tackle", fr: "Charge", }, damage: 20 },{ cost: [ Type.WATER, Type.FIGHTING ], name: { en: "Shred", fr: "Déchiquetage", }, text: { en: "This attack's damage isn't affected by any effects on the Defending Pokémon.", fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Défenseur.", }, damage: 40 }], weaknesses: [{ type: Type.DRAGON, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card