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 |
//============================================================================= // DamTypeSPThompson //============================================================================= // Damage class for the Steampunk SMG //============================================================================= // Killing Floor Source // Copyright (C) 2013 Tripwire Interactive LLC // - IJC Weapon Development and John "Ramm-Jaeger" Gibson //============================================================================= class DamTypeSPThompson extends KFProjectileWeaponDamageType abstract; static function AwardKill(KFSteamStatsAndAchievements KFStatsAndAchievements, KFPlayerController Killer, KFMonster Killed ) { if( Killed.IsA('ZombieStalker') ) KFStatsAndAchievements.AddStalkerKill(); } static function AwardDamage(KFSteamStatsAndAchievements KFStatsAndAchievements, int Amount) { KFStatsAndAchievements.AddBullpupDamage(Amount); } defaultproperties { WeaponClass=Class'KFMod.SPThompsonSMG' DeathString="%k killed %o (Dr. T's L.D.S.)." FemaleSuicide="%o shot herself in the foot." MaleSuicide="%o shot himself in the foot." bRagdollBullet=True KDamageImpulse=5500.000000 KDeathVel=175.000000 KDeathUpKick=15.000000 } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |