<?xml version="1.0" encoding="utf-8" ?>
<ItemRules name="Default Item Rules" useRoundedValues="true">
<!-- The order in which item rules are evaluated. Typically, this is fine for almost all rule sets.
However, you may want to switch things around sometimes if you want to force-sell things that may match keep rules. -->
<Priority priority1="Keep" priority2="Sell" priority3="Salvage" />
<Categories>
<Category ruleType="PickUp">
<!-- Pick up all Legendary items and higher -->
<ItemRule>
<StatRules>
<Rule stat="quality" value="Legendary" />
</StatRules>
</ItemRule>
</Category>
<Category ruleType="Keep">
<!-- Keep all Legendary items and higher -->
<ItemRule>
<StatRules>
<Rule stat="quality" value="Legendary" />
</StatRules>
</ItemRule>
</Category>
</Categories>
</ItemRules>