MoparClassic/GameServer/src/main/java/org/moparscape/msc/gs/external/ItemHerbDef.java

34 lines
495 B
Java

package org.moparscape.msc.gs.external;
/**
* The definition wrapper for items
*/
public class ItemHerbDef {
/**
* The exp smelting this item gives
*/
public int exp;
/**
* The id of the related potion
*/
public int potionId;
/**
* The level required to make this
*/
public int requiredLvl;
public int getExp() {
return exp;
}
public int getPotionId() {
return potionId;
}
public int getReqLevel() {
return requiredLvl;
}
}