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: "bw11-96", localId: 96, // Card informations name: { en: "Garchomp", }, hp: 140, type: [ Type.DRAGON, ], dexId: 445, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/96/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/96/high", }, }, evolveFrom: { en: "Gabite", }, tags: [ Tag.STAGE2, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Mach Cut", }, text: { en: "Discard a Special Energy attached to the Defending Pokémon.", }, damage: 60 },{ cost: [ Type.WATER, Type.FIGHTING ], name: { en: "Dragonblade", }, text: { en: "Discard the top 2 cards of your deck.", }, damage: 100 }], weaknesses: [{ type: Type.DRAGON, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card