From 7c310d5fc55749fddab90e4034d3da211de9e0ae Mon Sep 17 00:00:00 2001 From: Armand Golpaygani Date: Thu, 1 Aug 2024 22:49:26 +0200 Subject: [PATCH 1/2] Add rebalance soul gem values doc --- docs/source/reference/modding/settings/game.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/source/reference/modding/settings/game.rst b/docs/source/reference/modding/settings/game.rst index e4146f7322..7a2ad5f140 100644 --- a/docs/source/reference/modding/settings/game.rst +++ b/docs/source/reference/modding/settings/game.rst @@ -552,3 +552,19 @@ smooth animation transitions Enabling this option uses smooth transitions between animations making them a lot less jarring. Also allows to load modded animation blending. This setting can be controlled in the Settings tab of the launcher. + +rebalance soul gem values +------------------------- + +:Type: boolean +:Range: True/False +:Default: False + +Enabling this option drastically reduces the value of filled soul gems, making +the value dependant only on soul magnitude, ignoring the soul gem type. + +The new value formula is based on the Morrowind Code Patch project:: + + new value = 0.0001 * (soul magnitude)³ + 2 * (soul magnitude) + +This setting can be controlled in the Settings tab of the launcher. From 987262a08bd7f85d0a20f78206bcaea24bf6e052 Mon Sep 17 00:00:00 2001 From: Armand Golpaygani Date: Fri, 2 Aug 2024 22:48:36 +0200 Subject: [PATCH 2/2] Split sentences to improve wording --- docs/source/reference/modding/settings/game.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/source/reference/modding/settings/game.rst b/docs/source/reference/modding/settings/game.rst index 7a2ad5f140..3994fd5077 100644 --- a/docs/source/reference/modding/settings/game.rst +++ b/docs/source/reference/modding/settings/game.rst @@ -560,8 +560,9 @@ rebalance soul gem values :Range: True/False :Default: False -Enabling this option drastically reduces the value of filled soul gems, making -the value dependant only on soul magnitude, ignoring the soul gem type. +Enabling this option drastically reduces the value of filled soul gems. +The value will depend on soul magnitude but not the size of the used +soul gem. The new value formula is based on the Morrowind Code Patch project::