From 36b919ddb2eb7102d635017797167b5c8abd4000 Mon Sep 17 00:00:00 2001 From: Anorak2020 <145682013+Anorak2024@users.noreply.github.com> Date: Tue, 17 Dec 2024 12:20:28 +0300 Subject: [PATCH 1/5] Update code/modules/anomalies/anomaly_generator.dm Co-authored-by: PlayerUnknown14 <139672964+PlayerUnknown14@users.noreply.github.com> --- code/modules/anomalies/anomaly_generator.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/anomalies/anomaly_generator.dm b/code/modules/anomalies/anomaly_generator.dm index dc07f493ae2..e1c6952acf5 100644 --- a/code/modules/anomalies/anomaly_generator.dm +++ b/code/modules/anomalies/anomaly_generator.dm @@ -127,8 +127,8 @@ if(user.drop_transfer_item_to_loc(I, src)) add_fingerprint(user) - user.visible_message(span_warning("[user] поместил[genderize_ru(user.gender, "", "а", "о", "и")] [I] в [src]."), \ - span_warning("Вы поместили [I] в [src].")) + user.visible_message(span_warning("[user] поместил[genderize_ru(user.gender, "", "а", "о", "и")] [I.declent_ru(ACCUSATIVE)] в [declent_ru(ACCUSATIVE)]."), \ + span_warning("Вы поместили [I.declent_ru(ACCUSATIVE)] в [declent_ru(ACCUSATIVE)].")) containment.Add(I) return ATTACK_CHAIN_PROCEED_SUCCESS From b3697c53dfe2f4bd90eb342074a47b40cab25eee Mon Sep 17 00:00:00 2001 From: Anorak2020 <145682013+Anorak2024@users.noreply.github.com> Date: Tue, 17 Dec 2024 12:21:18 +0300 Subject: [PATCH 2/5] Update code/modules/anomalies/anomaly_generator.dm Co-authored-by: PlayerUnknown14 <139672964+PlayerUnknown14@users.noreply.github.com> --- code/modules/anomalies/anomaly_generator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/anomalies/anomaly_generator.dm b/code/modules/anomalies/anomaly_generator.dm index e1c6952acf5..f66a8b5d1e2 100644 --- a/code/modules/anomalies/anomaly_generator.dm +++ b/code/modules/anomalies/anomaly_generator.dm @@ -189,7 +189,7 @@ options["[T.loc.name]"] = R - var/choice = tgui_input_list(ui.user, "Выберите маячок, на котором будет создована аномалия.", "Выбор маячка", options) + var/choice = tgui_input_list(ui.user, "Выберите маячок для создания аномалии.", "Выбор маячка", options) selected_beacon = choice else From 96f778a67f91dc404001260974420bca3d119848 Mon Sep 17 00:00:00 2001 From: Anorak2020 <145682013+Anorak2024@users.noreply.github.com> Date: Tue, 17 Dec 2024 12:21:55 +0300 Subject: [PATCH 3/5] Update code/modules/anomalies/anomaly_generator.dm Co-authored-by: PlayerUnknown14 <139672964+PlayerUnknown14@users.noreply.github.com> --- code/modules/anomalies/anomaly_generator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/anomalies/anomaly_generator.dm b/code/modules/anomalies/anomaly_generator.dm index f66a8b5d1e2..805ed714735 100644 --- a/code/modules/anomalies/anomaly_generator.dm +++ b/code/modules/anomalies/anomaly_generator.dm @@ -213,7 +213,7 @@ /obj/machinery/power/anomaly_generator/ui_interact(mob/user, datum/tgui/ui = null) ui = SStgui.try_update_ui(user, src, ui) if(!ui) - ui = new(user, src, "AnomalyGenerator", name) + ui = new(user, src, "AnomalyGenerator", "Генератор аномалий") ui.open() /obj/machinery/power/anomaly_generator/ui_data(mob/user) From 4e403afc1d8982b26fa706a3c1170b2f7561eaa3 Mon Sep 17 00:00:00 2001 From: Anorak2020 <145682013+Anorak2024@users.noreply.github.com> Date: Tue, 17 Dec 2024 12:22:38 +0300 Subject: [PATCH 4/5] Update code/modules/anomalies/anomaly_generator.dm Co-authored-by: PlayerUnknown14 <139672964+PlayerUnknown14@users.noreply.github.com> --- code/modules/anomalies/anomaly_generator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/anomalies/anomaly_generator.dm b/code/modules/anomalies/anomaly_generator.dm index 805ed714735..74f8f08c9e5 100644 --- a/code/modules/anomalies/anomaly_generator.dm +++ b/code/modules/anomalies/anomaly_generator.dm @@ -288,7 +288,7 @@ atom_say("Недостаточно ресурсов!") return - atom_say("Сбор энергии начался. Текущая цель: [anomaly.anomaly_type] аномалия.") + atom_say("Сбор энергии начался. Текущая цель: [anomaly.declent_ru(NOMINATIVE)].") cur_anomaly = anomaly START_PROCESSING(SSprocessing, src) From 3235be4a7d1318e22e6eb1d2a677f3e4e83fb1d1 Mon Sep 17 00:00:00 2001 From: Anorak2020 <145682013+Anorak2024@users.noreply.github.com> Date: Tue, 17 Dec 2024 12:25:25 +0300 Subject: [PATCH 5/5] Update code/modules/anomalies/anomaly_stabilizer.dm Co-authored-by: PlayerUnknown14 <139672964+PlayerUnknown14@users.noreply.github.com> --- code/modules/anomalies/anomaly_stabilizer.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/anomalies/anomaly_stabilizer.dm b/code/modules/anomalies/anomaly_stabilizer.dm index be734380bd7..ca49b515dad 100644 --- a/code/modules/anomalies/anomaly_stabilizer.dm +++ b/code/modules/anomalies/anomaly_stabilizer.dm @@ -8,9 +8,8 @@ INSTRUMENTAL = "стабилизатором аномалий", \ PREPOSITIONAL = "стабилизаторе аномалий" ) - desc = "Продвинутое устройство предназначенное для стабилизации аномалий. \ - Можно вставить до двух любых не пустых ядер аномалий, для улучшения, \ - в зависимости от типа и уровня ядер." + desc = "Продвинутое устройство, предназначенное для стабилизации аномалий. \ + Имеет два слота для ядер аномалий." icon = 'icons/obj/anomaly/anomaly_stuff.dmi' icon_state = "pistol_base_item" lefthand_file = 'icons/obj/anomaly/anomaly_inhand_l.dmi'