19 lines
430 B
Ucode
19 lines
430 B
Ucode
|
Class Ext_TraitEnemyHP extends Ext_TraitBase;
|
||
|
|
||
|
static function TraitActivate( Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data )
|
||
|
{
|
||
|
Perk.EnemyHealthRange = Level;
|
||
|
}
|
||
|
static function TraitDeActivate( Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data )
|
||
|
{
|
||
|
Perk.EnemyHealthRange = 0;
|
||
|
}
|
||
|
|
||
|
defaultproperties
|
||
|
{
|
||
|
NumLevels=4
|
||
|
DefLevelCosts(0)=25
|
||
|
DefLevelCosts(1)=15
|
||
|
DefLevelCosts(2)=20
|
||
|
DefLevelCosts(3)=30
|
||
|
}
|