I know that you can increase the players walking speed with the exosceleton.
Anyway, because there are modifiers for the mining- and craftingspeed bounded to the force already, there should be a walkingspeed modifier, too.
walkingspeed modifier
Re: walkingspeed modifier
Looking at the base mod I found
"movement_bonus" is what you want.
Code: Select all
{
type = "movement-bonus-equipment",
name = "basic-exoskeleton-equipment",
sprite =
{
filename = "__base__/graphics/equipment/basic-exoskeleton-equipment.png",
width = 64,
height = 128,
priority = "medium"
},
shape =
{
width = 2,
height = 4,
type = "full"
},
energy_source =
{
type = "electric",
usage_priority = "secondary-input"
},
energy_consumption = "200W",
movement_bonus = 0.3 <-------- Increase movement speed
}
Re: walkingspeed modifier
As I said:
It just looks inconsistent to me that there are modifier-values for the crafting- and miningspeed (for forces), but no walkingspeedmodifier...drs9999 wrote:I know that you can increase the players walking speed with the exosceleton.