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: "sm2-76", localId: 76, // Card informations name: { en: "Mudsdale", fr: "Bourrinos", }, hp: 140, type: [ Type.FIGHTING, ], dexId: 750, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm2/76/low", fr: "https://assets.tcgdex.net/fr/sm/sm2/76/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm2/76/high", fr: "https://assets.tcgdex.net/fr/sm/sm2/76/high", }, }, evolveFrom: { en: "Mudbray", fr: "Tiboudet", }, tags: [ Tag.STAGE1, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Enhanced Stomp", fr: "Piétinement Amélioré", }, text: { en: "If this Pokémon has a Pokémon Tool card attached to it, this attack does 60 more damage.", fr: "Si une carte Outil Pokémon est attachée à ce Pokémon, cette attaque inflige 60 dégâts supplémentaires.", }, damage: 60 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "High Horsepower", fr: "Cavalerie Lourde", }, text: { en: "This Pokémon does 40 damage to itself.", fr: "Ce Pokémon s’inflige 40 dégâts.", }, damage: 180 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Guardians Rising", code: "sm2" } } export default card