Skip to content

Commit

Permalink
VERSION{v2.14}
Browse files Browse the repository at this point in the history
updated to v2.14
  • Loading branch information
springraaar committed Apr 25, 2023
1 parent 74de14a commit 7479a49
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 12 deletions.
10 changes: 10 additions & 0 deletions changelog.nfo
@@ -1,3 +1,13 @@
2023/04/25 ------------------ NOTES v2.14 ----------------------

--- Balance / Mechanics

- Fixed issue with GEAR "Luminator" heatrays not targetting air units
- Fixed aiming conflicts which could cause AVEN "Tribune" to not fire at significantly higher or lower targets
- Increased CLAW "Fury" collision volume
- Reduced the blast radius and damage for covert ops centers


2023/04/24 ------------------ NOTES v2.13 ----------------------

--- New units
Expand Down
2 changes: 1 addition & 1 deletion scripts/aven_tribune.bos
Expand Up @@ -171,7 +171,7 @@ AimFromPrimary(piecenum)

AimSecondary(heading, pitch)
{
call-script updateAimHelper1(heading,<0>,<150>,<150>,HEADING_TOLERANCE2,PITCH_TOLERANCE2);
call-script updateAimHelper1(heading,pitch,<150>,<150>,HEADING_TOLERANCE2,PITCH_TOLERANCE2);
set-signal-mask SIG_AIM;
turn turret to y-axis heading speed <150.038462>;
turn lbox2 to x-axis <-15.000000> speed <150.000000>;
Expand Down
Binary file modified scripts/aven_tribune.cob
Binary file not shown.
4 changes: 2 additions & 2 deletions units/aven_covert_ops_center.fbi
Expand Up @@ -75,8 +75,8 @@
//************************************************************
// Weapons
//***********
explodeAs=FUSION_BUILDING_BIG;
selfDestructAs=FUSION_BUILDING_BIG;
explodeAs=EXPLOSIVE_UNIT_BLAST;
selfDestructAs=EXPLOSIVE_UNIT_BLAST;

//************************************************************
// Orders
Expand Down
4 changes: 2 additions & 2 deletions units/claw_covert_ops_center.fbi
Expand Up @@ -75,8 +75,8 @@
//************************************************************
// Weapons
//***********
explodeAs=FUSION_BUILDING_BIG;
selfDestructAs=FUSION_BUILDING_BIG;
explodeAs=EXPLOSIVE_UNIT_BLAST;
selfDestructAs=EXPLOSIVE_UNIT_BLAST;

//************************************************************
// Orders
Expand Down
2 changes: 1 addition & 1 deletion units/claw_fury.fbi
Expand Up @@ -97,7 +97,7 @@
CanLoopbackAttack=0;
collide=1;
collisionVolumeType = box;
collisionVolumeScales =55 40 50;
collisionVolumeScales =65 45 53;
collisionVolumeOffsets = 0 0 0;
collisionVolumeTest = 1;

Expand Down
4 changes: 2 additions & 2 deletions units/gear_covert_ops_center.fbi
Expand Up @@ -75,8 +75,8 @@
//************************************************************
// Weapons
//***********
explodeAs=FUSION_BUILDING_BIG;
selfDestructAs=FUSION_BUILDING_BIG;
explodeAs=EXPLOSIVE_UNIT_BLAST;
selfDestructAs=EXPLOSIVE_UNIT_BLAST;

//************************************************************
// Orders
Expand Down
2 changes: 1 addition & 1 deletion units/gear_lesser_luminator.fbi
Expand Up @@ -79,7 +79,7 @@
//***********
weapon1=gear_lesser_luminator_heatray;
noChaseCategory=VTOL;
onlytargetcategory1=NOTAIR;
badTargetCategory1=VTOL;
explodeAs=HAZ_BLAST;
selfDestructAs=HAZ_BLAST;

Expand Down
6 changes: 3 additions & 3 deletions units/gear_luminator.fbi
Expand Up @@ -78,11 +78,11 @@
// Weapons
//***********
weapon1=gear_luminator_heatray;
onlytargetcategory1=NOTAIR;
badTargetCategory1=VTOL;
weapon2=gear_luminator_missile;
badtargetcategory2=NOTAIR;
badTargetCategory2=NOTAIR;
weapon3=gear_luminator_flare;
badtargetcategory3=NOTAIR;
badTargetCategory3=NOTAIR;
noChaseCategory=VTOL;
explodeAs=LUMINATOR_BLAST;
selfDestructAs=LUMINATOR_BLAST;
Expand Down

0 comments on commit 7479a49

Please sign in to comment.