From ee5956319a050c5be28c45b7397062c8f8b33e35 Mon Sep 17 00:00:00 2001 From: IAmLePacko Date: Tue, 5 Nov 2024 15:16:38 +0600 Subject: [PATCH 1/3] =?UTF-8?q?=D0=A7=D1=83=D1=82=D1=8C-=D1=87=D1=83=D1=82?= =?UTF-8?q?=D1=8C=20=D0=B1=D0=B0=D0=BB=D0=B0=D0=BD=D1=81=D0=B0=20=D0=BF?= =?UTF-8?q?=D0=B5=D1=80=D0=BA=D0=BE=D0=B2=20=D0=B8=20=D0=BC=D0=B5=D0=B4?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D0=BD=D1=8B=D0=B9=20=D0=B5=D0=B4=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Resources/Locale/en-US/traits/traits.ftl | 5 +++++ Resources/Locale/ru-RU/traits/traits.ftl | 4 ++++ Resources/Prototypes/Traits/disabilities.yml | 19 +++++++++++++++++++ Resources/Prototypes/Traits/skills.yml | 7 +++---- 4 files changed, 31 insertions(+), 4 deletions(-) diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl index 1c16a944216..2324c48df06 100644 --- a/Resources/Locale/en-US/traits/traits.ftl +++ b/Resources/Locale/en-US/traits/traits.ftl @@ -181,6 +181,11 @@ trait-description-Voracious = Nothing gets between you and your food. Your endless consumption of food and drinks is twice as fast. +trait-name-SlowEater = Slow Eater +trait-description-SlowEater = + By any means, whether it is your own way of eating or drinking or you just simply can't eat to fast of injuries, you eat and drink anything slower. + You consume food and ndrinks twice as slower than any other normal breathing humanoid. + trait-name-ParkourTraining = Parkour Training trait-description-ParkourTraining = Whether as a hobby, lifestyle, or professional training, you are trained in the discipline of parkour. diff --git a/Resources/Locale/ru-RU/traits/traits.ftl b/Resources/Locale/ru-RU/traits/traits.ftl index e3815ced874..dfbf2944b12 100644 --- a/Resources/Locale/ru-RU/traits/traits.ftl +++ b/Resources/Locale/ru-RU/traits/traits.ftl @@ -139,6 +139,10 @@ trait-name-Voracious = Прожорливый trait-description-Voracious = Ничто не встанет между вами и вашей едой. Вы будете потреблять еду и напитки в два раза быстрее, чем обычно. +trait-name-SlowEater = Медленный едок +trait-description-SlowEater = + Будь то врождённая проблема со здровьем, дисфункция ротовых органов и мышц или даже ваш сосбвтенный способ наслаждения пищей, вы едите медленнее, чем остальные + Вы потребляете еду и напитки в два раза медленее, чем обычно. trait-name-ParkourTraining = Тренировка по паркуру trait-description-ParkourTraining = Паркур - это ваше хобби, стиль жизни или профессиональная тренировка. diff --git a/Resources/Prototypes/Traits/disabilities.yml b/Resources/Prototypes/Traits/disabilities.yml index 289790b1494..76d322f4753 100644 --- a/Resources/Prototypes/Traits/disabilities.yml +++ b/Resources/Prototypes/Traits/disabilities.yml @@ -49,6 +49,25 @@ sounds: collection: Paracusia +- type: trait + id: SlowEater + category: Physical + points: 1 + components: + - type: ConsumeDelayModifier + foodDelayMultiplier: 1.6 + drinkDelayMultiplier: 1.6 + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - IPC + - !type:CharacterJobRequirement + inverted: true + jobs: + - Borg + - MedicalBorg + - type: trait id: Muted category: Mental diff --git a/Resources/Prototypes/Traits/skills.yml b/Resources/Prototypes/Traits/skills.yml index 99ca0ed8758..18308aa8cbb 100644 --- a/Resources/Prototypes/Traits/skills.yml +++ b/Resources/Prototypes/Traits/skills.yml @@ -91,7 +91,7 @@ ignoreStripHidden: true stealth: Subtle stripTimeReduction: 0 - stripTimeMultiplier: 0.7 + stripTimeMultiplier: 0.6 requirements: - !type:CharacterSpeciesRequirement inverted: true @@ -109,13 +109,12 @@ points: -2 components: - type: ConsumeDelayModifier - foodDelayMultiplier: 0.4 - drinkDelayMultiplier: 0.4 + foodDelayMultiplier: 0.5 + drinkDelayMultiplier: 0.5 requirements: - !type:CharacterSpeciesRequirement inverted: true species: - - Vulpkanin - IPC - !type:CharacterJobRequirement inverted: true From 192abc629e36da045e6af48e6a6f991f8bb7d4c8 Mon Sep 17 00:00:00 2001 From: IAmLePacko Date: Tue, 5 Nov 2024 15:31:35 +0600 Subject: [PATCH 2/3] Update traits.ftl --- Resources/Locale/en-US/traits/traits.ftl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl index 2324c48df06..ac24fa27fe5 100644 --- a/Resources/Locale/en-US/traits/traits.ftl +++ b/Resources/Locale/en-US/traits/traits.ftl @@ -183,8 +183,8 @@ trait-description-Voracious = trait-name-SlowEater = Slow Eater trait-description-SlowEater = - By any means, whether it is your own way of eating or drinking or you just simply can't eat to fast of injuries, you eat and drink anything slower. - You consume food and ndrinks twice as slower than any other normal breathing humanoid. + Whether due to personal habits or physical limitations, you take your time with meals. + You consume food and drinks at half the normal speed. trait-name-ParkourTraining = Parkour Training trait-description-ParkourTraining = From 4298b63e04503b7af7a74458204edcb96c86031d Mon Sep 17 00:00:00 2001 From: IAmLePacko Date: Tue, 5 Nov 2024 15:32:21 +0600 Subject: [PATCH 3/3] Update traits.ftl --- Resources/Locale/ru-RU/traits/traits.ftl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Locale/ru-RU/traits/traits.ftl b/Resources/Locale/ru-RU/traits/traits.ftl index dfbf2944b12..f78f5743729 100644 --- a/Resources/Locale/ru-RU/traits/traits.ftl +++ b/Resources/Locale/ru-RU/traits/traits.ftl @@ -141,8 +141,8 @@ trait-description-Voracious = Вы будете потреблять еду и напитки в два раза быстрее, чем обычно. trait-name-SlowEater = Медленный едок trait-description-SlowEater = - Будь то врождённая проблема со здровьем, дисфункция ротовых органов и мышц или даже ваш сосбвтенный способ наслаждения пищей, вы едите медленнее, чем остальные - Вы потребляете еду и напитки в два раза медленее, чем обычно. + Будь то врождённая проблема со здоровьем, дисфункция ротовых органов и мышц или даже ваш собственный способ наслаждения пищей, вы едите медленнее, чем остальные. + Вы потребляете еду и напитки в два раза медленнее, чем обычно. trait-name-ParkourTraining = Тренировка по паркуру trait-description-ParkourTraining = Паркур - это ваше хобби, стиль жизни или профессиональная тренировка.