cond = joinAnd(cond, new ConditionUsingItemType(mask));
}
else if ("skill".equalsIgnoreCase(a.getNodeName()))
{
int id = Integer.parseInt(a.getNodeValue());
cond = joinAnd(cond, new ConditionUsingSkill(id));
}
else if ("slotitem".equalsIgnoreCase(a.getNodeName()))
{
StringTokenizer st = new StringTokenizer(a.getNodeValue(), ";");
int id = Integer.parseInt(st.nextToken().trim());