From 652c3d5b52a3b599738e057879fbc3ceef71f2c4 Mon Sep 17 00:00:00 2001 From: Aylong <69762909+Aylong220@users.noreply.github.com> Date: Wed, 18 Oct 2023 21:31:12 +0300 Subject: [PATCH] Translate: Skeleton stand-up (#481) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Что этот PR делает Возвращает шутки скелета когда тот выпил молоко. И повышает шанс фраз до 20%. Было 3% ## Почему это хорошо для игры Ощущаешь мою ловКость? ## Изображения изменений ## Тестирование Нет ## Changelog :cl: tweak: Вы замечали что мы все в одной плосКости? /:cl: --------- Co-authored-by: Furior <68264134+Furrior@users.noreply.github.com> Co-authored-by: Gaxeer <44334376+Gaxeer@users.noreply.github.com> --- .../mob/living/carbon/human/species/skeleton_species.dm | 4 ++-- modular_ss220/discord_link/code/discord.dm | 9 +++++---- modular_ss220/title_screen/code/new_player.dm | 1 + 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/skeleton_species.dm b/code/modules/mob/living/carbon/human/species/skeleton_species.dm index 699c2fc33914..d90392fec17f 100644 --- a/code/modules/mob/living/carbon/human/species/skeleton_species.dm +++ b/code/modules/mob/living/carbon/human/species/skeleton_species.dm @@ -48,8 +48,8 @@ for(var/obj/item/organ/external/L in our_organs) if(L.mend_fracture()) break // We're only checking one limb here, bucko - if(prob(3)) - H.say(pick("Thanks Mr. Skeltal", "Thank for strong bones", "Doot doot!")) + if(prob(10)) // SS220 EDIT: ORIGINAL - 3% + H.say(pick("Спасибо Мистеру Скелтал!", "От такого молока челюсть отвисает!", "Я вижу четКость своих решений!", "Надо не забыть пересчитать косточки...", "Маленькие скелеты паКостят!", "Хорошо что у меня язык без костей!", "Теперь я не буду ЧЕРЕПашкой!", "Теперь мне не нужны костыли!", "Костян плохого не посоветует!", "Ощущаешь мою ловКость?", "Я чувствую такую лёгКость!", "Большая редКость найти любимую жидКость!", "Моя любимая жидКость!", "Аж закостенел!", "Теперь я вешу скелетонну!", "Спасибо за крепкие кости!", "Ду-ду!", "Вы замечали что мы все в одной плосКости?")) return TRUE return ..() diff --git a/modular_ss220/discord_link/code/discord.dm b/modular_ss220/discord_link/code/discord.dm index 10d9bf464ff4..4260812fb712 100644 --- a/modular_ss220/discord_link/code/discord.dm +++ b/modular_ss220/discord_link/code/discord.dm @@ -51,10 +51,11 @@ return if(href_list["observe"] || href_list["ready"] || href_list["late_join"]) - if (GLOB.configuration.database.enabled && GLOB.configuration.ss220_misc.force_discord_verification && !(client.prefs.discord_id || client.prefs.get_discord_id())) - to_chat(usr, span_danger("Вам необходимо привязать дискорд-профиль к аккаунту!")) - to_chat(usr, span_warning("Нажмите 'Привязка Discord' во вкладке 'Special Verbs' для получения инструкций.")) - return FALSE + if (GLOB.configuration.database.enabled && GLOB.configuration.ss220_misc.force_discord_verification) + if(!client.prefs.discord_id || !(client.prefs.get_discord_id() && client.prefs.discord_id)) + to_chat(usr, span_danger("Вам необходимо привязать дискорд-профиль к аккаунту!")) + to_chat(usr, span_warning("Нажмите 'Привязка Discord' во вкладке 'Special Verbs' для получения инструкций.")) + return FALSE . = ..() diff --git a/modular_ss220/title_screen/code/new_player.dm b/modular_ss220/title_screen/code/new_player.dm index e4ffc8bf7dd5..aeff79c5ae94 100644 --- a/modular_ss220/title_screen/code/new_player.dm +++ b/modular_ss220/title_screen/code/new_player.dm @@ -11,3 +11,4 @@ GLOBAL_LIST_EMPTY(new_player_list) /mob/new_player/Login() . = ..() + show_title_screen()