diff --git a/PHI-CL/config.lua b/PHI-CL/config.lua index 71680ac..baf6a46 100644 --- a/PHI-CL/config.lua +++ b/PHI-CL/config.lua @@ -600,7 +600,7 @@ local items = { { name = 'character_running_speed_modifier', enabled = false, - value = 1 + value = 1.5 }, { name = 'character_crafting_speed_modifier', @@ -617,6 +617,26 @@ local items = { enabled = false, value = 200 }, + { + name = 'worker_robots_speed_modifier', + enabled = false, + value = 1.3 + }, + { + name = 'worker_robots_battery_modifier', + enabled = true, + value = 1 + }, + { + name = 'worker_robots_storage_bonus', + enabled = true, + value = 1 + }, + { + name = 'following_robots_lifetime_modifier', + enabled = true, + value = 1 + }, --[[ { name = 'character_reach_distance_bonus', @@ -648,27 +668,6 @@ local items = { enabled = false, value = 5 }, - ]] - { - name = 'worker_robots_speed_modifier', - enabled = false, - value = 1.3 - }, - { - name = 'worker_robots_battery_modifier', - enabled = true, - value = 1 - }, - { - name = 'worker_robots_storage_bonus', - enabled = true, - value = 1 - }, - { - name = 'following_robots_lifetime_modifier', - enabled = true, - value = 1 - }, { name = 'character_trash_slot_count', enabled = false, @@ -709,7 +708,9 @@ local items = { enabled = false, value = 0 } - }, + ]] + } + --[[ surface_bonus = { { name = 'solar_power_multiplier', @@ -717,6 +718,7 @@ local items = { value = 0 } } + ]] }, ['recipe'] = { { diff --git a/PHI-CL/control.lua b/PHI-CL/control.lua index 9907ece..9c57798 100644 --- a/PHI-CL/control.lua +++ b/PHI-CL/control.lua @@ -1,5 +1,4 @@ local items = require 'config' -local main = require 'main' local function clock_display(sec) local s = math.floor(sec) % 60 diff --git a/PHI-CL/locale/en/locale.cfg b/PHI-CL/locale/en/locale.cfg index b78fe9a..d7cc822 100644 --- a/PHI-CL/locale/en/locale.cfg +++ b/PHI-CL/locale/en/locale.cfg @@ -834,6 +834,15 @@ PHI-PB-CRS=Character running speed PHI-PB-CCS=Character crafting speed PHI-PB-CISB=Character inventory slots bonus PHI-PB-CHB=Character health bonus +PHI-PB-FMMS=Force manual mining speed +PHI-PB-FRS=Force running speed +PHI-PB-FCS=Force crafting speed +PHI-PB-FISB=Force inventory slots bonus +PHI-PB-FHB=Force health bonus +PHI-PB-FWRSM=Force worker robots speed modifier +PHI-PB-FWRBM=Force worker robots battery modifier +PHI-PB-FWRSB=Force worker robots storage bonus +PHI-PB-FFRLM=Force following robots lifetime modifier [mod-setting-description] PHI-EN-SOLAR-TIER=Default 8 ; Disable 1 diff --git a/PHI-CL/settings.lua b/PHI-CL/settings.lua index e8af117..4b34c8b 100644 --- a/PHI-CL/settings.lua +++ b/PHI-CL/settings.lua @@ -310,7 +310,7 @@ data:extend({ default_value = 2, minimum_value = 0, maximum_value = 10, - order = 'I1' + order = 'IA1' }, { type = 'float-setting', name = 'PHI-PB-CRS', @@ -318,7 +318,7 @@ data:extend({ default_value = 1.5, minimum_value = 0, maximum_value = 10, - order = 'I2' + order = 'IA2' }, { type = 'int-setting', name = 'PHI-PB-CCS', @@ -326,7 +326,7 @@ data:extend({ default_value = 5, minimum_value = 0, maximum_value = 20, - order = 'I3' + order = 'IA3' }, { type = 'int-setting', name = 'PHI-PB-CISB', @@ -334,7 +334,7 @@ data:extend({ default_value = 100, minimum_value = 0, maximum_value = 200, - order = 'I4' + order = 'IA4' }, { type = 'int-setting', name = 'PHI-PB-CHB', @@ -342,7 +342,79 @@ data:extend({ default_value = 200, minimum_value = 0, maximum_value = 1000, - order = 'I5' + order = 'IA5' + }, { + type = 'int-setting', + name = 'PHI-PB-FMMS', + setting_type = 'startup', + default_value = 2, + minimum_value = 0, + maximum_value = 10, + order = 'IB1' + }, { + type = 'float-setting', + name = 'PHI-PB-FRS', + setting_type = 'startup', + default_value = 1.5, + minimum_value = 0, + maximum_value = 10, + order = 'IB2' + }, { + type = 'int-setting', + name = 'PHI-PB-FCS', + setting_type = 'startup', + default_value = 5, + minimum_value = 0, + maximum_value = 20, + order = 'IB3' + }, { + type = 'int-setting', + name = 'PHI-PB-FISB', + setting_type = 'startup', + default_value = 100, + minimum_value = 0, + maximum_value = 200, + order = 'IB4' + }, { + type = 'int-setting', + name = 'PHI-PB-FHB', + setting_type = 'startup', + default_value = 200, + minimum_value = 0, + maximum_value = 1000, + order = 'IB5' + }, { + type = 'float-setting', + name = 'PHI-PB-FWRSM', + setting_type = 'startup', + default_value = 1.3, + minimum_value = 0, + maximum_value = 20, + order = 'IB6' + }, { + type = 'float-setting', + name = 'PHI-PB-FWRBM', + setting_type = 'startup', + default_value = 1, + minimum_value = 0, + maximum_value = 20, + order = 'IB7' + }, { + type = 'int-setting', + name = 'PHI-PB-FWRSB', + setting_type = 'startup', + default_value = 1, + minimum_value = 0, + maximum_value = 40, + order = 'IB8' + }, { + type = 'int-setting', + name = 'PHI-PB-FFRLM', + setting_type = 'startup', + default_value = 1, + minimum_value = 0, + maximum_value = 20, + order = 'IB9' } } ) \ No newline at end of file