123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.l2jserver.gameserver.templates.chars;
- import gnu.trove.TIntObjectHashMap;
- import java.util.List;
- import java.util.Map;
- import java.util.logging.Logger;
- import javolution.util.FastList;
- import javolution.util.FastMap;
- import com.l2jserver.gameserver.datatables.HerbDropTable;
- import com.l2jserver.gameserver.model.L2DropCategory;
- import com.l2jserver.gameserver.model.L2DropData;
- import com.l2jserver.gameserver.model.L2MinionData;
- import com.l2jserver.gameserver.model.L2NpcAIData;
- import com.l2jserver.gameserver.model.L2Skill;
- import com.l2jserver.gameserver.model.actor.instance.L2XmassTreeInstance;
- import com.l2jserver.gameserver.model.base.ClassId;
- import com.l2jserver.gameserver.model.quest.Quest;
- import com.l2jserver.gameserver.templates.StatsSet;
- /**
- * This cl contains all generic data of a L2Spawn object.<BR><BR>
- *
- * <B><U> Data</U> :</B><BR><BR>
- * <li>npcId, type, name, sex</li>
- * <li>rewardExp, rewardSp</li>
- * <li>aggroRange, factionId, factionRange</li>
- * <li>rhand, lhand</li>
- * <li>isUndead</li>
- * <li>_drops</li>
- * <li>_minions</li>
- * <li>_teachInfo</li>
- * <li>_skills</li>
- * <li>_questsStart</li><BR><BR>
- *
- * @version $Revision: 1.1.2.4 $ $Date: 2005/04/02 15:57:51 $
- */
- public final class L2NpcTemplate extends L2CharTemplate
- {
- protected static final Logger _log = Logger.getLogger(Quest.class.getName());
-
- public final int npcId;
- public final int idTemplate;
- public final String type;
- public final String name;
- public final boolean serverSideName;
- public final String title;
- public final boolean serverSideTitle;
- public final String sex;
- public final byte level;
- public final int rewardExp;
- public final int rewardSp;
- public final int aggroRange;
- public final int rhand;
- public final int lhand;
- public final int enchantEffect;
- public Race race;
- public final String jClass;
- public final int dropherbgroup;
- public boolean isQuestMonster; // doesn't include all mobs that are involved in
- // quests, just plain quest monsters for preventing champion spawn
- public final float baseVitalityDivider;
-
- //Skill AI
- public FastList<L2Skill> _buffskills;
- public FastList<L2Skill> _negativeskills;
- public FastList<L2Skill> _debuffskills;
- public FastList<L2Skill> _atkskills;
- public FastList<L2Skill> _rootskills;
- public FastList<L2Skill> _stunskills;
- public FastList<L2Skill> _sleepskills;
- public FastList<L2Skill> _paralyzeskills;
- public FastList<L2Skill> _fossilskills;
- public FastList<L2Skill> _floatskills;
- public FastList<L2Skill> _immobiliseskills;
- public FastList<L2Skill> _healskills;
- public FastList<L2Skill> _resskills;
- public FastList<L2Skill> _dotskills;
- public FastList<L2Skill> _cotskills;
- public FastList<L2Skill> _universalskills;
- public FastList<L2Skill> _manaskills;
- public FastList<L2Skill> _Lrangeskills;
- public FastList<L2Skill> _Srangeskills;
- public FastList<L2Skill> _generalskills;
-
- private boolean _hasbuffskills;
- private boolean _hasnegativeskills;
- private boolean _hasdebuffskills;
- private boolean _hasatkskills;
- private boolean _hasrootskills;
- private boolean _hasstunskills;
- private boolean _hassleepskills;
- private boolean _hasparalyzeskills;
- private boolean _hasfossilskills;
- private boolean _hasfloatskills;
- private boolean _hasimmobiliseskills;
- private boolean _hashealskills;
- private boolean _hasresskills;
- private boolean _hasdotskills;
- private boolean _hascotskills;
- private boolean _hasuniversalskills;
- private boolean _hasmanaskills;
- private boolean _hasLrangeskills;
- private boolean _hasSrangeskills;
- private boolean _hasgeneralskills;
-
- private L2NpcAIData _AIdataStatic = new L2NpcAIData();
-
- public static enum AIType
- {
- FIGHTER,
- ARCHER,
- BALANCED,
- MAGE,
- HEALER,
- CORPSE
- }
-
- public static enum Race
- {
- UNDEAD,
- MAGICCREATURE,
- BEAST,
- ANIMAL,
- PLANT,
- HUMANOID,
- SPIRIT,
- ANGEL,
- DEMON,
- DRAGON,
- GIANT,
- BUG,
- FAIRIE,
- HUMAN,
- ELVE,
- DARKELVE,
- ORC,
- DWARVE,
- OTHER,
- NONLIVING,
- SIEGEWEAPON,
- DEFENDINGARMY,
- MERCENARIE,
- UNKNOWN,
- KAMAEL,
- NONE
- }
-
- //private final StatsSet _npcStatsSet;
-
- /** The table containing all Item that can be dropped by L2NpcInstance using this L2NpcTemplate*/
- private FastList<L2DropCategory> _categories = null;
-
- /** The table containing all Minions that must be spawn with the L2NpcInstance using this L2NpcTemplate*/
- private List<L2MinionData> _minions = null;
-
- private List<ClassId> _teachInfo;
- private TIntObjectHashMap<L2Skill> _skills;
- //private Map<Stats, Double> _vulnerabilities;
- // contains a list of quests for each event type (questStart, questAttack, questKill, etc)
- private Map<Quest.QuestEventType, Quest[]> _questEvents;
-
- /**
- * Constructor of L2Character.<BR><BR>
- *
- * @param set The StatsSet object to transfer data to the method
- *
- */
- public L2NpcTemplate(StatsSet set)
- {
- super(set);
- npcId = set.getInteger("npcId");
- idTemplate = set.getInteger("idTemplate");
- type = set.getString("type");
- name = set.getString("name");
- serverSideName = set.getBool("serverSideName");
- title = set.getString("title");
- if (title.equalsIgnoreCase("Quest Monster"))
- isQuestMonster = true;
- else
- isQuestMonster = false;
- serverSideTitle = set.getBool("serverSideTitle");
- sex = set.getString("sex");
- level = set.getByte("level");
- rewardExp = set.getInteger("rewardExp");
- rewardSp = set.getInteger("rewardSp");
- aggroRange = set.getInteger("aggroRange");
- rhand = set.getInteger("rhand");
- lhand = set.getInteger("lhand");
- enchantEffect = set.getInteger("enchant");
- race = null;
- int herbGroup = set.getInteger("dropHerbGroup");
- if (herbGroup > 0 && HerbDropTable.getInstance().getHerbDroplist(herbGroup) == null)
- {
- _log.warning("Missing Herb Drop Group for npcId: " + npcId);
- dropherbgroup = 0;
- }
- else
- dropherbgroup = herbGroup;
-
- //_npcStatsSet = set;
- _teachInfo = null;
- jClass = set.getString("jClass");
-
- // can be loaded from db
- baseVitalityDivider = level > 0 && rewardExp > 0 ? baseHpMax * 9 * level * level /(100 * rewardExp) : 0;
- }
-
- public void addTeachInfo(ClassId classId)
- {
- if (_teachInfo == null)
- _teachInfo = new FastList<ClassId>();
- _teachInfo.add(classId);
- }
-
- public ClassId[] getTeachInfo()
- {
- if (_teachInfo == null)
- return null;
- return _teachInfo.toArray(new ClassId[_teachInfo.size()]);
- }
-
- public boolean canTeach(ClassId classId)
- {
- if (_teachInfo == null)
- return false;
-
- // If the player is on a third class, fetch the class teacher
- // information for its parent class.
- if (classId.level() == 3)
- return _teachInfo.contains(classId.getParent());
-
- return _teachInfo.contains(classId);
- }
-
- // add a drop to a given category. If the category does not exist, create it.
- public void addDropData(L2DropData drop, int categoryType)
- {
- if (drop.isQuestDrop())
- {
- // if (_questDrops == null)
- // _questDrops = new FastList<L2DropData>(0);
- // _questDrops.add(drop);
- }
- else
- {
- if (_categories == null)
- _categories = new FastList<L2DropCategory>();
- // if the category doesn't already exist, create it first
- synchronized (_categories)
- {
- boolean catExists = false;
- for (L2DropCategory cat : _categories)
- // if the category exists, add the drop to this category.
- if (cat.getCategoryType() == categoryType)
- {
- cat.addDropData(drop, type.equalsIgnoreCase("L2RaidBoss") || type.equalsIgnoreCase("L2GrandBoss"));
- catExists = true;
- break;
- }
- // if the category doesn't exit, create it and add the drop
- if (!catExists)
- {
- L2DropCategory cat = new L2DropCategory(categoryType);
- cat.addDropData(drop, type.equalsIgnoreCase("L2RaidBoss") || type.equalsIgnoreCase("L2GrandBoss"));
- _categories.add(cat);
- }
- }
- }
- }
-
- public void addRaidData(L2MinionData minion)
- {
- if (_minions == null)
- _minions = new FastList<L2MinionData>();
- _minions.add(minion);
- }
-
- /*public void addVulnerability(Stats id, double vuln)
- {
- if (_vulnerabilities == null)
- _vulnerabilities = new FastMap<Stats, Double>();
- _vulnerabilities.put(id, new Double(vuln));
- }
-
- public double getVulnerability(Stats id)
- {
- if (_vulnerabilities == null || _vulnerabilities.get(id) == null)
- return 1;
- return _vulnerabilities.get(id);
- }*/
-
-
- public void addSkill(L2Skill skill)
- {
-
- if (_skills == null)
- _skills = new TIntObjectHashMap<L2Skill>();
-
- if(!skill.isPassive())
- {
- addGeneralSkill(skill);
- switch(skill.getSkillType())
- {
- case BUFF:
- addBuffSkill(skill);
- break;
- case HEAL:
- case HOT:
- case HEAL_PERCENT:
- case HEAL_STATIC:
- case BALANCE_LIFE:
- addHealSkill(skill);
- break;
- case RESURRECT:
- addResSkill(skill);
- break;
- case DEBUFF:
- addDebuffSkill(skill);
- addCOTSkill(skill);
- addRangeSkill(skill);
- break;
- case ROOT:
- addRootSkill(skill);
- addImmobiliseSkill(skill);
- addRangeSkill(skill);
- break;
- case SLEEP:
- addSleepSkill(skill);
- addImmobiliseSkill(skill);
- break;
- case STUN:
- addRootSkill(skill);
- addImmobiliseSkill(skill);
- addRangeSkill(skill);
- break;
- case PARALYZE:
- addParalyzeSkill(skill);
- addImmobiliseSkill(skill);
- addRangeSkill(skill);
- break;
- case PDAM:
- case MDAM:
- case BLOW:
- case DRAIN:
- case CHARGEDAM:
- case FATAL:
- case DEATHLINK:
- case CPDAM:
- case MANADAM:
- case CPDAMPERCENT:
- addAtkSkill(skill);
- addUniversalSkill(skill);
- addRangeSkill(skill);
- break;
- case POISON:
- case DOT:
- case MDOT:
- case BLEED:
- addDOTSkill(skill);
- addRangeSkill(skill);
- break;
- case MUTE:
- case FEAR:
- addCOTSkill(skill);
- addRangeSkill(skill);
- break;
- case CANCEL:
- case NEGATE:
- addNegativeSkill(skill);
- addRangeSkill(skill);
- break;
- default :
- addUniversalSkill(skill);
- break;
-
- }
- }
-
- _skills.put(skill.getId(), skill);
- }
-
-
- /*public double removeVulnerability(Stats id)
- {
- return _vulnerabilities.remove(id);
- }*/
-
- /**
- * Return the list of all possible UNCATEGORIZED drops of this L2NpcTemplate.<BR><BR>
- */
- public FastList<L2DropCategory> getDropData()
- {
- return _categories;
- }
-
- /**
- * Return the list of all possible item drops of this L2NpcTemplate.<BR>
- * (ie full drops and part drops, mats, miscellaneous & UNCATEGORIZED)<BR><BR>
- */
- public List<L2DropData> getAllDropData()
- {
- if (_categories == null)
- return null;
- List<L2DropData> lst = new FastList<L2DropData>();
- for (L2DropCategory tmp : _categories)
- {
- lst.addAll(tmp.getAllDrops());
- }
- return lst;
- }
-
- /**
- * Empty all possible drops of this L2NpcTemplate.<BR><BR>
- */
- public synchronized void clearAllDropData()
- {
- if (_categories == null)
- return;
- while (!_categories.isEmpty())
- {
- _categories.getFirst().clearAllDrops();
- _categories.removeFirst();
- }
- _categories.clear();
- }
-
- /**
- * Return the list of all Minions that must be spawn with the L2NpcInstance using this L2NpcTemplate.<BR><BR>
- */
- public List<L2MinionData> getMinionData()
- {
- return _minions;
- }
-
- public TIntObjectHashMap<L2Skill> getSkills()
- {
- return _skills;
- }
-
- public L2Skill[] getSkillsArray()
- {
- return _skills.getValues(new L2Skill[_skills.size()]);
- }
-
- public void addQuestEvent(Quest.QuestEventType EventType, Quest q)
- {
- if (_questEvents == null)
- _questEvents = new FastMap<Quest.QuestEventType, Quest[]>();
-
- if (_questEvents.get(EventType) == null)
- {
- _questEvents.put(EventType, new Quest[]
- {
- q
- });
- }
- else
- {
- Quest[] _quests = _questEvents.get(EventType);
- int len = _quests.length;
-
- // if only one registration per npc is allowed for this event type
- // then only register this NPC if not already registered for the specified event.
- // if a quest allows multiple registrations, then register regardless of count
- // In all cases, check if this new registration is replacing an older copy of the SAME quest
- // Finally, check quest class hierarchy: a parent class should never replace a child class.
- // a child class should always replace a parent class.
- if (!EventType.isMultipleRegistrationAllowed())
- {
- // if it is the same quest (i.e. reload) or the existing is a superclass of the new one, replace the existing.
- if (_quests[0].getName().equals(q.getName()) || L2NpcTemplate.isAssignableTo(q, _quests[0].getClass()))
- {
- _quests[0] = q;
- }
- else
- {
- _log.warning("Quest event not allowed in multiple quests. Skipped addition of Event Type \"" + EventType + "\" for NPC \"" + name + "\" and quest \"" + q.getName() + "\".");
- }
- }
- else
- {
- // be ready to add a new quest to a new copy of the list, with larger size than previously.
- Quest[] tmp = new Quest[len + 1];
-
- // loop through the existing quests and copy them to the new list. While doing so, also
- // check if this new quest happens to be just a replacement for a previously loaded quest.
- // Replace existing if the new quest is the same (reload) or a child of the existing quest.
- // Do nothing if the new quest is a superclass of an existing quest.
- // Add the new quest in the end of the list otherwise.
- for (int i = 0; i < len; i++)
- {
- if (_quests[i].getName().equals(q.getName()) || L2NpcTemplate.isAssignableTo(q, _quests[i].getClass()))
- {
- _quests[i] = q;
- return;
- }
- else if (L2NpcTemplate.isAssignableTo(_quests[i], q.getClass()))
- {
- return;
- }
- tmp[i] = _quests[i];
- }
- tmp[len] = q;
- _questEvents.put(EventType, tmp);
- }
- }
- }
-
- /**
- * Checks if obj can be assigned to the Class represented by clazz.<br>
- * This is true if, and only if, obj is the same class represented by clazz,
- * or a subclass of it or obj implements the interface represented by clazz.
- *
- *
- * @param obj
- * @param clazz
- * @return
- */
- public static boolean isAssignableTo(Object obj, Class<?> clazz)
- {
- return L2NpcTemplate.isAssignableTo(obj.getClass(), clazz);
- }
-
- public static boolean isAssignableTo(Class<?> sub, Class<?> clazz)
- {
- // if clazz represents an interface
- if (clazz.isInterface())
- {
- // check if obj implements the clazz interface
- Class<?>[] interfaces = sub.getInterfaces();
- for (int i = 0; i < interfaces.length; i++)
- {
- if (clazz.getName().equals(interfaces[i].getName()))
- {
- return true;
- }
- }
- }
- else
- {
- do
- {
- if (sub.getName().equals(clazz.getName()))
- {
- return true;
- }
-
- sub = sub.getSuperclass();
- }
- while (sub != null);
- }
-
- return false;
- }
-
- public Quest[] getEventQuests(Quest.QuestEventType EventType)
- {
- if (_questEvents == null)
- {
- return null;
- }
- return _questEvents.get(EventType);
- }
-
- public void setRace(int raceId)
- {
- switch (raceId)
- {
- case 1:
- race = L2NpcTemplate.Race.UNDEAD;
- break;
- case 2:
- race = L2NpcTemplate.Race.MAGICCREATURE;
- break;
- case 3:
- race = L2NpcTemplate.Race.BEAST;
- break;
- case 4:
- race = L2NpcTemplate.Race.ANIMAL;
- break;
- case 5:
- race = L2NpcTemplate.Race.PLANT;
- break;
- case 6:
- race = L2NpcTemplate.Race.HUMANOID;
- break;
- case 7:
- race = L2NpcTemplate.Race.SPIRIT;
- break;
- case 8:
- race = L2NpcTemplate.Race.ANGEL;
- break;
- case 9:
- race = L2NpcTemplate.Race.DEMON;
- break;
- case 10:
- race = L2NpcTemplate.Race.DRAGON;
- break;
- case 11:
- race = L2NpcTemplate.Race.GIANT;
- break;
- case 12:
- race = L2NpcTemplate.Race.BUG;
- break;
- case 13:
- race = L2NpcTemplate.Race.FAIRIE;
- break;
- case 14:
- race = L2NpcTemplate.Race.HUMAN;
- break;
- case 15:
- race = L2NpcTemplate.Race.ELVE;
- break;
- case 16:
- race = L2NpcTemplate.Race.DARKELVE;
- break;
- case 17:
- race = L2NpcTemplate.Race.ORC;
- break;
- case 18:
- race = L2NpcTemplate.Race.DWARVE;
- break;
- case 19:
- race = L2NpcTemplate.Race.OTHER;
- break;
- case 20:
- race = L2NpcTemplate.Race.NONLIVING;
- break;
- case 21:
- race = L2NpcTemplate.Race.SIEGEWEAPON;
- break;
- case 22:
- race = L2NpcTemplate.Race.DEFENDINGARMY;
- break;
- case 23:
- race = L2NpcTemplate.Race.MERCENARIE;
- break;
- case 24:
- race = L2NpcTemplate.Race.UNKNOWN;
- break;
- case 25:
- race = L2NpcTemplate.Race.KAMAEL;
- break;
- default:
- race = L2NpcTemplate.Race.NONE;
- break;
- }
- }
-
- //-----------------------------------------------------------------------
- // Npc AI Data
- // By ShanSoft
- public void setAIData(L2NpcAIData aidata)
- {
- //_AIdataStatic = new L2NpcAIData(); // not needed to init object and in next line override with other reference. maybe other intention?
- _AIdataStatic = aidata;
- }
- //-----------------------------------------------------------------------
-
- public L2NpcAIData getAIDataStatic()
- {
- return _AIdataStatic;
- }
-
- public void addBuffSkill(L2Skill skill)
- {
- if (_buffskills == null)
- _buffskills = new FastList<L2Skill>();
- _buffskills.add(skill);
- _hasbuffskills=true;
- }
-
- public void addHealSkill(L2Skill skill)
- {
- if (_healskills == null)
- _healskills = new FastList<L2Skill>();
- _healskills.add(skill);
- _hashealskills=true;
- }
-
- public void addResSkill(L2Skill skill)
- {
- if (_resskills == null)
- _resskills = new FastList<L2Skill>();
- _resskills.add(skill);
- _hasresskills=true;
- }
-
- public void addAtkSkill(L2Skill skill)
- {
- if (_atkskills == null)
- _atkskills = new FastList<L2Skill>();
- _atkskills.add(skill);
- _hasatkskills=true;
- }
-
- public void addDebuffSkill(L2Skill skill)
- {
- if (_debuffskills == null)
- _debuffskills = new FastList<L2Skill>();
- _debuffskills.add(skill);
- _hasdebuffskills=true;
- }
-
- public void addRootSkill(L2Skill skill)
- {
- if (_rootskills == null)
- _rootskills = new FastList<L2Skill>();
- _rootskills.add(skill);
- _hasrootskills=true;
- }
-
- public void addSleepSkill(L2Skill skill)
- {
- if (_sleepskills == null)
- _sleepskills = new FastList<L2Skill>();
- _sleepskills.add(skill);
- _hassleepskills=true;
- }
-
- public void addStunSkill(L2Skill skill)
- {
- if (_stunskills == null)
- _stunskills = new FastList<L2Skill>();
- _stunskills.add(skill);
- _hasstunskills=true;
- }
-
- public void addParalyzeSkill(L2Skill skill)
- {
- if (_paralyzeskills == null)
- _paralyzeskills = new FastList<L2Skill>();
- _paralyzeskills.add(skill);
- _hasparalyzeskills=true;
- }
-
- public void addFloatSkill(L2Skill skill)
- {
- if (_floatskills == null)
- _floatskills = new FastList<L2Skill>();
- _floatskills.add(skill);
- _hasfloatskills=true;
- }
-
- public void addFossilSkill(L2Skill skill)
- {
- if (_fossilskills == null)
- _fossilskills = new FastList<L2Skill>();
- _fossilskills.add(skill);
- _hasfossilskills=true;
- }
-
- public void addNegativeSkill(L2Skill skill)
- {
- if (_negativeskills == null)
- _negativeskills = new FastList<L2Skill>();
- _negativeskills.add(skill);
- _hasnegativeskills=true;
- }
-
- public void addImmobiliseSkill(L2Skill skill)
- {
- if (_immobiliseskills == null)
- _immobiliseskills = new FastList<L2Skill>();
- _immobiliseskills.add(skill);
- _hasimmobiliseskills=true;
- }
-
- public void addDOTSkill(L2Skill skill)
- {
- if (_dotskills == null)
- _dotskills = new FastList<L2Skill>();
- _dotskills.add(skill);
- _hasdotskills=true;
- }
-
- public void addUniversalSkill(L2Skill skill)
- {
- if (_universalskills == null)
- _universalskills = new FastList<L2Skill>();
- _universalskills.add(skill);
- _hasuniversalskills=true;
- }
-
- public void addCOTSkill(L2Skill skill)
- {
- if (_cotskills == null)
- _cotskills = new FastList<L2Skill>();
- _cotskills.add(skill);
- _hascotskills=true;
- }
-
- public void addManaHealSkill(L2Skill skill)
- {
- if (_manaskills == null)
- _manaskills = new FastList<L2Skill>();
- _manaskills.add(skill);
- _hasmanaskills=true;
- }
- public void addGeneralSkill(L2Skill skill)
- {
- if (_generalskills == null)
- _generalskills = new FastList<L2Skill>();
- _generalskills.add(skill);
- _hasgeneralskills=true;
- }
-
- public void addRangeSkill(L2Skill skill)
- {
- if (skill.getCastRange() <= 150 && skill.getCastRange() > 0)
- {
- if (_Srangeskills == null)
- _Srangeskills = new FastList<L2Skill>();
- _Srangeskills.add(skill);
- _hasSrangeskills=true;
- }
- else if (skill.getCastRange() > 150)
- {
- if (_Lrangeskills == null)
- _Lrangeskills = new FastList<L2Skill>();
- _Lrangeskills.add(skill);
- _hasLrangeskills=true;
- }
- }
-
- //--------------------------------------------------------------------
- public boolean hasBuffSkill()
- {
- return _hasbuffskills;
- }
- public boolean hasHealSkill()
- {
- return _hashealskills;
- }
-
- public boolean hasResSkill()
- {
- return _hasresskills;
- }
-
- public boolean hasAtkSkill()
- {
- return _hasatkskills;
- }
-
- public boolean hasDebuffSkill()
- {
- return _hasdebuffskills;
- }
-
- public boolean hasRootSkill()
- {
- return _hasrootskills;
- }
-
- public boolean hasSleepSkill()
- {
- return _hassleepskills;
- }
-
- public boolean hasStunSkill()
- {
- return _hasstunskills;
- }
-
- public boolean hasParalyzeSkill()
- {
- return _hasparalyzeskills;
- }
-
- public boolean hasFloatSkill()
- {
- return _hasfloatskills;
- }
-
- public boolean hasFossilSkill()
- {
- return _hasfossilskills;
- }
-
- public boolean hasNegativeSkill()
- {
- return _hasnegativeskills;
- }
-
- public boolean hasImmobiliseSkill()
- {
- return _hasimmobiliseskills;
- }
-
- public boolean hasDOTSkill()
- {
- return _hasdotskills;
- }
-
- public boolean hasUniversalSkill()
- {
- return _hasuniversalskills;
- }
-
- public boolean hasCOTSkill()
- {
- return _hascotskills;
- }
-
- public boolean hasManaHealSkill()
- {
- return _hasmanaskills;
- }
- public boolean hasAutoLrangeSkill()
- {
- return _hasLrangeskills;
- }
- public boolean hasAutoSrangeSkill()
- {
- return _hasSrangeskills;
- }
- public boolean hasSkill()
- {
- return _hasgeneralskills;
- }
-
- public L2NpcTemplate.Race getRace()
- {
- if (race == null)
- race = L2NpcTemplate.Race.NONE;
-
- return race;
- }
-
- public boolean isCustom()
- {
- return npcId != idTemplate;
- }
-
- /**
- * @return name
- */
- public String getName()
- {
- return name;
- }
-
- public boolean isSpecialTree()
- {
- return npcId == L2XmassTreeInstance.SPECIAL_TREE_ID;
- }
-
- public boolean isUndead()
- {
- return (race == Race.UNDEAD);
- }
- }
|