GenZmeY
1d7c441b4c
- more text supports localization; - move hardcode to english localization file; - update the Russian localization file.
51 lines
1.0 KiB
Ucode
51 lines
1.0 KiB
Ucode
Class Ext_TraitAirborneAgent 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<1)
|
|
return false;
|
|
|
|
for (i=0; i<Perk.PerkTraits.Length; ++i)
|
|
{
|
|
if (Perk.PerkTraits[i].TraitType==Class'Ext_TraitGrenadeUpg')
|
|
{
|
|
if (Perk.PerkTraits[i].CurrentLevel <= 0)
|
|
return false;
|
|
else break;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static function TraitActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
|
|
{
|
|
Ext_PerkFieldMedic(Perk).bUseAirborneAgent = true;
|
|
}
|
|
|
|
static function TraitDeActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
|
|
{
|
|
Ext_PerkFieldMedic(Perk).bUseAirborneAgent = false;
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
SupportedPerk=class'Ext_PerkFieldMedic'
|
|
TraitGroup=class'Ext_TGroupZEDTime'
|
|
NumLevels=1
|
|
DefLevelCosts(0)=60
|
|
DefMinLevel=75
|
|
} |