Compare commits

..

No commits in common. "d4a64a968043751e176cd293ed61e8bf6125e0f3" and "9f924c3aea1d07785cd089c0ebebcb80180a24af" have entirely different histories.

4 changed files with 5 additions and 17 deletions

View file

@ -11,9 +11,9 @@ local function robot(color)
result.minable.result = "basic-construction-robot-" .. color result.minable.result = "basic-construction-robot-" .. color
result.max_health = 50 result.max_health = 50
result.speed = early_robots and 0.05 or 0.04 result.speed = early_robots and 0.05 or 0.04
result.max_energy = early_robots and "1.5MJ" or "1MJ" result.max_energy = "1MJ"
result.energy_per_tick = early_robots and "0.03kJ" or "0.04kJ" result.energy_per_tick = "0.04kJ"
result.energy_per_move = early_robots and "2kJ" or "2.5kJ" result.energy_per_move = "0.3kJ"
result.idle.filename = Lignumis.graphics .. "entity/basic-construction-robot/basic-construction-robot-" .. result.idle.filename = Lignumis.graphics .. "entity/basic-construction-robot/basic-construction-robot-" ..
color .. ".png" color .. ".png"
result.in_motion.filename = Lignumis.graphics .. "entity/basic-construction-robot/basic-construction-robot-" .. result.in_motion.filename = Lignumis.graphics .. "entity/basic-construction-robot/basic-construction-robot-" ..

View file

@ -21,11 +21,6 @@ local nauvis_lignumis = {
} }
} }
local solar_power = data.raw.planet[target_planet].surface_properties["solar-power"] or 100
local solar_power_in_space = data.raw.planet[target_planet].solar_power_in_space or 300
solar_power = solar_power * 1.2
solar_power_in_space = solar_power_in_space * 1.2
PlanetsLib:extend({ PlanetsLib:extend({
{ {
type = "planet", type = "planet",
@ -53,7 +48,7 @@ PlanetsLib:extend({
map_seed_offset = 100, map_seed_offset = 100,
map_gen_settings = planet_map_gen, map_gen_settings = planet_map_gen,
pollutant_type = "noise", pollutant_type = "noise",
solar_power_in_space = solar_power_in_space, solar_power_in_space = 300,
draw_orbit = false, draw_orbit = false,
planet_procession_set = { planet_procession_set = {
arrival = { "default-b" }, arrival = { "default-b" },
@ -63,7 +58,7 @@ PlanetsLib:extend({
["day-night-cycle"] = 2 * minute, ["day-night-cycle"] = 2 * minute,
["gravity"] = 4, ["gravity"] = 4,
["pressure"] = 900, ["pressure"] = 900,
["solar-power"] = solar_power ["solar-power"] = 120
}, },
asteroid_spawn_influence = 1, asteroid_spawn_influence = 1,
asteroid_spawn_definitions = asteroid_util.spawn_definitions(nauvis_lignumis, 0.9), asteroid_spawn_definitions = asteroid_util.spawn_definitions(nauvis_lignumis, 0.9),

View file

@ -21,9 +21,6 @@ Belt.EntityBuilder:new()
}) })
local splitter_item = Belt.ItemBuilder:new() local splitter_item = Belt.ItemBuilder:new()
:itemsPerRocket("transportBelt", 100)
:itemsPerRocket("undergroundBelt", 50)
:itemsPerRocket("splitter", 50)
:order("0") :order("0")
:apply() :apply()
.splitter .splitter

View file

@ -1,6 +1,5 @@
local Technology = require("__cf-lib__/data/Technology") local Technology = require("__cf-lib__/data/Technology")
local Recipe = require("__cf-lib__/data/Recipe") local Recipe = require("__cf-lib__/data/Recipe")
local Item = require("__cf-lib__/data/Item")
local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].value local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].value
@ -143,9 +142,6 @@ if settings.startup["lignumis-belt-progression"].value then
Recipe:new("transport-belt"):replaceIngredient("iron-plate", "wood-transport-belt", 2) Recipe:new("transport-belt"):replaceIngredient("iron-plate", "wood-transport-belt", 2)
Recipe:new("underground-belt"):replaceIngredient("transport-belt", "wood-underground-belt", 2) Recipe:new("underground-belt"):replaceIngredient("transport-belt", "wood-underground-belt", 2)
Recipe:new("splitter"):replaceIngredient("transport-belt", "wood-splitter", 1) Recipe:new("splitter"):replaceIngredient("transport-belt", "wood-splitter", 1)
Item:new("transport-belt"):itemsPerRocket(100)
Item:new("underground-belt"):itemsPerRocket(50)
Item:new("splitter"):itemsPerRocket(50)
end end
if settings.startup["lignumis-inserter-progression"].value then if settings.startup["lignumis-inserter-progression"].value then