This commit is contained in:
2024-06-18 22:15:04 +09:00
parent 22247c480f
commit bf81a6266d
2 changed files with 24 additions and 7 deletions

View File

@@ -832,6 +832,7 @@ PHI-XW-WATER=Water
PHI-PB-CMMS=Character manual mining speed
PHI-PB-CRS=Character running speed
PHI-PB-CCS=Character crafting speed
PHI-PB-CISB=Character inventory slots bonus
[mod-setting-description]
PHI-EN-SOLAR-TIER=Default 8 ; Disable 1

View File

@@ -308,25 +308,41 @@ data:extend({
name = 'PHI-PB-CMMS',
setting_type = 'startup',
default_value = 2,
minimum_value = 1,
minimum_value = 0,
maximum_value = 10,
order = 'I1'
}, {
type = 'int-setting',
type = 'float-setting',
name = 'PHI-PB-CRS',
setting_type = 'startup',
default_value = 2,
minimum_value = 1,
default_value = 1.5,
minimum_value = 0,
maximum_value = 10,
order = 'I2'
}, {
type = 'int-setting',
name = 'PHI-PB-CCS',
setting_type = 'startup',
default_value = 2,
minimum_value = 1,
maximum_value = 10,
default_value = 5,
minimum_value = 0,
maximum_value = 20,
order = 'I3'
}, {
type = 'int-setting',
name = 'PHI-PB-CISB',
setting_type = 'startup',
default_value = 100,
minimum_value = 0,
maximum_value = 200,
order = 'I4'
}, {
type = 'int-setting',
name = 'PHI-PB-CHB',
setting_type = 'startup',
default_value = 200,
minimum_value = 0,
maximum_value = 1000,
order = 'I5'
}
}
)