|
@@ -91,6 +91,7 @@ public final class L2NpcTemplate extends L2CharTemplate implements IIdentifiable
|
|
private int _clanHelpRange;
|
|
private int _clanHelpRange;
|
|
private int _dodge;
|
|
private int _dodge;
|
|
private boolean _isChaos;
|
|
private boolean _isChaos;
|
|
|
|
+ private boolean _isAggressive;
|
|
private int _soulShot;
|
|
private int _soulShot;
|
|
private int _spiritShot;
|
|
private int _spiritShot;
|
|
private int _soulShotChance;
|
|
private int _soulShotChance;
|
|
@@ -166,6 +167,7 @@ public final class L2NpcTemplate extends L2CharTemplate implements IIdentifiable
|
|
_clanHelpRange = set.getInt("clanHelpRange", 0);
|
|
_clanHelpRange = set.getInt("clanHelpRange", 0);
|
|
_dodge = set.getInt("dodge", 0);
|
|
_dodge = set.getInt("dodge", 0);
|
|
_isChaos = set.getBoolean("isChaos", false);
|
|
_isChaos = set.getBoolean("isChaos", false);
|
|
|
|
+ _isAggressive = set.getBoolean("isAggressive", true);
|
|
|
|
|
|
_soulShot = set.getInt("soulShot", 0);
|
|
_soulShot = set.getInt("soulShot", 0);
|
|
_spiritShot = set.getInt("spiritShot", 0);
|
|
_spiritShot = set.getInt("spiritShot", 0);
|
|
@@ -375,6 +377,11 @@ public final class L2NpcTemplate extends L2CharTemplate implements IIdentifiable
|
|
return _isChaos;
|
|
return _isChaos;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public boolean isAggressive()
|
|
|
|
+ {
|
|
|
|
+ return _isAggressive;
|
|
|
|
+ }
|
|
|
|
+
|
|
public int getSoulShot()
|
|
public int getSoulShot()
|
|
{
|
|
{
|
|
return _soulShot;
|
|
return _soulShot;
|