32 lines
885 B
Ucode
32 lines
885 B
Ucode
|
Class Ext_TraitAPShots extends Ext_TraitBase;
|
||
|
|
||
|
static function ApplyEffectOn( KFPawn_Human Player, Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data )
|
||
|
{
|
||
|
Ext_PerkSupport(Perk).APShotMul = 1 + (0.25 + (((float(Level) - 1.f) * 5.f) / 100.f));
|
||
|
}
|
||
|
|
||
|
static function CancelEffectOn( KFPawn_Human Player, Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data )
|
||
|
{
|
||
|
Ext_PerkSupport(Perk).APShotMul = 0.f;
|
||
|
}
|
||
|
|
||
|
static function TraitActivate( Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data )
|
||
|
{
|
||
|
Ext_PerkSupport(Perk).bUseAPShot = true;
|
||
|
}
|
||
|
|
||
|
static function TraitDeActivate( Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data )
|
||
|
{
|
||
|
Ext_PerkSupport(Perk).bUseAPShot = false;
|
||
|
}
|
||
|
|
||
|
defaultproperties
|
||
|
{
|
||
|
SupportedPerk=class'Ext_PerkSupport'
|
||
|
NumLevels=4
|
||
|
DefLevelCosts(0)=15
|
||
|
DefLevelCosts(1)=30
|
||
|
DefLevelCosts(2)=40
|
||
|
DefLevelCosts(3)=50
|
||
|
DefMinLevel=15
|
||
|
}
|