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-82", localId: 82, // Card informations name: { en: "Excadrill-EX", }, hp: 180, type: [ Type.FIGHTING, ], dexId: 530, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/82/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/82/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Ryo Ueda", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Dig Out", }, text: { en: "Discard the top card of your deck. If that card is a basic Energy card, attach it to 1 of your Pokémon.", }, damage: 40 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Break Ground", }, text: { en: "Does 10 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 120 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-20" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card