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

42 lines
621 B
Java

package org.moparscape.msc.gs.external;
/**
* The definition wrapper for items
*/
public class ItemCookingDef {
/**
* The id of the burned version
*/
public int burnedId;
/**
* The id of the cooked version
*/
public int cookedId;
/**
* The exp cooking this item gives
*/
public int exp;
/**
* The level required to cook this
*/
public int requiredLvl;
public int getBurnedId() {
return burnedId;
}
public int getCookedId() {
return cookedId;
}
public int getExp() {
return exp;
}
public int getReqLevel() {
return requiredLvl;
}
}