cond = joinAnd(cond, new ConditionPlayerRace(a.getNodeValue()));
}
else if("minLevel".equalsIgnoreCase(nodeName))
{
int lvl = parseNumber(a.getNodeValue()).intValue();
cond = joinAnd(cond, new ConditionPlayerMinLevel(lvl));
}
else if("maxLevel".equalsIgnoreCase(nodeName))
{
int lvl = parseNumber(a.getNodeValue()).intValue();
cond = joinAnd(cond, new ConditionPlayerMaxLevel(lvl));