diff options
-rw-r--r-- | src/game/bg_misc.c | 24 | ||||
-rw-r--r-- | src/game/tremulous.h | 4 |
2 files changed, 14 insertions, 14 deletions
diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c index 4300cfa1..00ddf63f 100644 --- a/src/game/bg_misc.c +++ b/src/game/bg_misc.c @@ -58,7 +58,7 @@ buildableAttributes_t bg_buildableList[ ] = "team_alien_barricade",//char *entityName; { "models/buildables/barricade/barricade.md3", 0, 0, 0 }, { -35, -35, -15 }, //vec3_t mins; - { 35, 35, 15 }, //vec3_t maxs; + { 35, 35, 60 }, //vec3_t maxs; TR_GRAVITY, //trType_t traj; 0.0, //float bounce; BARRICADE_BP, //int buildPoints; @@ -119,8 +119,8 @@ buildableAttributes_t bg_buildableList[ ] = "Acid Tube", //char *humanName; "team_alien_acid_tube",//char *entityName; { "models/buildables/acid_tube/acid_tube.md3", 0, 0, 0 }, - { -15, -15, -15 }, //vec3_t mins; - { 15, 15, 15 }, //vec3_t maxs; + { -35, -35, -11 }, //vec3_t mins; + { 35, 35, 40 }, //vec3_t maxs; TR_GRAVITY, //trType_t traj; 0.0, //float bounce; ACIDTUBE_BP, //int buildPoints; @@ -182,7 +182,7 @@ buildableAttributes_t bg_buildableList[ ] = "team_alien_hivemind", //char *entityName; { "models/buildables/hivemind/hivemind.md3", 0, 0, 0 }, { -45, -45, -15 }, //vec3_t mins; - { 45, 45, 15 }, //vec3_t maxs; + { 45, 45, 95 }, //vec3_t maxs; TR_GRAVITY, //trType_t traj; 0.0, //float bounce; OVERMIND_BP, //int buildPoints; @@ -431,8 +431,8 @@ buildableAttributes_t bg_buildableList[ ] = "Defence Computer", //char *humanName; "team_human_dcc", //char *entityName; { "models/buildables/dcc/dcc.md3", 0, 0, 0 }, - { -35, -35, -15 }, //vec3_t mins; - { 35, 35, 15 }, //vec3_t maxs; + { -35, -35, -13 }, //vec3_t mins; + { 35, 35, 47 }, //vec3_t maxs; TR_GRAVITY, //trType_t traj; 0.0, //float bounce; DC_BP, //int buildPoints; @@ -462,8 +462,8 @@ buildableAttributes_t bg_buildableList[ ] = "Bank", //char *humanName; "team_human_bank", //char *entityName; { "models/buildables/bank/bank.md3", 0, 0, 0 }, - { -25, -25, -15 }, //vec3_t mins; - { 25, 25, 15 }, //vec3_t maxs; + { -25, -25, 0 }, //vec3_t mins; + { 25, 25, 45 }, //vec3_t maxs; TR_GRAVITY, //trType_t traj; 0.0, //float bounce; BANK_BP, //int buildPoints; @@ -493,8 +493,8 @@ buildableAttributes_t bg_buildableList[ ] = "Armoury", //char *humanName; "team_human_armoury", //char *entityName; { "models/buildables/mcu/mcu.md3", 0, 0, 0 }, - { -40, -40, -15 }, //vec3_t mins; - { 40, 40, 15 }, //vec3_t maxs; + { -40, -40, -13 }, //vec3_t mins; + { 40, 40, 50 }, //vec3_t maxs; TR_GRAVITY, //trType_t traj; 0.0, //float bounce; ARMOURY_BP, //int buildPoints; @@ -525,7 +525,7 @@ buildableAttributes_t bg_buildableList[ ] = "team_human_reactor", //char *entityName; { "models/buildables/reactor/reactor.md3", 0, 0, 0 }, { -50, -50, -15 }, //vec3_t mins; - { 50, 50, 15 }, //vec3_t maxs; + { 50, 50, 95 }, //vec3_t maxs; TR_GRAVITY, //trType_t traj; 0.0, //float bounce; REACTOR_BP, //int buildPoints; @@ -556,7 +556,7 @@ buildableAttributes_t bg_buildableList[ ] = "team_human_repeater", //char *entityName; { "models/buildables/repeater/repeater.md3", 0, 0, 0 }, { -15, -15, -15 }, //vec3_t mins; - { 15, 15, 15 }, //vec3_t maxs; + { 15, 15, 25 }, //vec3_t maxs; TR_GRAVITY, //trType_t traj; 0.0, //float bounce; REPEATER_BP, //int buildPoints; diff --git a/src/game/tremulous.h b/src/game/tremulous.h index 2c680066..d6013204 100644 --- a/src/game/tremulous.h +++ b/src/game/tremulous.h @@ -175,7 +175,7 @@ #define ALIEN_BHLTH_MODIFIER 1.0f #define ABHM(h) ((int)((float)h*ALIEN_BHLTH_MODIFIER)) -#define CREEP_BASESIZE 360 +#define CREEP_BASESIZE 700 #define ASPAWN_BP 100 #define ASPAWN_HEALTH ABHM(500) @@ -424,7 +424,7 @@ #define TESLAGEN_HEALTH HBHM(200) #define TESLAGEN_SPLASHDAMAGE 50 #define TESLAGEN_SPLASHRADIUS 100 -#define TESLAGEN_REPEAT 150 +#define TESLAGEN_REPEAT 1500 #define TESLAGEN_RANGE 1500 #define DC_BP 80 |