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: "bw2-56", localId: 56, // Card informations name: { en: "Excadrill", fr: "Minotaupe", }, hp: 110, type: [ Type.FIGHTING, ], dexId: 530, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw2/56/low", fr: "https://assets.tcgdex.net/fr/bw/bw2/56/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw2/56/high", fr: "https://assets.tcgdex.net/fr/bw/bw2/56/high", }, }, evolveFrom: { en: "Drilbur", fr: "Rototaupe", }, tags: [ Tag.STAGE1, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Metal Claw", fr: "Griffe Acier", }, damage: 30 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.FIGHTING ], name: { en: "Drill Run", fr: "Tunnelier", }, text: { en: "Discard an Energy attached to the Defending Pokémon.", fr: "Défaussez une Énergie attachée au Pokémon Défenseur.", }, damage: 80 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-20" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Emerging Powers", code: "bw2" } } export default card