KF2-Server-Extension/ServerExt/Classes/Ext_TraitContactNade.uc

16 lines
360 B
Ucode
Raw Normal View History

2017-10-19 21:00:49 -05:00
Class Ext_TraitContactNade extends Ext_TraitBase;
2020-11-28 23:04:55 +03:00
static function TraitActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
2017-10-19 21:00:49 -05:00
{
Perk.bExplodeOnContact = true;
}
2020-11-29 00:54:57 +03:00
2020-11-28 23:04:55 +03:00
static function TraitDeActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
2017-10-19 21:00:49 -05:00
{
Perk.bExplodeOnContact = false;
}
defaultproperties
{
DefLevelCosts(0)=25
}