11 lines
458 B
Plaintext
11 lines
458 B
Plaintext
/// How much someone is slowed from pulling a prone human
|
|
#define PULL_PRONE_SLOWDOWN 0.6
|
|
/// How much someone is slowed from fireman carrying a human
|
|
#define FIREMAN_CARRY_SLOWDOWN 0
|
|
/// How much someone is slowed by piggybacking a human
|
|
#define PIGGYBACK_CARRY_SLOWDOWN 0
|
|
/// slowdown when in softcrit. Note that crawling slowdown will also apply at the same time!
|
|
#define SOFTCRIT_ADD_SLOWDOWN 2
|
|
/// slowdown when crawling
|
|
#define CRAWLING_ADD_SLOWDOWN 4
|