Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

Betrayal.BetrayalDamTypeMercuryDirectHit


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
//=============================================================================
// DamTypeMercuryDirectHit
// Copyright 2003-2011 by Wormbo <wormbo@online.de>
//
// Damage type for direct mercury missile hit with missile blowing up.
//=============================================================================


class BetrayalDamTypeMercuryDirectHit extends WeaponDamageType abstract;


/**
Flame effects.
*/
static function GetHitEffects(out class<xEmitter> HitEffects[4], int VictimHealth)
{
	HitEffects[0] = class'HitSmoke';

	if (VictimHealth <= 0 && FRand() < 0.5)
		HitEffects[1] = class'HitFlameBig';
	else if (FRand() < 0.5)
		HitEffects[1] = class'HitFlame';
}


//=============================================================================
// Default properties
//=============================================================================

defaultproperties
{
	WeaponClass       = Class'BetrayalMercuryLauncher'
	DeathString       = "%k drove a mercury missile into %o."
	FemaleSuicide     = "%o somehow managed to get hit by her own mercury missile."
	MaleSuicide       = "%o somehow managed to get hit by his own mercury missile."
	bDetonatesGoop    = True
	bKUseOwnDeathVel  = True
	KDamageImpulse    = 20000.0
	KDeathVel         = 550.0
	KDeathUpKick      = 100.0
	bDelayedDamage    = True
	bRagdollBullet    = True
	bBulletHit        = True
	GibPerterbation   = 0.35
	bAlwaysSevers     = True
	bLocationalHit    = False
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Di 15.3.2011 17:28:08.000 - Creation time: Do 14.8.2014 09:58:34.724 - Created with UnCodeX