summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorMichael Levin <risujin@fastmail.fm>2009-10-03 11:29:22 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:15:02 +0000
commit685e9535db65b8117a93afd68b93ce1521a6ec28 (patch)
tree379a6571720a38230181bc082caaabc921d31772 /src/game
parent7fed4f2d94817bb4c6d0a3bff665a5cae0ce8ff3 (diff)
* Lucifer cannon projectile a little bigger with charge
* Sitting on a booster won't make it blink the warning bolt (SS_BOOSTEDWARNING), also made the warning fade * Lucifer Cannon repeat rates fixed * G_Damage() wont deal damage to dead entities * Maybe fixed the buildable killed with shotgun won't show dying anim bug * Attacked hives won't attack back when the OM is dead * The monstrous hive bounding boxes shrunk to something reasonable * Tesla Generator muzzle offset to the ball part, now fires over turrets * HUDs can make vertical charge bars * Human charge bar no longer overlaps scanner * "There are no spawns remaining" Changes to trample attack: * No longer deals locational damage (wtf?) * Charge "holding" restored * Hit repeat rate limited to 50 ms Changes to health cross icons: * Inspired by Techhead, made new icons (sorry, yours didn't look so good in game :-\ ) * Icons fade from one to another * Switched SS_HEALING_2X and SS_HEALING_ACTIVE meaning for Humans -- glows when on medi station, special icon for medkit * Poisoned icon for humans (Techhead's idea)
Diffstat (limited to 'src/game')
-rw-r--r--src/game/bg_misc.c2
-rw-r--r--src/game/bg_pmove.c28
-rw-r--r--src/game/bg_public.h6
-rw-r--r--src/game/g_active.c22
-rw-r--r--src/game/g_buildable.c77
-rw-r--r--src/game/g_cmds.c13
-rw-r--r--src/game/g_combat.c16
-rw-r--r--src/game/g_weapon.c17
-rw-r--r--src/game/tremulous.h20
9 files changed, 87 insertions, 114 deletions
diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c
index 59c76e3a..9b988371 100644
--- a/src/game/bg_misc.c
+++ b/src/game/bg_misc.c
@@ -3421,7 +3421,7 @@ weaponAttributes_t bg_weapons[ ] =
qfalse, //int infiniteAmmo;
qtrue, //int usesEnergy;
LCANNON_REPEAT, //int repeatRate1;
- LCANNON_CHARGEREPEAT, //int repeatRate2;
+ LCANNON_SECONDARY_REPEAT, //int repeatRate2;
0, //int repeatRate3;
LCANNON_RELOAD, //int reloadTime;
LCANNON_K_SCALE, //float knockbackScale;
diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c
index f1c1d116..a6dc15cf 100644
--- a/src/game/bg_pmove.c
+++ b/src/game/bg_pmove.c
@@ -406,7 +406,7 @@ static float PM_CmdScale( usercmd_t *cmd )
if( pm->ps->weapon == WP_ALEVEL4 && pm->ps->pm_flags & PMF_CHARGE )
modifier *= 1.0f + ( pm->ps->stats[ STAT_MISC ] *
( LEVEL4_TRAMPLE_SPEED - 1.0f ) /
- LEVEL4_TRAMPLE_CHARGE_MAX );
+ LEVEL4_TRAMPLE_DURATION );
//slow player if charging up for a pounce
if( ( pm->ps->weapon == WP_ALEVEL3 || pm->ps->weapon == WP_ALEVEL3_UPG ) &&
@@ -2829,21 +2829,14 @@ static void PM_Weapon( void )
if( !( pm->ps->stats[ STAT_STATE ] & SS_CHARGING ) )
{
// Charge button held
- if( pm->ps->stats[ STAT_MISC ] < LEVEL4_TRAMPLE_CHARGE_MAX &&
+ if( pm->ps->stats[ STAT_MISC ] < LEVEL4_TRAMPLE_CHARGE_TRIGGER &&
( pm->cmd.buttons & BUTTON_ATTACK2 ) )
{
pm->ps->stats[ STAT_STATE ] &= ~SS_CHARGING;
if( pm->cmd.forwardmove > 0 )
- pm->ps->stats[ STAT_MISC ] += pml.msec * LEVEL4_TRAMPLE_CHARGE_MAX /
- LEVEL4_TRAMPLE_CHARGE_TIME_MAX;
+ pm->ps->stats[ STAT_MISC ] += pml.msec;
else
pm->ps->stats[ STAT_MISC ] = 0;
- if( pm->ps->stats[ STAT_MISC ] > LEVEL4_TRAMPLE_CHARGE_MAX )
- {
- pm->ps->stats[ STAT_MISC ] = LEVEL4_TRAMPLE_CHARGE_MAX;
- pm->ps->stats[ STAT_STATE ] |= SS_CHARGING;
- PM_AddEvent( EV_LEV4_TRAMPLE_START );
- }
}
// Charge button released
@@ -2851,6 +2844,11 @@ static void PM_Weapon( void )
{
if( pm->ps->stats[ STAT_MISC ] > LEVEL4_TRAMPLE_CHARGE_MIN )
{
+ if( pm->ps->stats[ STAT_MISC ] > LEVEL4_TRAMPLE_CHARGE_MAX )
+ pm->ps->stats[ STAT_MISC ] = LEVEL4_TRAMPLE_CHARGE_MAX;
+ pm->ps->stats[ STAT_MISC ] = pm->ps->stats[ STAT_MISC ] *
+ LEVEL4_TRAMPLE_DURATION /
+ LEVEL4_TRAMPLE_CHARGE_MAX;
pm->ps->stats[ STAT_STATE ] |= SS_CHARGING;
PM_AddEvent( EV_LEV4_TRAMPLE_START );
}
@@ -2903,22 +2901,22 @@ static void PM_Weapon( void )
if( pm->ps->pm_flags & PMF_RESPAWNED )
return;
- // no slash during charge
- if( pm->ps->stats[ STAT_STATE ] & SS_CHARGING )
- return;
-
// no bite during pounce
if( ( pm->ps->weapon == WP_ALEVEL3 || pm->ps->weapon == WP_ALEVEL3_UPG )
&& ( pm->cmd.buttons & BUTTON_ATTACK )
&& ( pm->ps->pm_flags & PMF_CHARGE ) )
return;
- // make weapon function
+ // pump weapon delays (repeat times etc)
if( pm->ps->weaponTime > 0 )
pm->ps->weaponTime -= pml.msec;
if( pm->ps->weaponTime < 0 )
pm->ps->weaponTime = 0;
+ // no slash during charge
+ if( pm->ps->stats[ STAT_STATE ] & SS_CHARGING )
+ return;
+
// check for weapon change
// can't change if weapon is firing, but can change
// again if lowering or raising
diff --git a/src/game/bg_public.h b/src/game/bg_public.h
index 18c0d28f..7ad0b2a0 100644
--- a/src/game/bg_public.h
+++ b/src/game/bg_public.h
@@ -243,10 +243,10 @@ typedef enum
#define SS_HOVELING 0x00000100
#define SS_BOOSTED 0x00000200
#define SS_SLOWLOCKED 0x00000400
-//#define SS_POISONCLOUDED 0x00000800 // unused
+#define SS_BOOSTEDWARNING 0x00000800 // booster poison is running out
#define SS_CHARGING 0x00001000
-#define SS_HEALING_ACTIVE 0x00002000 // medkit for Humans, creep for Aliens
-#define SS_HEALING_2X 0x00004000 // double healing rate (for HUD)
+#define SS_HEALING_ACTIVE 0x00002000 // medistat for Humans, creep for Aliens
+#define SS_HEALING_2X 0x00004000 // medkit or double healing rate (for HUD)
#define SS_HEALING_3X 0x00008000 // triple healing rate (for HUD)
#define SB_VALID_TOGGLEBIT 0x00004000
diff --git a/src/game/g_active.c b/src/game/g_active.c
index 9faa2c33..e30f8bf4 100644
--- a/src/game/g_active.c
+++ b/src/game/g_active.c
@@ -663,7 +663,7 @@ void ClientTimerActions( gentity_t *ent, int msec )
}
if( ent->client->pers.teamSelection == PTE_HUMANS &&
- ( client->ps.stats[ STAT_STATE ] & SS_HEALING_ACTIVE ) )
+ ( client->ps.stats[ STAT_STATE ] & SS_HEALING_2X ) )
{
int remainingStartupTime = MEDKIT_STARTUP_TIME - ( level.time - client->lastMedKitTime );
@@ -677,7 +677,7 @@ void ClientTimerActions( gentity_t *ent, int msec )
ent->health++;
}
else
- ent->client->ps.stats[ STAT_STATE ] &= ~SS_HEALING_ACTIVE;
+ ent->client->ps.stats[ STAT_STATE ] &= ~SS_HEALING_2X;
}
else
{
@@ -696,7 +696,7 @@ void ClientTimerActions( gentity_t *ent, int msec )
}
}
else
- ent->client->ps.stats[ STAT_STATE ] &= ~SS_HEALING_ACTIVE;
+ ent->client->ps.stats[ STAT_STATE ] &= ~SS_HEALING_2X;
}
}
}
@@ -1409,9 +1409,15 @@ void ClientThink_real( gentity_t *ent )
client->lastSlowTime + ABUILDER_BLOB_TIME < level.time )
client->ps.stats[ STAT_STATE ] &= ~SS_SLOWLOCKED;
- if( ( client->ps.stats[ STAT_STATE ] & SS_BOOSTED ) &&
- level.time - client->boostedTime >= BOOST_TIME )
- client->ps.stats[ STAT_STATE ] &= ~SS_BOOSTED;
+ // Update boosted state flags
+ client->ps.stats[ STAT_STATE ] &= ~SS_BOOSTEDWARNING;
+ if( client->ps.stats[ STAT_STATE ] & SS_BOOSTED )
+ {
+ if( level.time - client->boostedTime >= BOOST_TIME )
+ client->ps.stats[ STAT_STATE ] &= ~SS_BOOSTED;
+ else if( level.time - client->boostedTime >= BOOST_WARN_TIME )
+ client->ps.stats[ STAT_STATE ] |= SS_BOOSTEDWARNING;
+ }
// Check if poison cloud has worn off
if( ( client->ps.eFlags & EF_POISONCLOUDED ) &&
@@ -1429,7 +1435,7 @@ void ClientThink_real( gentity_t *ent )
BG_UpgradeIsActive( UP_MEDKIT, client->ps.stats ) )
{
//if currently using a medkit or have no need for a medkit now
- if( client->ps.stats[ STAT_STATE ] & SS_HEALING_ACTIVE ||
+ if( client->ps.stats[ STAT_STATE ] & SS_HEALING_2X ||
( client->ps.stats[ STAT_HEALTH ] == client->ps.stats[ STAT_MAX_HEALTH ] &&
!( client->ps.stats[ STAT_STATE ] & SS_POISONED ) ) )
{
@@ -1444,7 +1450,7 @@ void ClientThink_real( gentity_t *ent )
client->ps.stats[ STAT_STATE ] &= ~SS_POISONED;
client->poisonImmunityTime = level.time + MEDKIT_POISON_IMMUNITY_TIME;
- client->ps.stats[ STAT_STATE ] |= SS_HEALING_ACTIVE;
+ client->ps.stats[ STAT_STATE ] |= SS_HEALING_2X;
client->lastMedKitTime = level.time;
client->medKitHealthToRestore =
client->ps.stats[ STAT_MAX_HEALTH ] - client->ps.stats[ STAT_HEALTH ];
diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c
index 96a8face..dd4a9672 100644
--- a/src/game/g_buildable.c
+++ b/src/game/g_buildable.c
@@ -668,10 +668,11 @@ A generic pain function for Alien buildables
*/
void AGeneric_Pain( gentity_t *self, gentity_t *attacker, int damage )
{
- if( rand( ) % 1 )
- G_SetBuildableAnim( self, BANIM_PAIN1, qfalse );
- else
- G_SetBuildableAnim( self, BANIM_PAIN2, qfalse );
+ if( self->health <= 0 )
+ return;
+
+ // Alien buildables only have the first pain animation defined
+ G_SetBuildableAnim( self, BANIM_PAIN1, qfalse );
}
@@ -693,19 +694,7 @@ void ASpawn_Die( gentity_t *self, gentity_t *inflictor, gentity_t *attacker, int
{
int i;
- G_RewardAttackers( self );
- G_SetBuildableAnim( self, BANIM_DESTROY1, qtrue );
- G_SetIdleBuildableAnim( self, BANIM_DESTROYED );
-
- self->die = nullDieFunction;
- self->think = AGeneric_Blast;
-
- if( self->spawned )
- self->nextthink = level.time + 5000;
- else
- self->nextthink = level.time; //blast immediately
-
- self->s.eFlags &= ~EF_FIRING; //prevent any firing effects
+ AGeneric_Die( self, inflictor, attacker, damage, mod );
// All supported structures that no longer have creep will have been killed
// by whoever killed this structure
@@ -718,24 +707,6 @@ void ASpawn_Die( gentity_t *self, gentity_t *inflictor, gentity_t *attacker, int
continue;
ent->killedBy = attacker - g_entities;
}
-
- if( attacker && attacker->client )
- {
- if( attacker->client->ps.stats[ STAT_PTEAM ] == PTE_ALIENS &&
- !self->deconstruct )
- {
- G_TeamCommand( PTE_ALIENS,
- va( "print \"%s ^3DESTROYED^7 by teammate %s^7\n\"",
- BG_FindHumanNameForBuildable( self->s.modelindex ),
- attacker->client->pers.netname ) );
- }
-
- G_LogPrintf( "Decon: %i %i %i: %s destroyed %s by %s\n",
- attacker->client->ps.clientNum, self->s.modelindex, mod,
- attacker->client->pers.netname,
- BG_FindNameForBuildable( self->s.modelindex ),
- modNames[ mod ] );
- }
}
/*
@@ -775,18 +746,6 @@ void ASpawn_Think( gentity_t *self )
self->nextthink = level.time + BG_FindNextThinkForBuildable( self->s.modelindex );
}
-/*
-================
-ASpawn_Pain
-
-pain function for Alien Spawn
-================
-*/
-void ASpawn_Pain( gentity_t *self, gentity_t *attacker, int damage )
-{
- G_SetBuildableAnim( self, BANIM_PAIN1, qfalse );
-}
-
@@ -913,6 +872,9 @@ Barricade pain animation depends on shrunk state
*/
void ABarricade_Pain( gentity_t *self, gentity_t *attacker, int damage )
{
+ if( self->health <= 0 )
+ return;
+
if( !self->shrunkTime )
G_SetBuildableAnim( self, BANIM_PAIN1, qfalse );
else
@@ -1193,6 +1155,9 @@ pain function for Alien Hive
*/
void AHive_Pain( gentity_t *self, gentity_t *attacker, int damage )
{
+ if( self->health <= 0 || !G_IsOvermindBuilt( ) )
+ return;
+
if( !self->active )
AHive_CheckTarget( self, attacker );
@@ -1861,7 +1826,7 @@ void HMedistat_Die( gentity_t *self, gentity_t *inflictor,
{
//clear target's healing flag
if( self->enemy && self->enemy->client )
- self->enemy->client->ps.stats[ STAT_STATE ] &= ~SS_HEALING_3X;
+ self->enemy->client->ps.stats[ STAT_STATE ] &= ~SS_HEALING_ACTIVE;
HSpawn_Die( self, inflictor, attacker, damage, mod );
}
@@ -1885,7 +1850,7 @@ void HMedistat_Think( gentity_t *self )
//clear target's healing flag
if( self->enemy && self->enemy->client )
- self->enemy->client->ps.stats[ STAT_STATE ] &= ~SS_HEALING_3X;
+ self->enemy->client->ps.stats[ STAT_STATE ] &= ~SS_HEALING_ACTIVE;
//make sure we have power
if( !( self->powered = G_FindPower( self ) ) )
@@ -1926,7 +1891,7 @@ void HMedistat_Think( gentity_t *self )
player->client->ps.pm_type != PM_DEAD )
{
occupied = qtrue;
- player->client->ps.stats[ STAT_STATE ] |= SS_HEALING_3X;
+ player->client->ps.stats[ STAT_STATE ] |= SS_HEALING_ACTIVE;
}
}
@@ -1952,7 +1917,7 @@ void HMedistat_Think( gentity_t *self )
{
G_SetBuildableAnim( self, BANIM_ATTACK1, qfalse );
self->active = qtrue;
- player->client->ps.stats[ STAT_STATE ] |= SS_HEALING_3X;
+ player->client->ps.stats[ STAT_STATE ] |= SS_HEALING_ACTIVE;
}
}
else if( !BG_InventoryContainsUpgrade( UP_MEDKIT, player->client->ps.stats ) )
@@ -3238,7 +3203,7 @@ static gentity_t *G_Build( gentity_t *builder, buildable_t buildable, vec3_t ori
case BA_A_SPAWN:
built->die = ASpawn_Die;
built->think = ASpawn_Think;
- built->pain = ASpawn_Pain;
+ built->pain = AGeneric_Pain;
break;
case BA_A_BARRICADE:
@@ -3260,7 +3225,7 @@ static gentity_t *G_Build( gentity_t *builder, buildable_t buildable, vec3_t ori
case BA_A_ACIDTUBE:
built->die = AGeneric_Die;
built->think = AAcidTube_Think;
- built->pain = ASpawn_Pain;
+ built->pain = AGeneric_Pain;
break;
case BA_A_HIVE:
@@ -3272,20 +3237,20 @@ static gentity_t *G_Build( gentity_t *builder, buildable_t buildable, vec3_t ori
case BA_A_TRAPPER:
built->die = AGeneric_Die;
built->think = ATrapper_Think;
- built->pain = ASpawn_Pain;
+ built->pain = AGeneric_Pain;
break;
case BA_A_OVERMIND:
built->die = ASpawn_Die;
built->think = AOvermind_Think;
- built->pain = ASpawn_Pain;
+ built->pain = AGeneric_Pain;
break;
case BA_A_HOVEL:
built->die = AHovel_Die;
built->use = AHovel_Use;
built->think = AHovel_Think;
- built->pain = ASpawn_Pain;
+ built->pain = AGeneric_Pain;
break;
case BA_H_SPAWN:
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c
index 29a2acc4..01abca02 100644
--- a/src/game/g_cmds.c
+++ b/src/game/g_cmds.c
@@ -366,8 +366,17 @@ void Cmd_Give_f( gentity_t *ent )
if( Q_stricmp( name, "poison" ) == 0 )
{
- ent->client->ps.stats[ STAT_STATE ] |= SS_BOOSTED;
- ent->client->boostedTime = level.time;
+ if( ent->client->pers.teamSelection == PTE_HUMANS )
+ {
+ ent->client->ps.stats[ STAT_STATE ] |= SS_POISONED;
+ ent->client->lastPoisonTime = level.time;
+ ent->client->lastPoisonClient = ent;
+ }
+ else
+ {
+ ent->client->ps.stats[ STAT_STATE ] |= SS_BOOSTED;
+ ent->client->boostedTime = level.time;
+ }
}
if( give_all || Q_stricmp( name, "ammo" ) == 0 )
diff --git a/src/game/g_combat.c b/src/game/g_combat.c
index a347b921..1abb9780 100644
--- a/src/game/g_combat.c
+++ b/src/game/g_combat.c
@@ -871,12 +871,8 @@ void G_Damage( gentity_t *targ, gentity_t *inflictor, gentity_t *attacker,
int asave = 0;
int knockback;
- if( !targ->takedamage )
- return;
-
- // the intermission has allready been qualified for, so don't
- // allow any extra scoring
- if( level.intermissionQueued )
+ // Can't deal damage sometimes
+ if( !targ->takedamage || targ->health <= 0 || level.intermissionQueued )
return;
if( !inflictor )
@@ -896,12 +892,8 @@ void G_Damage( gentity_t *targ, gentity_t *inflictor, gentity_t *attacker,
}
client = targ->client;
-
- if( client )
- {
- if( client->noclip )
- return;
- }
+ if( client && client->noclip )
+ return;
if( !dir )
dflags |= DAMAGE_NO_KNOCKBACK;
diff --git a/src/game/g_weapon.c b/src/game/g_weapon.c
index c78e6ec6..a74848f4 100644
--- a/src/game/g_weapon.c
+++ b/src/game/g_weapon.c
@@ -77,8 +77,6 @@ void G_ForceWeaponChange( gentity_t *ent, weapon_t weapon )
// force this here to prevent flamer effect from continuing
ps->generic1 = WPM_NOTFIRING;
-
- ps->weapon = ent->client->ps.persistant[ PERS_NEWWEAPON ];
}
/*
@@ -1355,23 +1353,26 @@ void G_ChargeAttack( gentity_t *ent, gentity_t *victim )
vec3_t forward, normal;
if( ent->client->ps.stats[ STAT_MISC ] <= 0 ||
- !( ent->client->ps.stats[ STAT_STATE ] & SS_CHARGING ) )
+ !( ent->client->ps.stats[ STAT_STATE ] & SS_CHARGING ) ||
+ ent->client->ps.weaponTime )
return;
VectorSubtract( victim->s.origin, ent->s.origin, forward );
VectorNormalize( forward );
VectorNegate( forward, normal );
-
+
if( !victim->takedamage )
return;
WideBloodSpurt( ent, victim, NULL );
damage = LEVEL4_TRAMPLE_DMG * ent->client->ps.stats[ STAT_MISC ] /
- LEVEL4_TRAMPLE_CHARGE_MAX;
+ LEVEL4_TRAMPLE_DURATION;
G_Damage( victim, ent, ent, forward, victim->s.origin, damage,
- 0, MOD_LEVEL4_TRAMPLE );
+ DAMAGE_NO_LOCDAMAGE, MOD_LEVEL4_TRAMPLE );
+
+ ent->client->ps.weaponTime += LEVEL4_TRAMPLE_REPEAT;
if( !victim->client )
ent->client->ps.stats[ STAT_MISC ] = 0;
@@ -1539,6 +1540,10 @@ void FireWeapon( gentity_t *ent )
// Hive muzzle point is on the tip
if( ent->s.eType == ET_BUILDABLE && ent->s.modelindex == BA_A_HIVE )
VectorMA( muzzle, ent->r.maxs[ 2 ], ent->s.origin2, muzzle );
+
+ // Tesla generator muzzle point is offset too
+ if( ent->s.eType == ET_BUILDABLE && ent->s.modelindex == BA_H_TESLAGEN )
+ VectorMA( muzzle, 28.0f, ent->s.origin2, muzzle );
}
// fire the specific weapon
diff --git a/src/game/tremulous.h b/src/game/tremulous.h
index b0d3cb8e..30ea1d2f 100644
--- a/src/game/tremulous.h
+++ b/src/game/tremulous.h
@@ -117,15 +117,12 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define LEVEL4_TRAMPLE_DMG ADM(110)
#define LEVEL4_TRAMPLE_SPEED 2.0f
-#define LEVEL4_TRAMPLE_CHARGE_TIME_MIN 375
-#define LEVEL4_TRAMPLE_CHARGE_TIME_MAX 1000
-#define LEVEL4_TRAMPLE_DURATION 3000
-#define LEVEL4_TRAMPLE_STOP_PENALTY 1 // msec of charge lost when stopped
-
-#define LEVEL4_TRAMPLE_CHARGE_MIN ( LEVEL4_TRAMPLE_CHARGE_TIME_MIN * \
- LEVEL4_TRAMPLE_DURATION / \
- LEVEL4_TRAMPLE_CHARGE_TIME_MAX )
-#define LEVEL4_TRAMPLE_CHARGE_MAX LEVEL4_TRAMPLE_DURATION
+#define LEVEL4_TRAMPLE_CHARGE_MIN 375 // minimum msec to start a charge
+#define LEVEL4_TRAMPLE_CHARGE_MAX 1000 // msec to maximum charge stored
+#define LEVEL4_TRAMPLE_CHARGE_TRIGGER 3000 // msec charge starts on its own
+#define LEVEL4_TRAMPLE_DURATION 3000 // msec trample lasts on full charge
+#define LEVEL4_TRAMPLE_STOP_PENALTY 1 // charge lost per msec when stopped
+#define LEVEL4_TRAMPLE_REPEAT 50 // msec before a trample will rehit a player
#define LEVEL4_CRUSH_DAMAGE_PER_V 0.5f // damage per falling velocity
#define LEVEL4_CRUSH_DAMAGE 120 // to players only
@@ -265,6 +262,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define BOOSTER_REGEN_MOD 3.0f
#define BOOSTER_VALUE ABVM(BOOSTER_BP)
#define BOOST_TIME 20000
+#define BOOST_WARN_TIME 15000
#define ACIDTUBE_BP 8
#define ACIDTUBE_BT 15000
@@ -455,9 +453,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define LCANNON_PRICE 600
#define LCANNON_AMMO 80
-#define LCANNON_REPEAT 1000
#define LCANNON_K_SCALE 1.0f
-#define LCANNON_CHARGEREPEAT 500
+#define LCANNON_REPEAT 500
#define LCANNON_RELOAD 0
#define LCANNON_DAMAGE HDM(265)
#define LCANNON_RADIUS 150
@@ -465,6 +462,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define LCANNON_SECONDARY_RADIUS 75
#define LCANNON_SECONDARY_SPEED 1400
#define LCANNON_SECONDARY_RELOAD 2000
+#define LCANNON_SECONDARY_REPEAT 1000
#define LCANNON_SPEED 700
#define LCANNON_CHARGE_TIME_MAX 3000
#define LCANNON_CHARGE_TIME_MIN 100