Skip to content

Commit

Permalink
Merge branch 'anomalies' of https://github.com/Anorak2024/Paradise in…
Browse files Browse the repository at this point in the history
…to anomalies
  • Loading branch information
Anorak2024 committed Dec 17, 2024
2 parents ebcdbdf + 3235be4 commit 5f3796b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
10 changes: 5 additions & 5 deletions code/modules/anomalies/anomaly_generator.dm
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,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

Expand Down Expand Up @@ -191,7 +191,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
Expand All @@ -215,7 +215,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)
Expand Down Expand Up @@ -290,7 +290,7 @@
atom_say("Недостаточно ресурсов!")
return

atom_say("Сбор энергии начался. Текущая цель: [anomaly.anomaly_type] аномалия.")
atom_say("Сбор энергии начался. Текущая цель: [anomaly.declent_ru(NOMINATIVE)].")

Check failure on line 293 in code/modules/anomalies/anomaly_generator.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined proc: "declent_ru" on /datum/anomaly_gen_datum
cur_anomaly = anomaly
START_PROCESSING(SSprocessing, src)

Expand Down
5 changes: 2 additions & 3 deletions code/modules/anomalies/anomaly_stabilizer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 5f3796b

Please sign in to comment.