import { Card } from '../../../interfaces' import Set from '../Sword & Shield' const card: Card = { name: { en: "Salandit", fr: "Tritox", es: "Salandit", it: "Salandit", pt: "Salandit", de: "Molunk" }, illustrator: "SATOSHI NAKAI", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 757, ], hp: 70, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", ], name: { en: "Smog", fr: "Purédpois", es: "Polución", it: "Smog", pt: "Nevoeiro de Fumaça", de: "Smog" }, effect: { en: "Your opponent’s Active Pokémon is now Poisoned.", fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.", es: "El Pokémon Activo de tu rival pasa a estar Envenenado.", it: "Il Pokémon attivo del tuo avversario viene avvelenato.", pt: "O Pokémon Ativo do seu oponente agora está Envenenado.", de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet." }, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 1, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, description: { en: "Its venom sacs produce a fluid that this Pokémon then heats up with the flame in its tail. This process creates Salandit’s poisonous gas." } } export default card