use explosion *names*, not *numbers* like RA.
This commit is contained in:
@@ -49,10 +49,11 @@ namespace OpenRA
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
var isWater = world.GetTerrainInfo(targetTile).IsWater;
|
var isWater = world.GetTerrainInfo(targetTile).IsWater;
|
||||||
|
var explosionType = isWater ? warhead.WaterExplosion : warhead.Explosion;
|
||||||
|
|
||||||
if (warhead.Explosion != 0)
|
if (explosionType != null)
|
||||||
world.AddFrameEndTask(
|
world.AddFrameEndTask(
|
||||||
w => w.Add(new Explosion(w, args.dest, warhead.Explosion, isWater)));
|
w => w.Add(new Explosion(w, args.dest, explosionType, isWater)));
|
||||||
|
|
||||||
Sound.Play(GetImpactSound(warhead, isWater), args.dest);
|
Sound.Play(GetImpactSound(warhead, isWater), args.dest);
|
||||||
|
|
||||||
|
|||||||
@@ -29,12 +29,11 @@ namespace OpenRA.Effects
|
|||||||
Animation anim;
|
Animation anim;
|
||||||
int2 pos;
|
int2 pos;
|
||||||
|
|
||||||
public Explosion(World world, int2 pixelPos, int style, bool isWater)
|
public Explosion(World world, int2 pixelPos, string style, bool isWater)
|
||||||
{
|
{
|
||||||
this.pos = pixelPos;
|
this.pos = pixelPos;
|
||||||
var variantSuffix = isWater ? "w" : "";
|
|
||||||
anim = new Animation("explosion");
|
anim = new Animation("explosion");
|
||||||
anim.PlayThen(style.ToString() + variantSuffix,
|
anim.PlayThen(style,
|
||||||
() => world.AddFrameEndTask(w => w.Remove(this)));
|
() => world.AddFrameEndTask(w => w.Remove(this)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -30,7 +30,8 @@ namespace OpenRA.GameRules
|
|||||||
public readonly int Spread = 1; // distance (in pixels) from the explosion center at which damage is 1/2.
|
public readonly int Spread = 1; // distance (in pixels) from the explosion center at which damage is 1/2.
|
||||||
public readonly float[] Verses = { 1, 1, 1, 1, 1 }; // damage vs each armortype
|
public readonly float[] Verses = { 1, 1, 1, 1, 1 }; // damage vs each armortype
|
||||||
public readonly bool Ore = false; // can this damage ore?
|
public readonly bool Ore = false; // can this damage ore?
|
||||||
public readonly int Explosion = 0; // explosion effect to use
|
public readonly string Explosion = null; // explosion effect to use
|
||||||
|
public readonly string WaterExplosion = null; // explosion effect on hitting water (usually a splash)
|
||||||
public readonly string SmudgeType = null; // type of smudge to apply
|
public readonly string SmudgeType = null; // type of smudge to apply
|
||||||
public readonly int[] Size = { 0, 0 }; // size of the explosion. provide 2 values for a ring effect (outer/inner)
|
public readonly int[] Size = { 0, 0 }; // size of the explosion. provide 2 values for a ring effect (outer/inner)
|
||||||
public readonly int InfDeath = 0; // infantry death animation to use
|
public readonly int InfDeath = 0; // infantry death animation to use
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ namespace OpenRA.Traits
|
|||||||
Sound.Play(self.Info.Traits.Get<BuildingInfo>().DamagedSound, self.CenterLocation);
|
Sound.Play(self.Info.Traits.Get<BuildingInfo>().DamagedSound, self.CenterLocation);
|
||||||
break;
|
break;
|
||||||
case DamageState.Dead:
|
case DamageState.Dead:
|
||||||
self.World.AddFrameEndTask(w => w.Add(new Explosion(w, self.CenterLocation.ToInt2(), 7, false)));
|
self.World.AddFrameEndTask(w => w.Add(new Explosion(w, self.CenterLocation.ToInt2(), "building", false)));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -68,7 +68,7 @@
|
|||||||
<sequence name="4w" start="0" length="14" src="veh-hit3" />
|
<sequence name="4w" start="0" length="14" src="veh-hit3" />
|
||||||
<sequence name="5w" start="0" length="22" src="veh-hit2" />
|
<sequence name="5w" start="0" length="22" src="veh-hit2" />
|
||||||
<sequence name="8" start="0" length="22" src="art-exp1" />
|
<sequence name="8" start="0" length="22" src="art-exp1" />
|
||||||
<sequence name="7" start="0" length="18" src="fball1" />
|
<sequence name="building" start="0" length="18" src="fball1" />
|
||||||
</unit>
|
</unit>
|
||||||
<unit name="pips">
|
<unit name="pips">
|
||||||
<sequence name="ready" start="3" length="1" src="hpips" />
|
<sequence name="ready" start="3" length="1" src="hpips" />
|
||||||
|
|||||||
@@ -428,22 +428,18 @@
|
|||||||
<sequence name="crawl" start="130" length="4" facings="8" />
|
<sequence name="crawl" start="130" length="4" facings="8" />
|
||||||
</unit>
|
</unit>
|
||||||
<unit name="explosion">
|
<unit name="explosion">
|
||||||
<sequence name="1" start="0" length="4" src="piff" />
|
<sequence name="piff" start="0" length="4" src="piff" />
|
||||||
<sequence name="2" start="0" length="8" src="piffpiff" />
|
<sequence name="piffs" start="0" length="8" src="piffpiff" />
|
||||||
<sequence name="3" start="0" length="14" src="napalm2" />
|
<sequence name="small_explosion" start="0" length="14" src="veh-hit3" />
|
||||||
<sequence name="4" start="0" length="14" src="veh-hit3" />
|
<sequence name="med_explosion" start="0" length="22" src="veh-hit2" />
|
||||||
<sequence name="5" start="0" length="22" src="veh-hit2" />
|
<sequence name="large_splash" start="0" length="10" src="h2o_exp1" />
|
||||||
<sequence name="6w" start="0" length="27" src="atomsfx" />
|
<sequence name="napalm" start="0" length="14" src="napalm2" />
|
||||||
<sequence name="1w" start="0" length="10" src="h2o_exp3" />
|
<sequence name="nuke" start="0" length="27" src="atomsfx" />
|
||||||
<sequence name="5w" start="0" length="10" src="h2o_exp1" />
|
<sequence name="med_splash" start="0" length="10" src="h2o_exp2" />
|
||||||
<sequence name="3w" start="0" length="14" src="napalm2" />
|
<sequence name="self_destruct" start="0" length="22" src="art-exp1" />
|
||||||
<sequence name="6" start="0" length="27" src="atomsfx" />
|
<sequence name="building" start="0" length="18" src="fball1" />
|
||||||
<sequence name="4w" start="0" length="10" src="h2o_exp2" />
|
<sequence name="small_splash" start="0" length="10" src="h2o_exp3" />
|
||||||
<sequence name="2w" start="0" length="10" src="h2o_exp3" />
|
<sequence name="large_explosion" start="0" length="14" src="frag1" />
|
||||||
<sequence name="7" start="0" length="18" src="fball1" />
|
|
||||||
<sequence name="8" start="0" length="22" src="art-exp1" />
|
|
||||||
<sequence name="7w" start="0" length="18" src="fball1" />
|
|
||||||
<sequence name="8w" start="0" length="10" src="h2o_exp3" />
|
|
||||||
</unit>
|
</unit>
|
||||||
<unit name="lst">
|
<unit name="lst">
|
||||||
<sequence name="idle" start="0" length="1" />
|
<sequence name="idle" start="0" length="1" />
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ Colt45:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 1
|
Spread: 1
|
||||||
Verses: 100%,5%,5%,5%,5%
|
Verses: 100%,5%,5%,5%,5%
|
||||||
Explosion: 1
|
Explosion: piff
|
||||||
InfDeath: 1
|
InfDeath: 1
|
||||||
Damage: 50
|
Damage: 50
|
||||||
|
|
||||||
@@ -21,7 +21,7 @@ ZSU-23:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 30%,75%,75%,100%,50%
|
Verses: 30%,75%,75%,100%,50%
|
||||||
Explosion: 4
|
Explosion: med_explosion
|
||||||
Damage: 25
|
Damage: 25
|
||||||
|
|
||||||
Vulcan:
|
Vulcan:
|
||||||
@@ -33,41 +33,41 @@ Vulcan:
|
|||||||
Warhead@1:
|
Warhead@1:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 100%,50%,60%,25%,25%
|
Verses: 100%,50%,60%,25%,25%
|
||||||
Explosion: 2
|
Explosion: piffs
|
||||||
InfDeath: 1
|
InfDeath: 1
|
||||||
Damage: 7
|
Damage: 7
|
||||||
Warhead@2:
|
Warhead@2:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 100%,50%,60%,25%,25%
|
Verses: 100%,50%,60%,25%,25%
|
||||||
Explosion: 2
|
Explosion: piffs
|
||||||
InfDeath: 1
|
InfDeath: 1
|
||||||
Damage: 5
|
Damage: 5
|
||||||
Delay: 7
|
Delay: 7
|
||||||
Warhead@3:
|
Warhead@3:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 100%,50%,60%,25%,25%
|
Verses: 100%,50%,60%,25%,25%
|
||||||
Explosion: 2
|
Explosion: piffs
|
||||||
InfDeath: 1
|
InfDeath: 1
|
||||||
Damage: 7
|
Damage: 7
|
||||||
Delay: 4
|
Delay: 4
|
||||||
Warhead@4:
|
Warhead@4:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 100%,50%,60%,25%,25%
|
Verses: 100%,50%,60%,25%,25%
|
||||||
Explosion: 2
|
Explosion: piffs
|
||||||
InfDeath: 1
|
InfDeath: 1
|
||||||
Damage: 7
|
Damage: 7
|
||||||
Delay: 6
|
Delay: 6
|
||||||
Warhead@5:
|
Warhead@5:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 100%,50%,60%,25%,25%
|
Verses: 100%,50%,60%,25%,25%
|
||||||
Explosion: 2
|
Explosion: piffs
|
||||||
InfDeath: 1
|
InfDeath: 1
|
||||||
Damage: 7
|
Damage: 7
|
||||||
Delay: 8
|
Delay: 8
|
||||||
Warhead@6:
|
Warhead@6:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 100%,50%,60%,25%,25%
|
Verses: 100%,50%,60%,25%,25%
|
||||||
Explosion: 2
|
Explosion: piffs
|
||||||
InfDeath: 1
|
InfDeath: 1
|
||||||
Damage: 7
|
Damage: 7
|
||||||
Delay: 10
|
Delay: 10
|
||||||
@@ -91,7 +91,8 @@ Maverick:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 30%,75%,75%,100%,50%
|
Verses: 30%,75%,75%,100%,50%
|
||||||
Explosion: 4
|
Explosion: med_explosion
|
||||||
|
WaterExplosion: med_splash
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 50
|
Damage: 50
|
||||||
@@ -106,7 +107,8 @@ FireballLauncher:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 4
|
Spread: 4
|
||||||
Verses: 90%,100%,60%,25%,50%
|
Verses: 90%,100%,60%,25%,50%
|
||||||
Explosion: 3
|
Explosion: napalm
|
||||||
|
WaterExplosion: napalm
|
||||||
InfDeath: 4
|
InfDeath: 4
|
||||||
SmudgeType: Scorch
|
SmudgeType: Scorch
|
||||||
ImpactSound: firebl3
|
ImpactSound: firebl3
|
||||||
@@ -122,7 +124,8 @@ Flamer:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 4
|
Spread: 4
|
||||||
Verses: 90%,100%,60%,25%,50%
|
Verses: 90%,100%,60%,25%,50%
|
||||||
Explosion: 3
|
Explosion: napalm
|
||||||
|
WaterExplosion: napalm
|
||||||
InfDeath: 4
|
InfDeath: 4
|
||||||
SmudgeType: Scorch
|
SmudgeType: Scorch
|
||||||
ImpactSound: firebl3
|
ImpactSound: firebl3
|
||||||
@@ -137,7 +140,8 @@ ChainGun:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 100%,50%,60%,25%,25%
|
Verses: 100%,50%,60%,25%,25%
|
||||||
Explosion: 2
|
Explosion: piffs
|
||||||
|
WaterExplosion: small_splash
|
||||||
InfDeath: 1
|
InfDeath: 1
|
||||||
Damage: 40
|
Damage: 40
|
||||||
|
|
||||||
@@ -150,7 +154,7 @@ Pistol:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 100%,50%,60%,25%,25%
|
Verses: 100%,50%,60%,25%,25%
|
||||||
Explosion: 2
|
Explosion: piffs
|
||||||
InfDeath: 1
|
InfDeath: 1
|
||||||
Damage: 1
|
Damage: 1
|
||||||
|
|
||||||
@@ -163,7 +167,7 @@ M1Carbine:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 100%,25%,30%,10%,10%
|
Verses: 100%,25%,30%,10%,10%
|
||||||
Explosion: 2
|
Explosion: piffs
|
||||||
InfDeath: 1
|
InfDeath: 1
|
||||||
Damage: 15
|
Damage: 15
|
||||||
|
|
||||||
@@ -186,7 +190,8 @@ Dragon:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 10%,75%,35%,100%,20%
|
Verses: 10%,75%,35%,100%,20%
|
||||||
Explosion: 4
|
Explosion: med_explosion
|
||||||
|
WaterExplosion: med_splash
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 60
|
Damage: 60
|
||||||
@@ -211,7 +216,8 @@ Hellfire:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 30%,75%,75%,100%,50%
|
Verses: 30%,75%,75%,100%,50%
|
||||||
Explosion: 4
|
Explosion: med_explosion
|
||||||
|
WaterExplosion: med_splash
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 40
|
Damage: 40
|
||||||
@@ -229,7 +235,8 @@ Grenade:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 6
|
Spread: 6
|
||||||
Verses: 50%,100%,25%,5%,100%
|
Verses: 50%,100%,25%,5%,100%
|
||||||
Explosion: 5
|
Explosion: med_explosion
|
||||||
|
WaterExplosion: small_splash
|
||||||
InfDeath: 2
|
InfDeath: 2
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 60
|
Damage: 60
|
||||||
@@ -245,7 +252,8 @@ Grenade:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 30%,40%,100%,40%,30%
|
Verses: 30%,40%,100%,40%,30%
|
||||||
Explosion: 4
|
Explosion: small_explosion
|
||||||
|
WaterExplosion: small_splash
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 18
|
Damage: 18
|
||||||
@@ -260,7 +268,8 @@ Grenade:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 20%,75%,75%,100%,50%
|
Verses: 20%,75%,75%,100%,50%
|
||||||
Explosion: 4
|
Explosion: small_explosion
|
||||||
|
WaterExplosion: small_splash
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 30
|
Damage: 30
|
||||||
@@ -277,7 +286,8 @@ Grenade:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 20%,75%,75%,100%,50%
|
Verses: 20%,75%,75%,100%,50%
|
||||||
Explosion: 4
|
Explosion: small_explosion
|
||||||
|
WaterExplosion: small_splash
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 40
|
Damage: 40
|
||||||
@@ -293,7 +303,8 @@ Grenade:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 20%,75%,75%,100%,50%
|
Verses: 20%,75%,75%,100%,50%
|
||||||
Explosion: 4
|
Explosion: small_explosion
|
||||||
|
WaterExplosion: small_splash
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 50
|
Damage: 50
|
||||||
@@ -308,7 +319,8 @@ TurretGun:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 30%,75%,75%,100%,50%
|
Verses: 30%,75%,75%,100%,50%
|
||||||
Explosion: 4
|
Explosion: small_explosion
|
||||||
|
WaterExplosion: small_splash
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 60
|
Damage: 60
|
||||||
@@ -333,7 +345,8 @@ MammothTusk:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 6
|
Spread: 6
|
||||||
Verses: 90%,75%,60%,25%,100%
|
Verses: 90%,75%,60%,25%,100%
|
||||||
Explosion: 5
|
Explosion: med_explosion
|
||||||
|
WaterExplosion: med_splash
|
||||||
InfDeath: 2
|
InfDeath: 2
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 45
|
Damage: 45
|
||||||
@@ -351,7 +364,8 @@ MammothTusk:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 8
|
Spread: 8
|
||||||
Verses: 90%,75%,60%,25%,100%
|
Verses: 90%,75%,60%,25%,100%
|
||||||
Explosion: 5
|
Explosion: large_explosion
|
||||||
|
WaterExplosion: med_splash
|
||||||
InfDeath: 2
|
InfDeath: 2
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 150
|
Damage: 150
|
||||||
@@ -366,7 +380,8 @@ M60mg:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 100%,10%,30%,10%,10%
|
Verses: 100%,10%,30%,10%,10%
|
||||||
Explosion: 2
|
Explosion: piffs
|
||||||
|
WaterExplosion: small_splash
|
||||||
InfDeath: 1
|
InfDeath: 1
|
||||||
Damage: 15
|
Damage: 15
|
||||||
|
|
||||||
@@ -382,7 +397,8 @@ Napalm:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 4
|
Spread: 4
|
||||||
Verses: 90%,100%,60%,25%,50%
|
Verses: 90%,100%,60%,25%,50%
|
||||||
Explosion: 3
|
Explosion: napalm
|
||||||
|
WaterExplosion: med_splash
|
||||||
InfDeath: 4
|
InfDeath: 4
|
||||||
SmudgeType: Scorch
|
SmudgeType: Scorch
|
||||||
ImpactSound: firebl3
|
ImpactSound: firebl3
|
||||||
@@ -392,7 +408,8 @@ CrateNapalm:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 4
|
Spread: 4
|
||||||
Verses: 90%,100%,60%,25%,50%
|
Verses: 90%,100%,60%,25%,50%
|
||||||
Explosion: 3
|
Explosion: napalm
|
||||||
|
WaterExplosion: napalm
|
||||||
InfDeath: 4
|
InfDeath: 4
|
||||||
SmudgeType: Scorch
|
SmudgeType: Scorch
|
||||||
ImpactSound: firebl3
|
ImpactSound: firebl3
|
||||||
@@ -403,7 +420,8 @@ CrateExplosion:
|
|||||||
Damage: 500
|
Damage: 500
|
||||||
Spread: 10
|
Spread: 10
|
||||||
Verses: 90%,75%,60%,25%,100%
|
Verses: 90%,75%,60%,25%,100%
|
||||||
Explosion: 8
|
Explosion: self_destruct
|
||||||
|
WaterExplosion: self_destruct
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
ImpactSound: kaboom15
|
ImpactSound: kaboom15
|
||||||
|
|
||||||
@@ -438,7 +456,7 @@ Nike:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 90%,0%,90%,50%,0%
|
Verses: 90%,0%,90%,50%,0%
|
||||||
Explosion: 5
|
Explosion: med_explosion
|
||||||
InfDeath: 2
|
InfDeath: 2
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 100
|
Damage: 100
|
||||||
@@ -461,7 +479,7 @@ RedEye:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 90%,75%,60%,25%,100%
|
Verses: 90%,75%,60%,25%,100%
|
||||||
Explosion: 5
|
Explosion: med_explosion
|
||||||
InfDeath: 2
|
InfDeath: 2
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 50
|
Damage: 50
|
||||||
@@ -480,7 +498,8 @@ RedEye:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 60%,75%,60%,25%,100%
|
Verses: 60%,75%,60%,25%,100%
|
||||||
Explosion: 5
|
Explosion: large_explosion
|
||||||
|
WaterExplosion: large_splash
|
||||||
InfDeath: 2
|
InfDeath: 2
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 250
|
Damage: 250
|
||||||
@@ -506,7 +525,8 @@ Stinger:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 30%,75%,75%,100%,50%
|
Verses: 30%,75%,75%,100%,50%
|
||||||
Explosion: 4
|
Explosion: med_explosion
|
||||||
|
WaterExplosion: med_splash
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 30
|
Damage: 30
|
||||||
@@ -523,7 +543,7 @@ TorpTube:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 30%,75%,75%,100%,50%
|
Verses: 30%,75%,75%,100%,50%
|
||||||
Explosion: 4
|
WaterExplosion: large_splash
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 90
|
Damage: 90
|
||||||
@@ -538,7 +558,8 @@ TorpTube:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 30%,75%,75%,100%,50%
|
Verses: 30%,75%,75%,100%,50%
|
||||||
Explosion: 4
|
Explosion: small_explosion
|
||||||
|
WaterExplosion: med_splash
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 25
|
Damage: 25
|
||||||
@@ -556,7 +577,7 @@ DepthCharge:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 30%,75%,75%,100%,50%
|
Verses: 30%,75%,75%,100%,50%
|
||||||
Explosion: 4
|
WaterExplosion: large_splash
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 80
|
Damage: 80
|
||||||
@@ -570,7 +591,8 @@ ParaBomb:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 3
|
Spread: 3
|
||||||
Verses: 30%,75%,75%,100%,50%
|
Verses: 30%,75%,75%,100%,50%
|
||||||
Explosion: 8
|
Explosion: self_destruct
|
||||||
|
WaterExplosion: small_splash
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 500
|
Damage: 500
|
||||||
@@ -614,7 +636,8 @@ SCUD:
|
|||||||
Warhead:
|
Warhead:
|
||||||
Spread: 8
|
Spread: 8
|
||||||
Verses: 90%,75%,60%,25%,100%
|
Verses: 90%,75%,60%,25%,100%
|
||||||
Explosion: 3
|
Explosion: napalm
|
||||||
|
WaterExplosion: large_splash
|
||||||
InfDeath: 2
|
InfDeath: 2
|
||||||
SmudgeType: Crater
|
SmudgeType: Crater
|
||||||
Damage: 700
|
Damage: 700
|
||||||
@@ -627,7 +650,8 @@ Atomic:
|
|||||||
Spread: 6
|
Spread: 6
|
||||||
Ore: true
|
Ore: true
|
||||||
Verses: 90%,100%,60%,25%,50%
|
Verses: 90%,100%,60%,25%,50%
|
||||||
Explosion: 6
|
Explosion: nuke
|
||||||
|
WaterExplosion: nuke
|
||||||
InfDeath: 4
|
InfDeath: 4
|
||||||
Warhead@areanuke:
|
Warhead@areanuke:
|
||||||
DamageModel: PerCell
|
DamageModel: PerCell
|
||||||
@@ -644,7 +668,7 @@ UnitExplode:
|
|||||||
Damage: 500
|
Damage: 500
|
||||||
Spread: 10
|
Spread: 10
|
||||||
Verses: 90%,75%,60%,25%,100%
|
Verses: 90%,75%,60%,25%,100%
|
||||||
Explosion: 8
|
Explosion: self_destruct
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
ImpactSound: kaboom22
|
ImpactSound: kaboom22
|
||||||
|
|
||||||
@@ -653,7 +677,7 @@ UnitExplodeSmall:
|
|||||||
Damage: 40
|
Damage: 40
|
||||||
Spread: 10
|
Spread: 10
|
||||||
Verses: 90%,75%,60%,25%,100%
|
Verses: 90%,75%,60%,25%,100%
|
||||||
Explosion: 8
|
Explosion: large_explosion
|
||||||
InfDeath: 3
|
InfDeath: 3
|
||||||
ImpactSound: kaboom15
|
ImpactSound: kaboom15
|
||||||
|
|
||||||
@@ -668,7 +692,7 @@ ATMine:
|
|||||||
Damage: 500
|
Damage: 500
|
||||||
Verses: 0%,0%,100%,100%,0%
|
Verses: 0%,0%,100%,100%,0%
|
||||||
ImpactSound: mineblo1
|
ImpactSound: mineblo1
|
||||||
Explosion: 5
|
Explosion: large_explosion
|
||||||
|
|
||||||
APMine:
|
APMine:
|
||||||
Warhead:
|
Warhead:
|
||||||
@@ -676,10 +700,10 @@ APMine:
|
|||||||
Verses: 100%,0%,0%,0%,0%
|
Verses: 100%,0%,0%,0%,0%
|
||||||
ImpactSound: mine1
|
ImpactSound: mine1
|
||||||
InfDeath: 2
|
InfDeath: 2
|
||||||
Explosion: 3
|
Explosion: napalm
|
||||||
|
|
||||||
Demolish:
|
Demolish:
|
||||||
Warhead:
|
Warhead:
|
||||||
Verses: 100%,100%,100%,100%,100%
|
Verses: 100%,100%,100%,100%,100%
|
||||||
ImpactSound: kaboom25
|
ImpactSound: kaboom25
|
||||||
Explosion: 7
|
Explosion: building
|
||||||
Reference in New Issue
Block a user