diff --git a/PHI-CL/locale/en/locale.cfg b/PHI-CL/locale/en/locale.cfg index da9cf53..f6daf90 100644 --- a/PHI-CL/locale/en/locale.cfg +++ b/PHI-CL/locale/en/locale.cfg @@ -5,7 +5,7 @@ PHI-CL=Phidias Collection PHI-CL=[font=heading-1][color=255,254,42]UPS-friendly megabases[/color][/font]\n[font=heading-2][color=54,228,255]Compound entities to save space and UPS\nAdjusted pipe limits for smoother logistics[/color][/font]\n\n[font=heading-1][color=255,254,42]Space Age Enhanced[/color][/font]\n[font=heading-2][color=54,228,255]Supports spoilage and quality mechanics\nTwo modes: Vanilla+ (refined classic) or Space Age+ (easier planetary challenges)[/color][/font]\n\n[font=heading-1][color=255,254,42]Multiplayer Maps[/color][/font]\n[font=heading-2][color=54,228,255]Regular PHI-CL VP or SAP server hosted on APERX\nhttps://wiki.aperx.org/aperx/phi-cl[/color][/font] [phi-cl] -setting-category-color=[color=255,254,42]__1__[/color] [color=54,228,255]__2__:[/color] __3__ +setting-category-color=[color=255,254,42]__1__[/color] [color=54,228,255]__2__[/color] __3__ setting-class-color=[color=54,228,255]__1__ __2__[/color] __3__ combine=__1__ __2__ combine-gen=__1__ MK__2__ @@ -99,19 +99,3 @@ PHI-CT-TILE-CHOICE-grass-1=[tile=grass-1] Grass 1 PHI-CT-TILE-CHOICE-grass-2=[tile=grass-2] Grass 2 PHI-CT-TILE-CHOICE-grass-3=[tile=grass-3] Grass 3 PHI-CT-TILE-CHOICE-grass-4=[tile=grass-4] Grass 4 - -[mod-setting-description] -PHI-MB-ENERGY=[item=solar-panel] -PHI-MB-MACHINE=[item=assembling-machine-3] -PHI-MB-EQUIPMENT=[item=personal-laser-defense-equipment] -PHI-MB-EQUIPMENT-ARMOR=[item=power-armor-mk2] 3 -PHI-MB-EQUIPMENT-SIZE=1x1 - -PHI-MI-LANDFILL=50 -PHI-MI-PIPE=[item=pipe] x0.1 -PHI-MI-ROBOT-ENERGY=[item=battery] -PHI-MI-PIPE-EXTENT=[item=pipe-to-ground] - -PHI-SA-SPOIL-FREEZE-MULTIPLIER=[virtual-signal=signal-clock] x0.1 -PHI-SA-QUALITY=x0.1 -PHI-SA-ROCKET-CAPACITY=[item=rocket-silo] '000 KG diff --git a/PHI-CL/settings.lua b/PHI-CL/settings.lua index 8ea9de2..c03cc2e 100644 --- a/PHI-CL/settings.lua +++ b/PHI-CL/settings.lua @@ -12,13 +12,15 @@ data:extend({ setting_type = 'startup', default_value = false, localised_name = {'phi-cl.setting-category-color', 'MBE', {'phi-cl.enable'}, {'mod-setting-name.PHI-MB-ENERGY'}}, + localised_description = {'[item=solar-panel]'}, order = 'AA00' }, { type = 'int-setting', name = 'PHI-MB-ENERGY-POWER-TIER', setting_type = 'startup', default_value = 8, - allowed_values = {1, 2, 3, 4, 5, 6, 7, 8}, + minimum_value = 1, + maximum_value = 8, localised_name = {'phi-cl.setting-class-color', 'MBE1', {'phi-cl.tier'}, {'mod-setting-name.PHI-MB-ENERGY-POWER-TIER'}}, order = 'AA01' }, { @@ -26,8 +28,10 @@ data:extend({ name = 'PHI-MB-ENERGY-SOLAR-RATIO', setting_type = 'startup', default_value = 4, - allowed_values = {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}, + minimum_value = 2, + maximum_value = 16, localised_name = {'phi-cl.setting-class-color', 'MBE2', {'phi-cl.ratio'}, {'mod-setting-name.PHI-MB-ENERGY-SOLAR-RATIO'}}, + localised_description = {'[item=beacon]'}, order = 'AA02' }, { type = 'bool-setting', @@ -35,13 +39,15 @@ data:extend({ setting_type = 'startup', default_value = false, localised_name = {'phi-cl.setting-category-color', 'MBM', {'phi-cl.enable'}, {'mod-setting-name.PHI-MB-MACHINE'}}, + localised_description = {'[item=assembling-machine-3]'}, order = 'AB00' }, { type = 'int-setting', name = 'PHI-MB-MACHINE-TIER', setting_type = 'startup', default_value = 3, - allowed_values = {1, 2, 3}, + minimum_value = 1, + maximum_value = 3, localised_name = {'phi-cl.setting-class-color', 'MBM1', {'phi-cl.tier'}, {'mod-setting-name.PHI-MB-MACHINE-TIER'}}, order = 'AB01' }, { @@ -50,13 +56,15 @@ data:extend({ setting_type = 'startup', default_value = false, localised_name = {'phi-cl.setting-category-color', 'MBQ', {'phi-cl.enable'}, {'mod-setting-name.PHI-MB-EQUIPMENT'}}, + localised_description = {'[item=personal-laser-defense-equipment]'}, order = 'AC00' }, { type = 'int-setting', name = 'PHI-MB-EQUIPMENT-TIER', setting_type = 'startup', default_value = 2, - allowed_values = {1, 2, 3, 4, 5, 6, 7, 8}, + minimum_value = 1, + maximum_value = 8, localised_name = {'phi-cl.setting-class-color', 'MBQ1', {'phi-cl.tier'}, {'mod-setting-name.PHI-MB-EQUIPMENT-TIER'}}, order = 'AC01' }, { @@ -65,7 +73,7 @@ data:extend({ setting_type = 'startup', default_value = false, localised_name = {'phi-cl.setting-class-color', 'MBQ2', {'phi-cl.enable'}, {'mod-setting-name.PHI-MB-EQUIPMENT-ARMOR'}}, - localised_description = (mods['space-age'] and {'', '[item=power-armor-mk2] 3, [item=mech-armor] 2'}) or {''}, + localised_description = (mods['space-age'] and {'[item=power-armor-mk2] 3, [item=mech-armor] 2'}) or {'[item=power-armor-mk2] 3'}, order = 'AC02' }, { type = 'bool-setting', @@ -73,6 +81,7 @@ data:extend({ setting_type = 'startup', default_value = false, localised_name = {'phi-cl.setting-class-color', 'MBQ3', {'phi-cl.enable'}, {'mod-setting-name.PHI-MB-EQUIPMENT-SIZE'}}, + localised_description = {'1x1'}, order = 'AC03' }, { type = 'bool-setting', @@ -96,6 +105,7 @@ data:extend({ minimum_value = 1, maximum_value = 160, localised_name = {'phi-cl.setting-class-color', 'MI2', {'phi-cl.ratio'}, {'mod-setting-name.PHI-MI-PIPE'}}, + localised_description = {'[item=pipe] x0.1'}, order = 'B02' }, { type = 'bool-setting', @@ -103,6 +113,7 @@ data:extend({ setting_type = 'startup', default_value = false, localised_name = {'phi-cl.setting-class-color', 'MI3', {'phi-cl.enable'}, {'mod-setting-name.PHI-MI-ROBOT-ENERGY'}}, + localised_description = {'[item=battery]'}, order = 'B03' }, { type = 'int-setting', @@ -112,6 +123,7 @@ data:extend({ minimum_value = 80, maximum_value = 10240, localised_name = {'phi-cl.setting-class-color', 'MI4', {'phi-cl.ratio'}, {'mod-setting-name.PHI-MI-PIPE-EXTENT'}}, + localised_description = {'[item=pipe-to-ground]'}, order = 'B04' }, { type = 'bool-setting', @@ -126,7 +138,7 @@ data:extend({ setting_type = 'startup', default_value = false, localised_name = {'phi-cl.setting-class-color', 'SA1', {'phi-cl.enable'}, {'mod-setting-name.PHI-SA-SPOIL'}}, - localised_description = (mods['space-age'] and {'', '[item=spoilage]'}) or {''}, + localised_description = (mods['space-age'] and {'[item=spoilage]'}) or {''}, order = 'C01' }, { type = 'int-setting', @@ -136,7 +148,7 @@ data:extend({ minimum_value = 0, maximum_value = 1000, localised_name = {'phi-cl.setting-class-color', 'SA2', {'phi-cl.ratio'}, {'mod-setting-name.PHI-SA-SPOIL-FREEZE-MULTIPLIER'}}, - localised_description = (mods['space-age'] and {'', '[item=ice]'}) or {''}, + localised_description = (mods['space-age'] and {'[item=ice][virtual-signal=signal-clock] x0.1'}) or {''}, order = 'C02' }, { type = 'bool-setting', @@ -144,7 +156,7 @@ data:extend({ setting_type = 'startup', default_value = false, localised_name = {'phi-cl.setting-class-color', 'SA3', {'phi-cl.enable'}, {'mod-setting-name.PHI-SA-ENABLE-QUALITY'}}, - localised_description = (mods['space-age'] and {'', '[virtual-signal=signal-any-quality]'}) or {''}, + localised_description = (mods['space-age'] and {'[virtual-signal=signal-any-quality]'}) or {''}, order = 'C03' }, { type = 'int-setting', @@ -154,7 +166,7 @@ data:extend({ minimum_value = 1, maximum_value = 100, localised_name = {'phi-cl.setting-class-color', 'SA4', {'phi-cl.ratio'}, {'mod-setting-name.PHI-SA-QUALITY'}}, - localised_description = (mods['space-age'] and {'', '[item=quality-module-3] x 0.1'}) or {''}, + localised_description = (mods['space-age'] and {'[item=quality-module-3] x 0.1'}) or {''}, order = 'C04' }, { type = 'int-setting', @@ -164,6 +176,7 @@ data:extend({ minimum_value = 1, maximum_value = 10000, localised_name = {'phi-cl.setting-class-color', 'SA5', {'phi-cl.ratio'}, {'mod-setting-name.PHI-SA-ROCKET-CAPACITY'}}, + localised_description = {'[item=rocket-silo] 000 KG'}, order = 'C05' }, { type = 'string-setting',