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

16 lines
351 B
Ucode
Raw Permalink Normal View History

Class Ext_TraitBoomWeld extends Ext_TraitBase;
2017-10-20 02:00:49 +00:00
2020-11-28 20:04:55 +00:00
static function TraitActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
2017-10-20 02:00:49 +00:00
{
Perk.bExplosiveWeld = true;
}
2020-11-28 21:54:57 +00:00
2020-11-28 20:04:55 +00:00
static function TraitDeActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
2017-10-20 02:00:49 +00:00
{
Perk.bExplosiveWeld = false;
}
defaultproperties
{
DefLevelCosts(0)=30
}