KF2-Server-Extension/ServerExt/Classes/Ext_TraitBoomWeld.uc
GenZmeY 1d7c441b4c update localization
- more text supports localization;
- move hardcode to english localization file;
- update the Russian localization file.
2021-01-18 00:55:45 +03:00

16 lines
351 B
Ucode

Class Ext_TraitBoomWeld extends Ext_TraitBase;
static function TraitActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
{
Perk.bExplosiveWeld = true;
}
static function TraitDeActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
{
Perk.bExplosiveWeld = false;
}
defaultproperties
{
DefLevelCosts(0)=30
}