| Code: |
/////////////////////////////////////////////////////////////////////////////
//
// movecost.cfg: used by core to calculate movement costs based on
// carrying capacity and weight carried
//
// the first value is the percentage of carrying capacity
// carried; the second is the multiplier for movement cost
//
// intermediate values are interpolated linearly.
//
// Edit this file with care -- there's not a lot of error checking
//
/////////////////////////////////////////////////////////////////////////////
Walking
{
1 0.10
25 0.25
50 0.50
75 0.75
100 1.00
Over 60.0 // if somehow carrying more than your carrying capacity
}
Running
{
1 0.25
25 0.50
50 0.75
75 1.00
100 10.0
Over 120.0 // if somehow carrying more than your carrying capacity
}
Running_Mounted
{
1 1.00
100 2.00
Over 200.00
}
Walking_Mounted
{
1 0.25
100 0.50
Over 50.00
}
|