Package org.moparscape.msc.gs.model.definition.skill

Examples of org.moparscape.msc.gs.model.definition.skill.ItemDartTipDef


    if (item.amount < amount) {
      amount = item.amount;
    }
    InvItem newItem;
    int exp;
    ItemDartTipDef tipDef = null;
    if (item.id == 280) {
      newItem = new InvItem(637, amount);
      exp = amount;
    } else if ((tipDef = EntityHandler.getItemDartTipDef(item.id)) != null) {
      newItem = new InvItem(tipDef.getDartID(), amount);
      exp = (int) (tipDef.getExp() * (double) amount);
    } else {
      return false;
    }
    final int amt = amount;
    final int xp = exp;
View Full Code Here

TOP

Related Classes of org.moparscape.msc.gs.model.definition.skill.ItemDartTipDef

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.