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

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


      }
    }
    if (fish.size() <= 0) {
      return null;
    }
    ObjectFishDef thisFish = fish.get(DataConversions.random(0,
        fish.size() - 1));
    int levelDiff = fishingLevel - thisFish.getReqLevel();
    if (levelDiff < 0) {
      return null;
    }
    return DataConversions.percentChance(offsetToPercent(levelDiff)) ? thisFish
        : null;
View Full Code Here

TOP

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

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.