51 lines
1.0 KiB
Ucode
51 lines
1.0 KiB
Ucode
Class Ext_TraitPenetrator 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<2)
|
|
return false;
|
|
|
|
for (i=0; i<Perk.PerkTraits.Length; ++i)
|
|
{
|
|
if (Perk.PerkTraits[i].TraitType==Class'Ext_TraitAPShots')
|
|
{
|
|
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_PerkSupport(Perk).bUsePerforate = true;
|
|
}
|
|
|
|
static function TraitDeActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
|
|
{
|
|
Ext_PerkSupport(Perk).bUsePerforate = false;
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
SupportedPerk=class'Ext_PerkSupport'
|
|
TraitGroup=class'Ext_TGroupZEDTime'
|
|
NumLevels=1
|
|
DefLevelCosts(0)=50
|
|
DefMinLevel=65
|
|
} |