K2SE Higher Tiers of Logistics

by dnemes

Made for my SE playthrough. Adds the 4th and 5th tiers of logistics from K2. Recipes are adjusted to use SE materials. Some settings might be introduced later (adjustable underground lenghts and belt speeds, etc.). All credits go to the original authors Krastor and Linver, as well as the current maintainer, Raiguard.

Content
7 months ago
1.1
141
Logistics

i AAI Loaders

4 months ago

Could you add AAI Loader support, like SE does for the original K2 mod? Here's some code to be required from data.lua

AAILoaders.make_tier{ -- Advanced loader
name = "kr-advanced",
transport_belt = "kr-advanced-transport-belt",
color = {34, 236, 23},
fluid = "lubricant",
fluid_per_minute = "0.225",
technology = {
prerequisites = { "kr-logistic-4", },
unit = {
count = 350,
ingredients = {
{ "automation-science-pack", 1 },
{ "logistic-science-pack", 1 },
{ "chemical-science-pack", 1 },
{ "production-science-pack", 1 },
{ "utility-science-pack", 1 }
},
time = 60
}
},
recipe = {
crafting_category = "crafting-with-fluid",
ingredients = {
{"kr-advanced-transport-belt", 1},
{"aai-express-loader", 1},
{ "se-beryllium-plate", 5 },
{ type = "fluid", name = "lubricant", amount = 80 },
},
energy_required = 2
},
unlubricated_recipe = {
crafting_category = "crafting-with-fluid",
ingredients = {
{"kr-advanced-transport-belt", 1},
{"aai-express-loader", 1},
{ "se-beryllium-plate", 50 },
{ type = "fluid", name = "lubricant", amount = 800 },
},
energy_required = 10
}
}

AAILoaders.make_tier{ -- Superior loader
name = "kr-superior",
transport_belt = "kr-superior-transport-belt",
color = {210, 1, 247},
fluid = "lubricant",
fluid_per_minute = "0.25",
technology = {
prerequisites = { "kr-logistic-5", },
unit = {
count = 450,
ingredients = {
{ "production-science-pack", 1 },
{ "utility-science-pack", 1 },
},
time = 60
}
},
recipe = {
crafting_category = "crafting-with-fluid",
ingredients = {
{"kr-superior-transport-belt", 1},
{"aai-kr-advanced-loader", 1},
{ "se-iridium-plate", 10 },
{ type = "fluid", name = "lubricant", amount = 80 },
},
energy_required = 2
},
unlubricated_recipe = {
crafting_category = "crafting-with-fluid",
ingredients = {
{"kr-superior-transport-belt", 1},
{"aai-kr-advanced-loader", 1},
{ "se-iridium-plate", 100 },
{ type = "fluid", name = "lubricant", amount = 800 },
},
energy_required = 10
}
}

New response