This commit is contained in:
2026-06-19 23:19:46 +09:00
parent 7f272cd0b7
commit 765e5da28e
2 changed files with 6 additions and 23 deletions
+2 -15
View File
@@ -220,17 +220,6 @@ end
-- recipe -- recipe
function main.ER(source, tier) function main.ER(source, tier)
local result_name = source.name .. ((source.category == 'equipment' and ('-mk' .. tier .. '-equipment')) or ('-' .. tier)) local result_name = source.name .. ((source.category == 'equipment' and ('-mk' .. tier .. '-equipment')) or ('-' .. tier))
local ingredients = {}
local ingredient_name
if source.category == 'equipment' then
ingredient_name = (tier == source.min and source.ref_name) or (source.name .. '-mk' .. (tier - 1) .. '-equipment')
else
ingredient_name = (tier > source.min and (source.name .. '-' .. (tier - 1))) or source.ref_name
end
table.insert(ingredients, {type = 'item', name = ingredient_name, amount = 2})
data:extend({{ data:extend({{
type = 'recipe', type = 'recipe',
@@ -238,7 +227,7 @@ function main.ER(source, tier)
icons = table.deepcopy(data.raw.item[source.ref_name].icons), icons = table.deepcopy(data.raw.item[source.ref_name].icons),
energy_required = 2, energy_required = 2,
enabled = false, enabled = false,
ingredients = ingredients, ingredients = {{type = 'item', name = (tier > source.min and (source.name .. '-' .. (tier - 1))) or source.ref_name, amount = 2}},
results = {{type = 'item', name = result_name, amount = 1}}, results = {{type = 'item', name = result_name, amount = 1}},
main_product = result_name, main_product = result_name,
localised_name = {'?', data.raw[source.type][result_name].localised_name, ''}, localised_name = {'?', data.raw[source.type][result_name].localised_name, ''},
@@ -252,13 +241,11 @@ function main.ET(source, tier)
return return
end end
local recipe_name = (source.category == 'equipment' and (source.name .. '-mk' .. tier .. '-equipment')) or (source.name .. '-' .. tier)
if not data.raw.technology[source.tech].effects then if not data.raw.technology[source.tech].effects then
data.raw.technology[source.tech].effects = {} data.raw.technology[source.tech].effects = {}
end end
table.insert(data.raw.technology[source.tech].effects, {type='unlock-recipe', recipe=recipe_name}) table.insert(data.raw.technology[source.tech].effects, {type = 'unlock-recipe', recipe = source.name .. '-' .. tier})
if source.type ~= 'ammo-turret' and source.type ~= 'fluid-turret' then if source.type ~= 'ammo-turret' and source.type ~= 'fluid-turret' then
return return
+4 -8
View File
@@ -12,8 +12,7 @@ data:extend({
name = 'PHI-MB-ENERGY', name = 'PHI-MB-ENERGY',
setting_type = 'startup', setting_type = 'startup',
default_value = 1, default_value = 1,
minimum_value = 1, allowed_values = {1, 2, 3, 4, 5, 6, 7, 8},
maximum_value = 8,
localised_name = {'phi-cl.setting-category-color', 'MBE', {'phi-cl.enable'}, {'mod-setting-name.PHI-MB-ENERGY'}}, localised_name = {'phi-cl.setting-category-color', 'MBE', {'phi-cl.enable'}, {'mod-setting-name.PHI-MB-ENERGY'}},
localised_description = {'', '[item=solar-panel]', {'phi-cl.setting-change-color', '\n[104] A103 C1'}}, localised_description = {'', '[item=solar-panel]', {'phi-cl.setting-change-color', '\n[104] A103 C1'}},
order = 'AA00' order = 'AA00'
@@ -22,8 +21,7 @@ data:extend({
name = 'PHI-MB-ENERGY-SOLAR-RATIO', name = 'PHI-MB-ENERGY-SOLAR-RATIO',
setting_type = 'startup', setting_type = 'startup',
default_value = 4, default_value = 4,
minimum_value = 2, allowed_values = {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16},
maximum_value = 16,
localised_name = {'phi-cl.setting-class-color', 'MBE1', {'phi-cl.ratio'}, {'mod-setting-name.PHI-MB-ENERGY-SOLAR-RATIO'}}, localised_name = {'phi-cl.setting-class-color', 'MBE1', {'phi-cl.ratio'}, {'mod-setting-name.PHI-MB-ENERGY-SOLAR-RATIO'}},
localised_description = {'', '[item=beacon]'}, localised_description = {'', '[item=beacon]'},
order = 'AA01' order = 'AA01'
@@ -32,8 +30,7 @@ data:extend({
name = 'PHI-MB-MACHINE', name = 'PHI-MB-MACHINE',
setting_type = 'startup', setting_type = 'startup',
default_value = 1, default_value = 1,
minimum_value = 1, allowed_values = {1, 2, 3},
maximum_value = 3,
localised_name = {'phi-cl.setting-category-color', 'MBM', {'phi-cl.enable'}, {'mod-setting-name.PHI-MB-MACHINE'}}, localised_name = {'phi-cl.setting-category-color', 'MBM', {'phi-cl.enable'}, {'mod-setting-name.PHI-MB-MACHINE'}},
localised_description = {'', '[item=assembling-machine-3]', {'phi-cl.setting-change-color', '\n[150] A150'}}, localised_description = {'', '[item=assembling-machine-3]', {'phi-cl.setting-change-color', '\n[150] A150'}},
order = 'AB00' order = 'AB00'
@@ -42,8 +39,7 @@ data:extend({
name = 'PHI-MB-EQUIPMENT', name = 'PHI-MB-EQUIPMENT',
setting_type = 'startup', setting_type = 'startup',
default_value = 1, default_value = 1,
minimum_value = 1, allowed_values = {1, 2, 3},
maximum_value = 3,
localised_name = {'phi-cl.setting-category-color', 'MBQ', {'phi-cl.enable'}, {'mod-setting-name.PHI-MB-EQUIPMENT'}}, localised_name = {'phi-cl.setting-category-color', 'MBQ', {'phi-cl.enable'}, {'mod-setting-name.PHI-MB-EQUIPMENT'}},
localised_description = {'', '[item=personal-laser-defense-equipment]', {'phi-cl.setting-change-color', '\n[63] A63'}}, localised_description = {'', '[item=personal-laser-defense-equipment]', {'phi-cl.setting-change-color', '\n[63] A63'}},
order = 'AC00' order = 'AC00'