19 lines
475 B
Ucode
19 lines
475 B
Ucode
Class Ext_TraitTacticalMove extends Ext_TraitBase;
|
|
|
|
static function TraitActivate( Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data )
|
|
{
|
|
Ext_PerkSWAT(Perk).RepTacticalMove = Level;
|
|
}
|
|
static function TraitDeActivate( Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data )
|
|
{
|
|
Ext_PerkSWAT(Perk).RepTacticalMove = 0;
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
SupportedPerk=class'Ext_PerkSWAT'
|
|
NumLevels=3
|
|
DefLevelCosts(0)=30
|
|
DefLevelCosts(1)=35
|
|
DefLevelCosts(2)=50
|
|
} |