2017-10-20 02:00:49 +00:00
|
|
|
Class Ext_TraitEnemyHP extends Ext_TraitBase;
|
|
|
|
|
2020-11-28 20:04:55 +00:00
|
|
|
static function TraitActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
|
2017-10-20 02:00:49 +00:00
|
|
|
{
|
|
|
|
Perk.EnemyHealthRange = Level;
|
|
|
|
}
|
2020-11-28 21:54:57 +00:00
|
|
|
|
2020-11-28 20:04:55 +00:00
|
|
|
static function TraitDeActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
|
2017-10-20 02:00:49 +00:00
|
|
|
{
|
|
|
|
Perk.EnemyHealthRange = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultproperties
|
|
|
|
{
|
|
|
|
NumLevels=4
|
|
|
|
DefLevelCosts(0)=25
|
|
|
|
DefLevelCosts(1)=15
|
|
|
|
DefLevelCosts(2)=20
|
|
|
|
DefLevelCosts(3)=30
|
|
|
|
}
|