diff options
author | Michael Levin <risujin@fastmail.fm> | 2009-10-03 11:32:44 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:06 +0000 |
commit | 616f10757836ab8d9ed5cca166667f286d3c2d6e (patch) | |
tree | f059a00617b13a9a4bbb1b4d225541d937e375d2 /src/game/tremulous.h | |
parent | 8fd8176fbac930732889c0799a1ee3a534c92a8f (diff) |
* Oops! Last few commits allowed any Alien to walljump, fixed
* Can't walljump from the floor anymore
* Tweaked walljump parameters to focus on forward impulse
* Can now walljump from sloped floors (e.g. ATCS middle)
* Including an experimental health nerf for both Basilisks
Diffstat (limited to 'src/game/tremulous.h')
-rw-r--r-- | src/game/tremulous.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/game/tremulous.h b/src/game/tremulous.h index 40e2c933..250922d5 100644 --- a/src/game/tremulous.h +++ b/src/game/tremulous.h @@ -83,10 +83,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #define LEVEL2_AREAZAP_REPEAT 500 #define LEVEL2_AREAZAP_MAX_TARGETS 3 #define LEVEL2_WALLJUMP_MAXSPEED 1000.0f -#define LEVEL2_WALLJUMP_NORMAL 0.3f // magnitude scale from surface -#define LEVEL2_WALLJUMP_FORWARD 0.4f // magnitude scale in view direction -#define LEVEL2_WALLJUMP_UP 0.3f // magnitude scale up -#define LEVEL2_WALLJUMP_REPEAT 200 // msec before new jump +#define LEVEL2_WALLJUMP_NORMAL 1.0f // magnitude scale from surface +#define LEVEL2_WALLJUMP_FORWARD 1.5f // magnitude scale in view direction +#define LEVEL2_WALLJUMP_UP 0.0f // magnitude scale up +#define LEVEL2_WALLJUMP_REPEAT 400 // msec before new jump +#define LEVEL2_WALLJUMP_RANGE 8.0f // how far away the wall can be #define LEVEL3_CLAW_DMG ADM(80) #define LEVEL3_CLAW_UPG_RANGE 96.0f @@ -169,13 +170,13 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #define LEVEL1_SPEED 1.25f #define LEVEL1_VALUE AVM(225) -#define LEVEL1_HEALTH AHM(75) +#define LEVEL1_HEALTH AHM(60) #define LEVEL1_REGEN 2 #define LEVEL1_COST 1 #define LEVEL1_UPG_SPEED 1.25f #define LEVEL1_UPG_VALUE AVM(275) -#define LEVEL1_UPG_HEALTH AHM(100) +#define LEVEL1_UPG_HEALTH AHM(80) #define LEVEL1_UPG_REGEN 3 #define LEVEL1_UPG_COST 1 |