Merge pull request #12004 from reaperrr/projectile-cleanup2
More projectile property streamlining and cleanups
This commit is contained in:
@@ -19,6 +19,7 @@ namespace OpenRA
|
|||||||
public struct WAngle : IEquatable<WAngle>
|
public struct WAngle : IEquatable<WAngle>
|
||||||
{
|
{
|
||||||
public readonly int Angle;
|
public readonly int Angle;
|
||||||
|
public int AngleSquared { get { return (int)Angle * Angle; } }
|
||||||
|
|
||||||
public WAngle(int a)
|
public WAngle(int a)
|
||||||
{
|
{
|
||||||
|
|||||||
70
OpenRA.Mods.Common/Lint/CheckAngle.cs
Normal file
70
OpenRA.Mods.Common/Lint/CheckAngle.cs
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2016 The OpenRA Developers (see AUTHORS)
|
||||||
|
* This file is part of OpenRA, which is free software. It is made
|
||||||
|
* available to you under the terms of the GNU General Public License
|
||||||
|
* as published by the Free Software Foundation, either version 3 of
|
||||||
|
* the License, or (at your option) any later version. For more
|
||||||
|
* information, see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Linq;
|
||||||
|
using OpenRA.Mods.Common.Projectiles;
|
||||||
|
using OpenRA.Mods.Common.Traits;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Lint
|
||||||
|
{
|
||||||
|
class CheckAngle : ILintRulesPass
|
||||||
|
{
|
||||||
|
public void Run(Action<string> emitError, Action<string> emitWarning, Ruleset rules)
|
||||||
|
{
|
||||||
|
foreach (var weaponInfo in rules.Weapons)
|
||||||
|
{
|
||||||
|
var missile = weaponInfo.Value.Projectile as MissileInfo;
|
||||||
|
if (missile != null)
|
||||||
|
{
|
||||||
|
var minAngle = missile.MinimumLaunchAngle.Angle;
|
||||||
|
var maxAngle = missile.MaximumLaunchAngle.Angle;
|
||||||
|
|
||||||
|
// If both angles are identical, we only need to test one of them
|
||||||
|
var testMaxAngle = minAngle != maxAngle;
|
||||||
|
CheckLaunchAngles(weaponInfo.Key, minAngle, testMaxAngle, maxAngle, emitError);
|
||||||
|
}
|
||||||
|
|
||||||
|
var bullet = weaponInfo.Value.Projectile as BulletInfo;
|
||||||
|
if (bullet != null)
|
||||||
|
{
|
||||||
|
var minAngle = bullet.LaunchAngle[0].Angle;
|
||||||
|
var maxAngle = bullet.LaunchAngle.Length > 1 ? bullet.LaunchAngle[1].Angle : minAngle;
|
||||||
|
|
||||||
|
// If both angles are identical, we only need to test one of them
|
||||||
|
var testMaxAngle = minAngle != maxAngle;
|
||||||
|
CheckLaunchAngles(weaponInfo.Key, minAngle, testMaxAngle, maxAngle, emitError);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool InvalidAngle(int value)
|
||||||
|
{
|
||||||
|
return value > 255 && value < 769;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void CheckLaunchAngles(string weaponInfo, int minAngle, bool testMaxAngle, int maxAngle, Action<string> emitError)
|
||||||
|
{
|
||||||
|
if (InvalidAngle(minAngle))
|
||||||
|
emitError("Weapon `{0}`: Projectile minimum LaunchAngle must not exceed (-)255!".F(weaponInfo));
|
||||||
|
if (testMaxAngle && InvalidAngle(maxAngle))
|
||||||
|
emitError("Weapon `{0}`: Projectile maximum LaunchAngle must not exceed (-)255!".F(weaponInfo));
|
||||||
|
|
||||||
|
if ((minAngle < 256) && (maxAngle < 256) && (minAngle > maxAngle))
|
||||||
|
emitError("Weapon `{0}`: Projectile minimum LaunchAngle must not exceed maximum LaunchAngle!".F(weaponInfo));
|
||||||
|
if ((minAngle > 768) && (maxAngle > 768) && (minAngle > maxAngle))
|
||||||
|
emitError("Weapon `{0}`: Projectile minimum LaunchAngle must not exceed maximum LaunchAngle!".F(weaponInfo));
|
||||||
|
if ((minAngle < 256) && (maxAngle > 768))
|
||||||
|
emitError("Weapon `{0}`: Projectile minimum LaunchAngle must not exceed maximum LaunchAngle!".F(weaponInfo));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -168,6 +168,7 @@
|
|||||||
<Compile Include="HitShapes\Capsule.cs" />
|
<Compile Include="HitShapes\Capsule.cs" />
|
||||||
<Compile Include="HitShapes\Circle.cs" />
|
<Compile Include="HitShapes\Circle.cs" />
|
||||||
<Compile Include="Lint\CheckBuildingFootprint.cs" />
|
<Compile Include="Lint\CheckBuildingFootprint.cs" />
|
||||||
|
<Compile Include="Lint\CheckAngle.cs" />
|
||||||
<Compile Include="Lint\CheckSequences.cs" />
|
<Compile Include="Lint\CheckSequences.cs" />
|
||||||
<Compile Include="Lint\CheckPalettes.cs" />
|
<Compile Include="Lint\CheckPalettes.cs" />
|
||||||
<Compile Include="Lint\CheckPlayers.cs" />
|
<Compile Include="Lint\CheckPlayers.cs" />
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ namespace OpenRA.Mods.Common.Projectiles
|
|||||||
public readonly WDist TargetExtraSearchRadius = new WDist(1536);
|
public readonly WDist TargetExtraSearchRadius = new WDist(1536);
|
||||||
|
|
||||||
[Desc("Arc in WAngles, two values indicate variable arc.")]
|
[Desc("Arc in WAngles, two values indicate variable arc.")]
|
||||||
public readonly WAngle[] Angle = { WAngle.Zero };
|
public readonly WAngle[] LaunchAngle = { WAngle.Zero };
|
||||||
|
|
||||||
[Desc("Interval in ticks between each spawned Trail animation.")]
|
[Desc("Interval in ticks between each spawned Trail animation.")]
|
||||||
public readonly int TrailInterval = 2;
|
public readonly int TrailInterval = 2;
|
||||||
@@ -97,11 +97,11 @@ namespace OpenRA.Mods.Common.Projectiles
|
|||||||
string trailPalette;
|
string trailPalette;
|
||||||
|
|
||||||
[Sync] WPos pos, target;
|
[Sync] WPos pos, target;
|
||||||
[Sync] int length;
|
int length;
|
||||||
[Sync] int facing;
|
[Sync] int facing;
|
||||||
[Sync] int ticks, smokeTicks;
|
int ticks, smokeTicks;
|
||||||
|
|
||||||
[Sync] public Actor SourceActor { get { return args.SourceActor; } }
|
public Actor SourceActor { get { return args.SourceActor; } }
|
||||||
|
|
||||||
public Bullet(BulletInfo info, ProjectileArgs args)
|
public Bullet(BulletInfo info, ProjectileArgs args)
|
||||||
{
|
{
|
||||||
@@ -111,10 +111,10 @@ namespace OpenRA.Mods.Common.Projectiles
|
|||||||
|
|
||||||
var world = args.SourceActor.World;
|
var world = args.SourceActor.World;
|
||||||
|
|
||||||
if (info.Angle.Length > 1)
|
if (info.LaunchAngle.Length > 1)
|
||||||
angle = new WAngle(world.SharedRandom.Next(info.Angle[0].Angle, info.Angle[1].Angle));
|
angle = new WAngle(world.SharedRandom.Next(info.LaunchAngle[0].Angle, info.LaunchAngle[1].Angle));
|
||||||
else
|
else
|
||||||
angle = info.Angle[0];
|
angle = info.LaunchAngle[0];
|
||||||
|
|
||||||
if (info.Speed.Length > 1)
|
if (info.Speed.Length > 1)
|
||||||
speed = new WDist(world.SharedRandom.Next(info.Speed[0].Length, info.Speed[1].Length));
|
speed = new WDist(world.SharedRandom.Next(info.Speed[0].Length, info.Speed[1].Length));
|
||||||
|
|||||||
@@ -159,6 +159,11 @@ namespace OpenRA.Mods.Common.Projectiles
|
|||||||
readonly Animation anim;
|
readonly Animation anim;
|
||||||
|
|
||||||
readonly WVec gravity;
|
readonly WVec gravity;
|
||||||
|
readonly int minLaunchSpeed;
|
||||||
|
readonly int maxLaunchSpeed;
|
||||||
|
readonly int maxSpeed;
|
||||||
|
readonly WAngle minLaunchAngle;
|
||||||
|
readonly WAngle maxLaunchAngle;
|
||||||
|
|
||||||
int ticks;
|
int ticks;
|
||||||
|
|
||||||
@@ -201,6 +206,11 @@ namespace OpenRA.Mods.Common.Projectiles
|
|||||||
gravity = new WVec(0, 0, -info.Gravity);
|
gravity = new WVec(0, 0, -info.Gravity);
|
||||||
targetPosition = args.PassiveTarget;
|
targetPosition = args.PassiveTarget;
|
||||||
rangeLimit = info.RangeLimit != WDist.Zero ? info.RangeLimit : args.Weapon.Range;
|
rangeLimit = info.RangeLimit != WDist.Zero ? info.RangeLimit : args.Weapon.Range;
|
||||||
|
minLaunchSpeed = info.MinimumLaunchSpeed.Length > -1 ? info.MinimumLaunchSpeed.Length : info.Speed.Length;
|
||||||
|
maxLaunchSpeed = info.MaximumLaunchSpeed.Length > -1 ? info.MaximumLaunchSpeed.Length : info.Speed.Length;
|
||||||
|
maxSpeed = info.Speed.Length;
|
||||||
|
minLaunchAngle = info.MinimumLaunchAngle;
|
||||||
|
maxLaunchAngle = info.MaximumLaunchAngle;
|
||||||
|
|
||||||
var world = args.SourceActor.World;
|
var world = args.SourceActor.World;
|
||||||
|
|
||||||
@@ -248,13 +258,11 @@ namespace OpenRA.Mods.Common.Projectiles
|
|||||||
void DetermineLaunchSpeedAndAngleForIncline(int predClfDist, int diffClfMslHgt, int relTarHorDist,
|
void DetermineLaunchSpeedAndAngleForIncline(int predClfDist, int diffClfMslHgt, int relTarHorDist,
|
||||||
out int speed, out int vFacing)
|
out int speed, out int vFacing)
|
||||||
{
|
{
|
||||||
var minLaunchSpeed = info.MinimumLaunchSpeed.Length > -1 ? info.MinimumLaunchSpeed.Length : info.Speed.Length;
|
speed = maxLaunchSpeed;
|
||||||
var maxLaunchSpeed = info.MaximumLaunchSpeed.Length > -1 ? info.MaximumLaunchSpeed.Length : info.Speed.Length;
|
|
||||||
speed = info.MaximumLaunchSpeed.Length > -1 ? info.MaximumLaunchSpeed.Length : info.Speed.Length;
|
|
||||||
|
|
||||||
// Find smallest vertical facing, for which the missile will be able to climb terrAltDiff w-units
|
// Find smallest vertical facing, for which the missile will be able to climb terrAltDiff w-units
|
||||||
// within hHeightChange w-units all the while ending the ascent with vertical facing 0
|
// within hHeightChange w-units all the while ending the ascent with vertical facing 0
|
||||||
vFacing = info.MaximumLaunchAngle.Angle >> 2;
|
vFacing = maxLaunchAngle.Angle >> 2;
|
||||||
|
|
||||||
// Compute minimum speed necessary to both be able to face directly upwards and have enough space
|
// Compute minimum speed necessary to both be able to face directly upwards and have enough space
|
||||||
// to hit the target without passing it by (and thus having to do horizontal loops)
|
// to hit the target without passing it by (and thus having to do horizontal loops)
|
||||||
@@ -282,8 +290,8 @@ namespace OpenRA.Mods.Common.Projectiles
|
|||||||
// Find least vertical facing that will allow the missile to climb
|
// Find least vertical facing that will allow the missile to climb
|
||||||
// terrAltDiff w-units within hHeightChange w-units
|
// terrAltDiff w-units within hHeightChange w-units
|
||||||
// all the while ending the ascent with vertical facing 0
|
// all the while ending the ascent with vertical facing 0
|
||||||
vFacing = BisectionSearch(System.Math.Max((sbyte)(info.MinimumLaunchAngle.Angle >> 2), (sbyte)0),
|
vFacing = BisectionSearch(System.Math.Max((sbyte)(minLaunchAngle.Angle >> 2), (sbyte)0),
|
||||||
(sbyte)(info.MaximumLaunchAngle.Angle >> 2),
|
(sbyte)(maxLaunchAngle.Angle >> 2),
|
||||||
vFac => !WillClimbWithinDistance(vFac, loopRadius, predClfDist, diffClfMslHgt)) + 1;
|
vFac => !WillClimbWithinDistance(vFac, loopRadius, predClfDist, diffClfMslHgt)) + 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -291,7 +299,7 @@ namespace OpenRA.Mods.Common.Projectiles
|
|||||||
// TODO: Double check Launch parameter determination
|
// TODO: Double check Launch parameter determination
|
||||||
void DetermineLaunchSpeedAndAngle(World world, out int speed, out int vFacing)
|
void DetermineLaunchSpeedAndAngle(World world, out int speed, out int vFacing)
|
||||||
{
|
{
|
||||||
speed = info.MaximumLaunchSpeed.Length > -1 ? info.MaximumLaunchSpeed.Length : info.Speed.Length;
|
speed = maxLaunchSpeed;
|
||||||
loopRadius = LoopRadius(speed, info.VerticalRateOfTurn);
|
loopRadius = LoopRadius(speed, info.VerticalRateOfTurn);
|
||||||
|
|
||||||
// Compute current distance from target position
|
// Compute current distance from target position
|
||||||
@@ -309,8 +317,8 @@ namespace OpenRA.Mods.Common.Projectiles
|
|||||||
DetermineLaunchSpeedAndAngleForIncline(predClfDist, diffClfMslHgt, relTarHorDist, out speed, out vFacing);
|
DetermineLaunchSpeedAndAngleForIncline(predClfDist, diffClfMslHgt, relTarHorDist, out speed, out vFacing);
|
||||||
else if (lastHt != 0)
|
else if (lastHt != 0)
|
||||||
{
|
{
|
||||||
vFacing = System.Math.Max((sbyte)(info.MinimumLaunchAngle.Angle >> 2), (sbyte)0);
|
vFacing = System.Math.Max((sbyte)(minLaunchAngle.Angle >> 2), (sbyte)0);
|
||||||
speed = info.MaximumLaunchSpeed.Length > -1 ? info.MaximumLaunchSpeed.Length : info.Speed.Length;
|
speed = maxLaunchSpeed;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -324,8 +332,8 @@ namespace OpenRA.Mods.Common.Projectiles
|
|||||||
vFacing = 0;
|
vFacing = 0;
|
||||||
|
|
||||||
// Make sure the chosen vertical facing adheres to prescribed bounds
|
// Make sure the chosen vertical facing adheres to prescribed bounds
|
||||||
vFacing = vFacing.Clamp((sbyte)(info.MinimumLaunchAngle.Angle >> 2),
|
vFacing = vFacing.Clamp((sbyte)(minLaunchAngle.Angle >> 2),
|
||||||
(sbyte)(info.MaximumLaunchAngle.Angle >> 2));
|
(sbyte)(maxLaunchAngle.Angle >> 2));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -404,7 +412,7 @@ namespace OpenRA.Mods.Common.Projectiles
|
|||||||
|
|
||||||
void ChangeSpeed(int sign = 1)
|
void ChangeSpeed(int sign = 1)
|
||||||
{
|
{
|
||||||
speed = (speed + sign * info.Acceleration.Length).Clamp(0, info.Speed.Length);
|
speed = (speed + sign * info.Acceleration.Length).Clamp(0, maxSpeed);
|
||||||
|
|
||||||
// Compute the vertical loop radius
|
// Compute the vertical loop radius
|
||||||
loopRadius = LoopRadius(speed, info.VerticalRateOfTurn);
|
loopRadius = LoopRadius(speed, info.VerticalRateOfTurn);
|
||||||
@@ -415,7 +423,7 @@ namespace OpenRA.Mods.Common.Projectiles
|
|||||||
// Compute the projectile's freefall displacement
|
// Compute the projectile's freefall displacement
|
||||||
var move = velocity + gravity / 2;
|
var move = velocity + gravity / 2;
|
||||||
velocity += gravity;
|
velocity += gravity;
|
||||||
var velRatio = info.Speed.Length * 1024 / velocity.Length;
|
var velRatio = maxSpeed * 1024 / velocity.Length;
|
||||||
if (velRatio < 1024)
|
if (velRatio < 1024)
|
||||||
velocity = velocity * velRatio / 1024;
|
velocity = velocity * velRatio / 1024;
|
||||||
|
|
||||||
|
|||||||
@@ -497,6 +497,13 @@ namespace OpenRA.Mods.Common.UtilityCommands
|
|||||||
node.Key = "Duration";
|
node.Key = "Duration";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Rename Bullet Angle to LaunchAngle
|
||||||
|
if (engineVersion < 20161016)
|
||||||
|
{
|
||||||
|
if (node.Key == "Angle")
|
||||||
|
node.Key = "LaunchAngle";
|
||||||
|
}
|
||||||
|
|
||||||
UpgradeWeaponRules(modData, engineVersion, ref node.Value.Nodes, node, depth + 1);
|
UpgradeWeaponRules(modData, engineVersion, ref node.Value.Nodes, node, depth + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -123,7 +123,7 @@ ArtilleryShell:
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 204
|
Speed: 204
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Angle: 56
|
LaunchAngle: 56
|
||||||
Inaccuracy: 1c256
|
Inaccuracy: 1c256
|
||||||
ContrailLength: 30
|
ContrailLength: 30
|
||||||
Image: 120MM
|
Image: 120MM
|
||||||
|
|||||||
@@ -182,7 +182,7 @@ MammothMissiles:
|
|||||||
Blockable: false
|
Blockable: false
|
||||||
Shadow: true
|
Shadow: true
|
||||||
Inaccuracy: 853
|
Inaccuracy: 853
|
||||||
Angle: 62
|
LaunchAngle: 62
|
||||||
Image: DRAGON
|
Image: DRAGON
|
||||||
RateOfTurn: 2
|
RateOfTurn: 2
|
||||||
ContrailLength: 10
|
ContrailLength: 10
|
||||||
@@ -349,7 +349,7 @@ HonestJohn:
|
|||||||
TrailImage: smokey
|
TrailImage: smokey
|
||||||
Speed: 187
|
Speed: 187
|
||||||
RangeLimit: 35
|
RangeLimit: 35
|
||||||
Angle: 88
|
LaunchAngle: 88
|
||||||
Warhead@1Dam: SpreadDamage
|
Warhead@1Dam: SpreadDamage
|
||||||
Spread: 256
|
Spread: 256
|
||||||
Damage: 100
|
Damage: 100
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ Grenade:
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 140
|
Speed: 140
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Angle: 62
|
LaunchAngle: 62
|
||||||
Inaccuracy: 213
|
Inaccuracy: 213
|
||||||
Image: BOMB
|
Image: BOMB
|
||||||
Warhead@1Dam: SpreadDamage
|
Warhead@1Dam: SpreadDamage
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ Debris:
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 32, 96
|
Speed: 32, 96
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Angle: 30, 90
|
LaunchAngle: 30, 90
|
||||||
Inaccuracy: 1c256
|
Inaccuracy: 1c256
|
||||||
Image: shrapnel
|
Image: shrapnel
|
||||||
Warhead@1Dam: SpreadDamage
|
Warhead@1Dam: SpreadDamage
|
||||||
@@ -36,7 +36,7 @@ Debris2:
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 32, 96
|
Speed: 32, 96
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Angle: 30, 90
|
LaunchAngle: 30, 90
|
||||||
Inaccuracy: 1c256
|
Inaccuracy: 1c256
|
||||||
Image: shrapnel2
|
Image: shrapnel2
|
||||||
TrailImage: bazooka_trail
|
TrailImage: bazooka_trail
|
||||||
@@ -71,7 +71,7 @@ Debris3:
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 32, 96
|
Speed: 32, 96
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Angle: 30, 90
|
LaunchAngle: 30, 90
|
||||||
Inaccuracy: 1c256
|
Inaccuracy: 1c256
|
||||||
Image: shrapnel3
|
Image: shrapnel3
|
||||||
TrailImage: large_trail
|
TrailImage: large_trail
|
||||||
@@ -106,7 +106,7 @@ Debris4:
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 32, 96
|
Speed: 32, 96
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Angle: 30, 90
|
LaunchAngle: 30, 90
|
||||||
Inaccuracy: 1c256
|
Inaccuracy: 1c256
|
||||||
Image: shrapnel4
|
Image: shrapnel4
|
||||||
TrailImage: large_trail
|
TrailImage: large_trail
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ DevBullet:
|
|||||||
Speed: 192
|
Speed: 192
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Shadow: yes
|
Shadow: yes
|
||||||
Angle: 62
|
LaunchAngle: 62
|
||||||
Inaccuracy: 768
|
Inaccuracy: 768
|
||||||
ContrailLength: 20
|
ContrailLength: 20
|
||||||
Image: 155mm
|
Image: 155mm
|
||||||
|
|||||||
@@ -192,7 +192,7 @@ grenade:
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 256
|
Speed: 256
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Angle: 75
|
LaunchAngle: 75
|
||||||
Inaccuracy: 416
|
Inaccuracy: 416
|
||||||
Image: grenade
|
Image: grenade
|
||||||
Shadow: true
|
Shadow: true
|
||||||
@@ -261,7 +261,7 @@ SpiceExplosion:
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 50, 75
|
Speed: 50, 75
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Angle: 60, 90
|
LaunchAngle: 60, 90
|
||||||
TrailImage: large_trail
|
TrailImage: large_trail
|
||||||
Image: 120mm
|
Image: 120mm
|
||||||
Warhead@1Dam: SpreadDamage
|
Warhead@1Dam: SpreadDamage
|
||||||
|
|||||||
@@ -146,7 +146,7 @@ TurretGun:
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 204
|
Speed: 204
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Angle: 62
|
LaunchAngle: 62
|
||||||
Inaccuracy: 1c682
|
Inaccuracy: 1c682
|
||||||
Image: 120MM
|
Image: 120MM
|
||||||
ContrailLength: 30
|
ContrailLength: 30
|
||||||
@@ -180,7 +180,7 @@ TurretGun:
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 204
|
Speed: 204
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Angle: 62
|
LaunchAngle: 62
|
||||||
Inaccuracy: 2c938
|
Inaccuracy: 2c938
|
||||||
Image: 120MM
|
Image: 120MM
|
||||||
ContrailLength: 30
|
ContrailLength: 30
|
||||||
|
|||||||
@@ -251,7 +251,7 @@ SubMissile:
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 162
|
Speed: 162
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Angle: 120
|
LaunchAngle: 120
|
||||||
Inaccuracy: 2c938
|
Inaccuracy: 2c938
|
||||||
Image: MISSILE
|
Image: MISSILE
|
||||||
TrailImage: smokey
|
TrailImage: smokey
|
||||||
@@ -422,7 +422,7 @@ SCUD:
|
|||||||
TrailDelay: 5
|
TrailDelay: 5
|
||||||
Inaccuracy: 213
|
Inaccuracy: 213
|
||||||
Image: V2
|
Image: V2
|
||||||
Angle: 62
|
LaunchAngle: 62
|
||||||
Warhead@1Dam: SpreadDamage
|
Warhead@1Dam: SpreadDamage
|
||||||
Spread: 341
|
Spread: 341
|
||||||
Damage: 45
|
Damage: 45
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ Flamer:
|
|||||||
Speed: 170
|
Speed: 170
|
||||||
TrailImage: fb4
|
TrailImage: fb4
|
||||||
Image: fb3
|
Image: fb3
|
||||||
Angle: 62
|
LaunchAngle: 62
|
||||||
Inaccuracy: 853
|
Inaccuracy: 853
|
||||||
Warhead@1Dam: SpreadDamage
|
Warhead@1Dam: SpreadDamage
|
||||||
Spread: 341
|
Spread: 341
|
||||||
@@ -93,7 +93,7 @@ Grenade:
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 136
|
Speed: 136
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Angle: 62
|
LaunchAngle: 62
|
||||||
Inaccuracy: 554
|
Inaccuracy: 554
|
||||||
Image: BOMB
|
Image: BOMB
|
||||||
Warhead@1Dam: SpreadDamage
|
Warhead@1Dam: SpreadDamage
|
||||||
@@ -125,7 +125,7 @@ DepthCharge:
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 85
|
Speed: 85
|
||||||
Image: BOMB
|
Image: BOMB
|
||||||
Angle: 62
|
LaunchAngle: 62
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Inaccuracy: 128
|
Inaccuracy: 128
|
||||||
Warhead@1Dam: SpreadDamage
|
Warhead@1Dam: SpreadDamage
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ Grenade:
|
|||||||
Speed: 85
|
Speed: 85
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Shadow: true
|
Shadow: true
|
||||||
Angle: 45
|
LaunchAngle: 45
|
||||||
Inaccuracy: 384
|
Inaccuracy: 384
|
||||||
Image: DISCUS
|
Image: DISCUS
|
||||||
Warhead@1Dam: SpreadDamage
|
Warhead@1Dam: SpreadDamage
|
||||||
@@ -73,7 +73,7 @@ RPGTower:
|
|||||||
Speed: 384
|
Speed: 384
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Shadow: true
|
Shadow: true
|
||||||
Angle: 62
|
LaunchAngle: 62
|
||||||
Image: canister
|
Image: canister
|
||||||
Palette: player
|
Palette: player
|
||||||
Warhead@1Dam: SpreadDamage
|
Warhead@1Dam: SpreadDamage
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ SmallDebris:
|
|||||||
Report:
|
Report:
|
||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 50, 125
|
Speed: 50, 125
|
||||||
Angle: 45, 135
|
LaunchAngle: 45, 135
|
||||||
Image: dbrissm
|
Image: dbrissm
|
||||||
Sequences: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
|
Sequences: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
|
||||||
Shadow: true
|
Shadow: true
|
||||||
@@ -74,7 +74,7 @@ LargeDebris:
|
|||||||
Report:
|
Report:
|
||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 50, 125
|
Speed: 50, 125
|
||||||
Angle: 45, 135
|
LaunchAngle: 45, 135
|
||||||
Image: dbrislg
|
Image: dbrislg
|
||||||
Sequences: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
|
Sequences: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
|
||||||
Shadow: true
|
Shadow: true
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
Speed: 682
|
Speed: 682
|
||||||
Image: 120mm
|
Image: 120mm
|
||||||
Shadow: true
|
Shadow: true
|
||||||
Angle: 75
|
LaunchAngle: 75
|
||||||
Palette: ra
|
Palette: ra
|
||||||
Warhead@1Dam: SpreadDamage
|
Warhead@1Dam: SpreadDamage
|
||||||
Spread: 128
|
Spread: 128
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
Speed: 682
|
Speed: 682
|
||||||
Image: 120mm
|
Image: 120mm
|
||||||
Shadow: true
|
Shadow: true
|
||||||
Angle: 62
|
LaunchAngle: 62
|
||||||
Palette: ra
|
Palette: ra
|
||||||
Warhead@1Dam: SpreadDamage
|
Warhead@1Dam: SpreadDamage
|
||||||
Spread: 128
|
Spread: 128
|
||||||
@@ -102,7 +102,7 @@
|
|||||||
Projectile: Bullet
|
Projectile: Bullet
|
||||||
Speed: 170
|
Speed: 170
|
||||||
Image: 120mm
|
Image: 120mm
|
||||||
Angle: 165
|
LaunchAngle: 165
|
||||||
Shadow: true
|
Shadow: true
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Palette: ra
|
Palette: ra
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ FiendShard:
|
|||||||
Image: CRYSTAL4
|
Image: CRYSTAL4
|
||||||
Inaccuracy: 512
|
Inaccuracy: 512
|
||||||
Shadow: true
|
Shadow: true
|
||||||
Angle: 60
|
LaunchAngle: 60
|
||||||
Palette: greentiberium
|
Palette: greentiberium
|
||||||
Warhead@1Dam: SpreadDamage
|
Warhead@1Dam: SpreadDamage
|
||||||
Damage: 35
|
Damage: 35
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ EMPulseCannon:
|
|||||||
Speed: 425
|
Speed: 425
|
||||||
Blockable: false
|
Blockable: false
|
||||||
Shadow: true
|
Shadow: true
|
||||||
Angle: 62
|
LaunchAngle: 62
|
||||||
Image: pulsball
|
Image: pulsball
|
||||||
Warhead@1Eff: CreateEffect
|
Warhead@1Eff: CreateEffect
|
||||||
Explosions: pulse_explosion
|
Explosions: pulse_explosion
|
||||||
|
|||||||
Reference in New Issue
Block a user