2017-10-20 02:00:49 +00:00
|
|
|
Class Ext_TraitBunnyHop extends Ext_TraitBase;
|
|
|
|
|
2020-11-28 20:04:55 +00:00
|
|
|
static function ApplyEffectOn(KFPawn_Human Player, Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
|
2017-10-20 02:00:49 +00:00
|
|
|
{
|
2020-11-28 20:04:55 +00:00
|
|
|
if(ExtHumanPawn(Player)!=None)
|
2017-10-20 02:00:49 +00:00
|
|
|
ExtHumanPawn(Player).bHasBunnyHop = true;
|
|
|
|
}
|
2020-11-28 20:04:55 +00:00
|
|
|
static function CancelEffectOn(KFPawn_Human Player, Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
|
2017-10-20 02:00:49 +00:00
|
|
|
{
|
2020-11-28 20:04:55 +00:00
|
|
|
if(ExtHumanPawn(Player)!=None)
|
2017-10-20 02:00:49 +00:00
|
|
|
ExtHumanPawn(Player).bHasBunnyHop = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultproperties
|
|
|
|
{
|
|
|
|
DefLevelCosts(0)=50
|
|
|
|
DefMinLevel=100
|
|
|
|
}
|