Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
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 00049 00050 00051 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 00062 00063 00064 00065 00066 00067 00068 00069 00070 00071 00072 00073 00074 00075 00076 00077 00078 00079 00080 00081 00082 00083 00084 00085 00086 00087 00088 00089 00090 00091 |
//============================================================================= // DamageType, the base class of all damagetypes. // this and its subclasses are never spawned, just used as information holders //============================================================================= class DamageType extends Actor native abstract; // Description of a type of damage. var() localized string DeathString; // string to describe death by this type of damage var() localized string FemaleSuicide, MaleSuicide; var() float ViewFlash; // View flash to play. var() vector ViewFog; // View fog to play. var() class<effects> DamageEffect; // Special effect. var() string DamageWeaponName; // weapon that caused this damage var() bool bArmorStops; // does regular armor provide protection against this damage var() bool bInstantHit; // done by trace hit weapon var() bool bFastInstantHit; // done by fast repeating trace hit weapon var() float GibModifier; // these effects should be none if should use the pawn's blood effects var() class<Effects> PawnDamageEffect; // effect to spawn when pawns are damaged by this damagetype var() class<Effects> LowGoreDamageEffect; // effect to spawn when low gore var() class<Effects> LowDetailEffect; var() float FlashScale; //for flashing victim's screen var() vector FlashFog; var() float ArmorHealthRatio; var() float EffectDuration; var() bool EffectDurationCumulative; static function string DeathMessage(PlayerReplicationInfo Killer, PlayerReplicationInfo Victim) { return Default.DeathString; } static function string SuicideMessage(PlayerReplicationInfo Victim) { if ( Victim.bIsFemale ) return Default.FemaleSuicide; else return Default.MaleSuicide; } /*OLD (mib) not used for U2 static function class<Effects> GetPawnDamageEffect( vector HitLocation, float Damage, vector Momentum, Pawn Victim, bool bLowDetail ) { if( Victim.GetGoreDetailLevel() < 2 ) { if ( Default.LowGoreDamageEffect != None ) return Default.LowGoreDamageEffect; else return Victim.LowGoreBlood; } else if ( bLowDetail ) { if ( Default.LowDetailEffect != None ) return Default.LowDetailEffect; else return Victim.LowDetailBlood; } else { if ( Default.PawnDamageEffect != None ) return Default.PawnDamageEffect; else return Victim.BloodEffect; } } */ defaultproperties { DeathString="%o was killed by %k." FemaleSuicide="%o killed herself." MaleSuicide="%o killed himself." bArmorStops=true GibModifier=1.000000 FlashScale=-0.019000 FlashFog=(X=26.500000,Y=4.500000,Z=4.500000) ArmorHealthRatio=0.500000 EffectDuration=3.000000 UseReticleOnEvents(0)="UseReticleText" UseReticleOnEvents(1)="UseReticleCorners" UseReticleOnEvents(2)="UseReticleTopBars" ProximityReticleOnEvents(0)="ProximityReticleCorners" ProximityReticleOnEvents(1)="ProximityReticleTopBars" } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |