import { Card } from '../../../interfaces' import Set from '../Unified Minds' const card: Card = { name: { en: "Salandit", fr: "Tritox", es: "Salandit", it: "Salandit", pt: "Salandit", de: "Molunk" }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 757, ], hp: 70, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Suffocating Gas", fr: "Gaz Suffocant", es: "Gas Sofocante", it: "Gas Soffocante", pt: "Gás Asfixiante", de: "Würgegas" }, damage: 10, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Gnaw", fr: "Ronge", es: "Roer", it: "Rosicchiamento", pt: "Roída", de: "Nagen" }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card