diff --git a/PHI-MB/main.lua b/PHI-MB/main.lua index 4179a2d..b15c1f8 100644 --- a/PHI-MB/main.lua +++ b/PHI-MB/main.lua @@ -344,6 +344,20 @@ data.raw.recipe['express-loader'].hidden = false data.raw['module']['effectivity-module'].effect = {consumption = {bonus = -0.8}, pollution = {bonus = -0.1}} data.raw['module']['effectivity-module-2'].effect = {consumption = {bonus = -1.6}, pollution = {bonus = -0.15}} data.raw['module']['effectivity-module-3'].effect = {consumption = {bonus = -2.4}, pollution = {bonus = -0.2}} +data.raw['construction-robot']['construction-robot'].max_health = 400 +data.raw['construction-robot']['construction-robot'].max_payload_size = 3 +data.raw['construction-robot']['construction-robot'].max_energy = '6MJ' +data.raw['construction-robot']['construction-robot'].speed = 0.12 +data.raw['construction-robot']['construction-robot'].speed_multiplier_when_out_of_energy = 0.4 +data.raw['construction-robot']['construction-robot'].energy_per_move = '10kJ' + +data.raw['logistic-robot']['logistic-robot'].max_health = 400 +data.raw['logistic-robot']['logistic-robot'].max_payload_size = 3 +data.raw['logistic-robot']['logistic-robot'].max_energy = '6MJ' +data.raw['logistic-robot']['logistic-robot'].speed = 0.12 +data.raw['logistic-robot']['logistic-robot'].speed_multiplier_when_out_of_energy = 0.4 +data.raw['logistic-robot']['logistic-robot'].energy_per_move = '10kJ' + table.insert(data.raw.technology['logistics'].effects, {type='unlock-recipe', recipe='loader'}) table.insert(data.raw.technology['logistics-2'].effects, {type='unlock-recipe', recipe='fast-loader'}) table.insert(data.raw.technology['logistics-3'].effects, {type='unlock-recipe', recipe='express-loader'})