20 lines
427 B
Ucode
20 lines
427 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
|
|
} |