import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "sm3-151", localId: 151, // Card informations name: { en: "Salazzle-GX", fr: "Malamandre-GX", }, hp: 200, type: [ Type.FIRE, ], dexId: 758, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm3/151/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm3/151/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm3/151/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm3/151/high.png", }, }, evolveFrom: { en: "Salandit", fr: "Tritox", }, tags: [ Tag.GX, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.FIRE, Type.FIRE ], name: { en: "Diabolical Claws", fr: "Griffes Diaboliques", }, text: { en: "This attack does 50 damage for each Prize card you have taken.", fr: "Cette attaque inflige 50 dégâts pour chaque carte Récompense que vous avez récupérée.", }, damage: 50 },{ cost: [ Type.FIRE, Type.FIRE ], name: { en: "Heat Blast", fr: "Explosion de Chaleur", }, damage: 110 },{ cost: [ Type.FIRE, Type.FIRE ], name: { en: "Queen's Haze-GX", fr: "Brume de Reine-GX", }, text: { en: "Discard all Energy from your opponent's Active Pokémon. (You can't use more than 1 GX attack in a game.)", fr: "Défaussez toute l’Énergie du Pokémon Actif de votre adversaire. (Vous ne pouvez utiliser qu’une attaque GX par partie.)", }, }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Burning Shadows", code: "sm3" } } export default card