diff --git a/code/__DEFINES/diseases.dm b/code/__DEFINES/diseases.dm index fe05a30e0fd83..2d780b36b8000 100644 --- a/code/__DEFINES/diseases.dm +++ b/code/__DEFINES/diseases.dm @@ -37,21 +37,21 @@ DEFINE_BITFIELD(spread_flags, list( //Severity Defines /// Diseases that buff, heal, or at least do nothing at all -#define DISEASE_SEVERITY_POSITIVE "Positive" +#define DISEASE_SEVERITY_POSITIVE "Положительная" /// Diseases that may have annoying effects, but nothing disruptive (sneezing) -#define DISEASE_SEVERITY_NONTHREAT "Harmless" +#define DISEASE_SEVERITY_NONTHREAT "Безопасная" /// Diseases that can annoy in concrete ways (dizziness) -#define DISEASE_SEVERITY_MINOR "Minor" +#define DISEASE_SEVERITY_MINOR "Незначительная" /// Diseases that can do minor harm, or severe annoyance (vomit) -#define DISEASE_SEVERITY_MEDIUM "Medium" +#define DISEASE_SEVERITY_MEDIUM "Средняя" /// Diseases that can do significant harm, or severe disruption (brainrot) -#define DISEASE_SEVERITY_HARMFUL "Harmful" +#define DISEASE_SEVERITY_HARMFUL "Вредоносная" /// Diseases that can kill or maim if left untreated (flesh eating, blindness) -#define DISEASE_SEVERITY_DANGEROUS "Dangerous" +#define DISEASE_SEVERITY_DANGEROUS "Опасная" /// Diseases that can quickly kill an unprepared victim (fungal tb, gbs) -#define DISEASE_SEVERITY_BIOHAZARD "BIOHAZARD" +#define DISEASE_SEVERITY_BIOHAZARD "БИООПАСНОСТЬ" /// Diseases that are uncurable (hms) -#define DISEASE_SEVERITY_UNCURABLE "Uncurable" +#define DISEASE_SEVERITY_UNCURABLE "Неизлечимая" //Severity Guaranteed Cycles or how long before a disease can potentially self-cure /// Positive diseases should not self-cure by themselves, but if they do, they cure fast diff --git a/code/game/machinery/scanner_gate.dm b/code/game/machinery/scanner_gate.dm index 41b84a26ddfb0..fcee45c7d0dbc 100644 --- a/code/game/machinery/scanner_gate.dm +++ b/code/game/machinery/scanner_gate.dm @@ -183,20 +183,20 @@ return if(SCANGATE_WANTED) if(ishuman(thing)) - detected_thing = "Warrant" + detected_thing = "ордер на задержание" var/mob/living/carbon/human/scanned_human = thing var/perpname = scanned_human.get_face_name(scanned_human.get_id_name()) var/datum/record/crew/target = find_record(perpname) if(!target || (target.wanted_status == WANTED_ARREST)) beep = TRUE if(SCANGATE_MINDSHIELD) - detected_thing = "Mindshield" + detected_thing = "имплант защиты разума" if(ishuman(thing)) var/mob/living/carbon/human/scanned_human = thing if(HAS_TRAIT(scanned_human, TRAIT_MINDSHIELD)) beep = TRUE if(SCANGATE_DISEASE) - detected_thing = "[disease_threshold] infection" + detected_thing = "инфекцию уровня «[disease_threshold]»" if(iscarbon(thing)) var/mob/living/carbon/scanned_carbon = thing if(get_disease_severity_value(scanned_carbon.check_virus()) >= get_disease_severity_value(disease_threshold)) @@ -236,11 +236,11 @@ if(is_species(scanned_human, scan_species)) beep = TRUE if(detect_species == SCANGATE_ZOMBIE) //Can detect dormant zombies - detected_thing = "Romerol infection" + detected_thing = "вирус Ромерола" if(scanned_human.get_organ_slot(ORGAN_SLOT_ZOMBIE)) beep = TRUE if(SCANGATE_GUNS) - detected_thing = "Weapons" + detected_thing = "оружие" if(isgun(thing)) beep = TRUE else if(ishuman(thing)) @@ -251,7 +251,7 @@ if((!HAS_TRAIT(scanned_human, TRAIT_MINDSHIELD)) && (isnull(idcard) || !(ACCESS_WEAPONS in idcard.access))) // mindshield or ID card with weapons access, like bartender beep = TRUE break - say("[detected_thing] detection bypassed.") + say("Отмена сканирования на [detected_thing].") break else for(var/obj/item/content in thing.get_all_contents_skipping_traits(TRAIT_CONTRABAND_BLOCKER)) @@ -263,13 +263,13 @@ var/mob/living/carbon/human/scanned_human = thing if(scanned_human.nutrition <= detect_nutrition && detect_nutrition == NUTRITION_LEVEL_STARVING) beep = TRUE - detected_thing = "Starvation" + detected_thing = "голодание" if(scanned_human.nutrition >= detect_nutrition && detect_nutrition == NUTRITION_LEVEL_FAT) beep = TRUE - detected_thing = "Obesity" + detected_thing = "ожирение" if(SCANGATE_CONTRABAND) for(var/obj/item/content in thing.get_all_contents_skipping_traits(TRAIT_CONTRABAND_BLOCKER)) - detected_thing = "Contraband" + detected_thing = "контрабанду" if(content.is_contraband()) beep = TRUE break @@ -304,7 +304,7 @@ return if(detected_thing) - say("[detected_thing][reverse ? " not " : " "]detected!!") + say("Сканирование[reverse ? " не " : " "]обнаружило [detected_thing]!") COOLDOWN_START(src, next_beep, 2 SECONDS) playsound(source = src, soundin = 'sound/machines/scanner/scanbuzz.ogg', vol = 30, vary = FALSE, extrarange = MEDIUM_RANGE_SOUND_EXTRARANGE, falloff_distance = 4)