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: "sm10-31", localId: 31, // Card informations name: { en: "Salazzle", fr: "Malamandre", }, hp: 100, type: [ Type.FIRE, ], dexId: 758, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/31/low", fr: "https://assets.tcgdex.net/fr/sm/sm10/31/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/31/high", fr: "https://assets.tcgdex.net/fr/sm/sm10/31/high", }, }, evolveFrom: { en: "Salandit", fr: "Tritox", }, tags: [ Tag.STAGE1, ], illustrator: "hatachu", abilities: [{ id: 403, type: AbilityType.TALENT, name: { en: "Roast Reveal", fr: "Rôtir", }, text: { en: "Once during your turn (before your attack), you may discard a Fire Energy card from your hand. If you do, draw 3 cards.", fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser une carte Énergie Fire de votre main. Dans ce cas, piochez 3 cartes.", } }], attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Combustion", fr: "Fournaise", }, damage: 60 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card