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: "sm4-88", localId: 88, // Card informations name: { en: "Diggersby", fr: "Excavarenne", }, hp: 130, type: [ Type.COLORLESS, ], dexId: 660, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm4/88/low", fr: "https://assets.tcgdex.net/fr/sm/sm4/88/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm4/88/high", fr: "https://assets.tcgdex.net/fr/sm/sm4/88/high", }, }, evolveFrom: { en: "Bunnelby", fr: "Sapereau", }, tags: [ Tag.STAGE1, ], illustrator: "Anesaki Dynamic", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Dig", fr: "Tunnel", }, text: { en: "Flip a coin. If heads, prevent all effects of attacks, including damage, done to this Pokémon during your opponent's next turn.", fr: "Lancez une pièce. Si c’est face, évitez tous les effets d’attaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire.", }, damage: 60 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hammer Arm", fr: "Marto-Poing", }, text: { en: "Discard the top card of your opponent's deck.", fr: "Défaussez la carte du dessus du deck de votre adversaire.", }, damage: 90 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 3, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Crimson Invasion", code: "sm4" } } export default card