summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorAsa Kravets <norfenstein@gmail.com>2009-10-03 11:39:59 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:15:13 +0000
commitdc7aab757ad488f4b960e7de8750022a990a8af5 (patch)
tree454e3f9560641523d9dc4faec601b1b39b987147 /src/game
parentcc75aa64bbd2c7b3d63c4857fbb848bab364a26c (diff)
Balance changes
* Adv goon bite range decreased 96->80 (regular goon + 8, to compensate for model size) * Adv goon pounce charge time reverted 600->700 * Goon pounce repeat (delay before being able to chomp) now applies after landing from a pounce instead of hitting with a pounce * Tyrant range decreased 116->100 * Zap damage decreased 50->40
Diffstat (limited to 'src/game')
-rw-r--r--src/game/bg_pmove.c1
-rw-r--r--src/game/g_weapon.c2
-rw-r--r--src/game/tremulous.h8
3 files changed, 5 insertions, 6 deletions
diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c
index 8c33a500..64b6a01f 100644
--- a/src/game/bg_pmove.c
+++ b/src/game/bg_pmove.c
@@ -559,6 +559,7 @@ static qboolean PM_CheckPounce( void )
( pm->ps->pm_flags & PMF_CHARGE ) )
{
pm->ps->pm_flags &= ~PMF_CHARGE;
+ pm->ps->weaponTime += LEVEL3_POUNCE_REPEAT;
return qfalse;
}
diff --git a/src/game/g_weapon.c b/src/game/g_weapon.c
index 045aa648..7e682628 100644
--- a/src/game/g_weapon.c
+++ b/src/game/g_weapon.c
@@ -1262,8 +1262,6 @@ qboolean CheckPounceAttack( gentity_t *ent )
G_Damage( traceEnt, ent, ent, forward, tr.endpos, damage,
DAMAGE_NO_LOCDAMAGE, MOD_LEVEL3_POUNCE );
- ent->client->ps.weaponTime += LEVEL3_POUNCE_REPEAT;
-
return qtrue;
}
diff --git a/src/game/tremulous.h b/src/game/tremulous.h
index a29cc5db..4e0b3350 100644
--- a/src/game/tremulous.h
+++ b/src/game/tremulous.h
@@ -77,7 +77,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define LEVEL2_CLAW_K_SCALE 1.0f
#define LEVEL2_CLAW_U_REPEAT 400
#define LEVEL2_CLAW_U_K_SCALE 1.0f
-#define LEVEL2_AREAZAP_DMG ADM(50)
+#define LEVEL2_AREAZAP_DMG ADM(40)
#define LEVEL2_AREAZAP_RANGE 120.0f
#define LEVEL2_AREAZAP_CUTOFF 300.0f
#define LEVEL2_AREAZAP_REPEAT 500
@@ -85,8 +85,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define LEVEL2_WALLJUMP_MAXSPEED 1000.0f
#define LEVEL3_CLAW_DMG ADM(80)
-#define LEVEL3_CLAW_UPG_RANGE 96.0f
#define LEVEL3_CLAW_RANGE 72.0f
+#define LEVEL3_CLAW_UPG_RANGE LEVEL3_CLAW_RANGE + 8.0f
#define LEVEL3_CLAW_WIDTH 12.0f
#define LEVEL3_CLAW_REPEAT 700
#define LEVEL3_CLAW_K_SCALE 1.0f
@@ -96,7 +96,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define LEVEL3_POUNCE_RANGE 64.0f
#define LEVEL3_POUNCE_WIDTH 14.0f
#define LEVEL3_POUNCE_TIME 700 // msec for full Dragoon pounce
-#define LEVEL3_POUNCE_TIME_UPG 600 // msec for full Adv. Dragoon pounce
+#define LEVEL3_POUNCE_TIME_UPG 700 // msec for full Adv. Dragoon pounce
#define LEVEL3_POUNCE_TIME_MIN 200 // msec before which pounce cancels
#define LEVEL3_POUNCE_REPEAT 400 // msec before a new pounce starts
#define LEVEL3_POUNCE_SPEED_MOD 0.75f // walking speed modifier for pounce charging
@@ -109,7 +109,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define LEVEL3_BOUNCEBALL_REGEN 15000 // msec until new barb
#define LEVEL4_CLAW_DMG ADM(100)
-#define LEVEL4_CLAW_RANGE 116.0f
+#define LEVEL4_CLAW_RANGE 100.0f
#define LEVEL4_CLAW_WIDTH 14.0f
#define LEVEL4_CLAW_HEIGHT 20.0f
#define LEVEL4_CLAW_REPEAT 750