From 8da7d0cea7c91854add74b3125f75630282d05e1 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Fri, 23 May 2025 14:00:01 +0200 Subject: [PATCH] Balance basic robots battery usage --- lignumis/prototypes/content/basic-construction-robots.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lignumis/prototypes/content/basic-construction-robots.lua b/lignumis/prototypes/content/basic-construction-robots.lua index 95cae5b..fef1bd7 100644 --- a/lignumis/prototypes/content/basic-construction-robots.lua +++ b/lignumis/prototypes/content/basic-construction-robots.lua @@ -11,9 +11,9 @@ local function robot(color) result.minable.result = "basic-construction-robot-" .. color result.max_health = 50 result.speed = early_robots and 0.05 or 0.04 - result.max_energy = "1MJ" - result.energy_per_tick = "0.04kJ" - result.energy_per_move = "0.3kJ" + result.max_energy = early_robots and "1.5MJ" or "1MJ" + result.energy_per_tick = early_robots and "0.03kJ" or "0.04kJ" + result.energy_per_move = early_robots and "2kJ" or "2.5kJ" result.idle.filename = Lignumis.graphics .. "entity/basic-construction-robot/basic-construction-robot-" .. color .. ".png" result.in_motion.filename = Lignumis.graphics .. "entity/basic-construction-robot/basic-construction-robot-" ..