Node a = attrs.item(i);
String nodeName = a.getNodeName();
String nodeValue = a.getNodeValue();
if("aggro".equalsIgnoreCase(nodeName))
{
cond = joinAnd(cond, new ConditionTargetAggro(Boolean.valueOf(nodeValue)));
}
else if("pvp".equalsIgnoreCase(nodeName))
{
cond = joinAnd(cond, new ConditionTargetPlayable(Boolean.valueOf(nodeValue)));
}