GenZmeY
1d7c441b4c
- more text supports localization; - move hardcode to english localization file; - update the Russian localization file.
46 lines
956 B
Ucode
46 lines
956 B
Ucode
Class Ext_TraitDemoProfessional extends Ext_TraitBase;
|
|
|
|
var localized string GroupDescription;
|
|
|
|
function string GetPerkDescription()
|
|
{
|
|
local string S;
|
|
|
|
S = Super.GetPerkDescription();
|
|
S $= "|"$GroupDescription;
|
|
return S;
|
|
}
|
|
|
|
static function bool MeetsRequirements(byte Lvl, Ext_PerkBase Perk)
|
|
{
|
|
local int i;
|
|
|
|
if (Perk.CurrentLevel<Default.MinLevel || Perk.CurrentPrestige<3)
|
|
return false;
|
|
|
|
if (Lvl==0)
|
|
{
|
|
i = Perk.PerkStats.Find('StatType','Reload');
|
|
if (i>=0)
|
|
return (Perk.PerkStats[i].CurrentValue>=30);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static function TraitActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
|
|
{
|
|
Ext_PerkDemolition(Perk).bProfessionalActive = true;
|
|
}
|
|
|
|
static function TraitDeActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
|
|
{
|
|
Ext_PerkDemolition(Perk).bProfessionalActive = false;
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
SupportedPerk=class'Ext_PerkDemolition'
|
|
DefLevelCosts(0)=100
|
|
DefMinLevel=100
|
|
} |