Jump to content

Join our Slack

Talk to other users and have a great time
Slack Server

Welcome to our Community

Click here to get your Exiled Bot license
Donation Store
Sign in to follow this  
crank

My PickIt stashes all rare wands

Recommended Posts

Hi!

My PickIt works fine with one exception, it stashes far to many rare wands (i think all of them, but not 100% sure). It identifies them before stashing. Maybe someone can help me, I can't find the mistake.

// Welcome to the Exiled Bot default Pickit
// You'll find the item names list in the ItemNameList.txt file, in the main bot folder, if some name are missing, please send them to us in pm and I'll add them to upcoming versions.
// You'll find the mods list in the ModsList.html file, in the main bot folder, remember to only use expressions from the right (ie. local_minimum_added_physical_damage, base_maximum_energy_shield, ...). 
 
// There are several special mods here to make pickit maker's life easier:
// [TotalResistances] that will make the bot sum all resistances on each item and compare them to the value (ie. [Category] == "Helm" # [TotalResistances] > "50", to keep every helm that has more than 50 sum up resistance value.  
// [DPS] that will make the bot compute the dps of any weapon and compare it to the value (ie. [Category] == "1Handed" # [DPS] >= "250").
// [Elemental DPS] that will make the bot compute ONLY the elemental dps of any weapon and compare it to the value (ie. [Category] == "1Handed" # [Elemental DPS] >= "200").
// [Physical DPS] that will make the bot compute ONLY the physical dps of any weapon and compare it to the value (ie. [Category] == "1Handed" # [Physical DPS] >= "250").
// Expressions to the left are only here to help you choosing the right ones
 
// Syntax is: [Key] operator "Value"
// Key could be replaced by any of the following list, operator could be ==, <=, >=, <, > and Value could be any corresponding value (ie. a number if type is Quality)
// Key List: Type, ItemLevel, MapLevel, Armor, Evasion, Energy Shield, Computed Armor, Computed Evasion, Computed Energy Shield, Rarity, Quality, Sockets, Linked, and all the mods found in ModsList.html file.
// You can use a mod by its index (if it is not in the ModsList.txt file) this way [modindex] == "value", ie. [587] == "30" for +30 int mod. Press F7 to dump inventory and find mod indexes.
// Flags that can be used are : [stashItem] =="true", [sellItem] == "true", [sellUnid] == "true". Please note that [sellItem] tag will ALWAYS make the bot identify item.
// About Key Rarity, only operators == and != can be used and possible values are: "Normal", "Magic", "Rare", "Unique".
// You can use different equipment categories as well, possible values: "Chest", "Shield", "Helm", "Ring", "Amulet", "Flask", "Weapon", "1Handed", "2Handed", "Gloves", "Boots", "Belt", "Map", "Jewel".
// Operators && and || are available, parenthesis are working.
// # is used to separate mods checked after item identification. If an item matchs mods before the # and doesn't match the ones after, it will be sold to vendor.
// If you didn't noticed, // is used for comments.
 
// /!\ Be careful!!! local_ mod name means that the mods is applied on the stats of the items rather than the stats of your char. local_attack_speed_+% for instance is applied on the weapon only
// and attack_speed_+% is global on the character (ring,amy,belt...) /!\
 
// If you want to chance an item, simply add for instance [Type] == "Glorious Plate" # [ChanceItem] == "true", to make the bot pickup any glorious plate it find and use an orb of chance on it (Kaom's Heart FTW).
// Be careful, if you set up the Glorious Plate to be Chanced, no need to add any line for the bot to pick up the white item or sell magic and rare. Just setup [Type] == "Your Item" # [ChanceItem] == "true" and the bot will do the rest.
 
// Thanks to Phaukt and Jarvis101 for their help in building this pickit file.
 
 
/////////////////////////////////////////////////////////////////////////////////////
//                                                                                 //
//                                 EXAMPLE                                         //
//                                                                                 //
/////////////////////////////////////////////////////////////////////////////////////
 
// Blanket coverage
// [Category] == "Gloves" && [Rarity] == "Rare" # [sellItem] == "true"
// What it means : Pick up any gloves. Id the item. Then Sell it.
// Exception handling
// [Category] == "Gloves" && [Rarity] == "Rare" # [attack_speed_+%] >= "10" && [stashItem] == "true"
// What it means : When the gloves are Identified, if they have an attack speed modifier  above a 10% value, it will stash the item.
// [Type] == "Short Bow" && [Rarity] == "Unique" && [Quality] >= "10" // Random example 1
// [Type] == "Faun's Horn" && [Rarity] == "Rare" && [Linked] == "4" # [stashItem] == "true" && [121] == "27" && ([base_fire_damage_resistance_%] >= "25" || [base_lightning_damage_resistance_%] >= 25) // Random example 2
// [Type] == "Faun's Horn" && [Rarity] == "Rare" && [Linked] == "4" # [121] == "27" && ([base_fire_damage_resistance_%] >= "25" || [base_lightning_damage_resistance_%] >= 25) // Random example 3 (yes even without [stashItem] == "true", bot stashes on match)
// [Type] == "Occultist's Vestment" && [Rarity] == "Unique" // Random example 4
// [Type] == "Engraved Wand" # [attack_minimum_added_physical_damage]>="10" && [accuracy_rating_+%]=="100"  // Random example 5
// [Type] == "Medium Life Flask" // Random example 6
// [Category] == "Chest" && [Rarity] == "Rare" # [base_maximum_life] >= "80" && [151] >= "20" && [base_cold_damage_resistance_%] >= "25" // Random example 7
// [Category] == "Helm" && [Rarity] == "Rare" # [stashItem] == "true" && [base_maximum_life] >= "80" && [base_lightning_damage_resistance_%] >= "25" && [base_cold_damage_resistance_%] >= "25" // Random example 8
 
 
/////////////////////////////////////////////////////////////////////////////////////
//                                                                                 //
//                             User's custom rules                                 //
//                                                                                 //
/////////////////////////////////////////////////////////////////////////////////////
 
// [Rarity] == "Unique" # [stashItem] == "true" // Keep all unique, comment this line if you want the bot to sell unique not defined in this file
 
// For storing belts and jewelry for chaos orb recipe, Uncomment the 3 below and comment the 3 above to stash jewelry. Also, delete the jewelery from the accessories section.
// [Category] == "Belt" && [Rarity] == "Rare"
// [Category] == "Ring" && [Rarity] == "Rare"
// [Category] == "Amulet" && [Rarity] == "Rare"
 
 
/////////////////////////////////////////////////////////////////////////////////////
//                                                                                 //
//                                  CURRENCY                                       //
//                                                                                 //
/////////////////////////////////////////////////////////////////////////////////////
 
// Scrolls commented so instead of picking every scroll it will keep number of scroll setup by user in inventory
// [Type] == "Scroll of Wisdom" # [stashItem] == "true" // Take all id scroll
// [Type] == "Portal Scroll" # [stashItem] == "true" // Take all tp scroll
[Type] == "Blacksmith's Whetstone" # [stashItem] == "true" // Take Blacksmith's Whetstone
[Type] == "Armourer's Scrap" # [stashItem] == "true" // Take Armourer's Scrap
[Type] == "Glassblower's Bauble" # [stashItem] == "true" // Take Glassblower's Bauble
[Type] == "Albino Rhoa Feather" # [stashItem] == "true" // Albino Rhoa Feather
 
[Category] == "Map" // Take all maps
 
[Type] == "Sacrifice at Dawn" # [stashItem] == "true" //Sacrifice map
[Type] == "Sacrifice at Noon" # [stashItem] == "true" //Sacrifice map
[Type] == "Sacrifice at Dusk" # [stashItem] == "true" //Sacrifice map
[Type] == "Sacrifice at Midnight" # [stashItem] == "true" //Sacrifice map
 
/////////////////////////////////////////////////////////////////////////////////////
//                                                                                 //
//                                 C A R D S                                       //
//                                                                                 //
/////////////////////////////////////////////////////////////////////////////////////
 
[Type] == "Abandoned Wealth" # [stashItem] == "true"
[Type] == "The Avenger" # [stashItem] == "true"
[Type] == "The Battle Born" # [stashItem] == "true"
[Type] == "Birth of the Three" # [stashItem] == "true"
[Type] == "The Brittle Emperor" # [stashItem] == "true"
[Type] == "The Carrion Crow" # [stashItem] == "true"
[Type] == "The Cataclysm" # [stashItem] == "true"
[Type] == "The Celestial Justicar" # [stashItem] == "true"
[Type] == "The Chains that Bind" # [stashItem] == "true"
[Type] == "Chaotic Disposition" # [stashItem] == "true"
[Type] == "Coveted Possession" # [stashItem] == "true"
[Type] == "The Dark Mage" # [stashItem] == "true"
[Type] == "The Doctor" # [stashItem] == "true"
[Type] == "The Drunken Aristocrat" # [stashItem] == "true"
[Type] == "Emperor's Luck" # [stashItem] == "true"
[Type] == "The Explorer" # [stashItem] == "true"
[Type] == "The Feast" # [stashItem] == "true"
[Type] == "The Fiend" # [stashItem] == "true"
[Type] == "The Gambler" # [stashItem] == "true"
[Type] == "The Gemcutter" # [stashItem] == "true"
[Type] == "Gemcutter's Promise" # [stashItem] == "true"
[Type] == "The Gladiator" # [stashItem] == "true"
[Type] == "The Hermit" # [stashItem] == "true"
[Type] == "The Hoarder" # [stashItem] == "true"
[Type] == "Hope" # [stashItem] == "true"
[Type] == "The Hunger" # [stashItem] == "true"
[Type] == "Humility" # [stashItem] == "true"
[Type] == "The Incantation" # [stashItem] == "true"
[Type] == "The Inventor" # [stashItem] == "true"
[Type] == "Jack in the Box" # [stashItem] == "true"
[Type] == "The King's Heart" # [stashItem] == "true"
[Type] == "Lantador's Lost Love" # [stashItem] == "true"
[Type] == "The Lover" # [stashItem] == "true"
[Type] == "Lucky Connections" # [stashItem] == "true"
[Type] == "The Metalsmith's Gift" # [stashItem] == "true"
[Type] == "The Pact" # [stashItem] == "true"
[Type] == "The Poet" # [stashItem] == "true"
[Type] == "The Queen" # [stashItem] == "true"
[Type] == "Rain of Chaos" # [stashItem] == "true"
[Type] == "The Road to Power" # [stashItem] == "true"
[Type] == "The Scarred Meadow" # [stashItem] == "true"
[Type] == "The Scholar" # [stashItem] == "true"
[Type] == "The Summoner" # [stashItem] == "true"
[Type] == "The Sun" # [stashItem] == "true"
[Type] == "Three Faces in the Dark" # [stashItem] == "true"
[Type] == "Time-Lost Relic" # [stashItem] == "true"
[Type] == "The Union" # [stashItem] == "true"
[Type] == "Vinia's Token" # [stashItem] == "true"
[Type] == "The Warden" # [stashItem] == "true"
[Type] == "The Watcher" # [stashItem] == "true"
[Type] == "The Wind" # [stashItem] == "true"
 
/////////////////////////////////////////////////////////////////////////////////////
//                                                                                 //
//                                  G E M S                                        //
//                                                                                 //
/////////////////////////////////////////////////////////////////////////////////////
 
// For quality gem, use the setting Min Gem Quality from Pickit tab of GUI
 
// Red Active Gem Skill
 
//[Type] == "Anger" // Gem
//[Type] == "Animate Guardian" // Gem
//[Type] == "Cleave" // Gem
//[Type] == "Decoy Totem" // Gem
//[Type] == "Determination" // Gem
//[Type] == "Devouring Totem" // Gem
//[Type] == "Dominating Blow" // Gem
//[Type] == "Enduring Cry" // Gem
//[Type] == "Flame Totem" // Gem
//[Type] == "Glacial Hammer" // Gem
//[Type] == "Ground Slam" // Gem
//[Type] == "Heavy Strike" // Gem
//[Type] == "Herald of Ash" // Gem
//[Type] == "Immortal Call" // Gem
//[Type] == "Infernal Blow" // Gem
//[Type] == "Leap Slam" // Gem
//[Type] == "Lightning Strike" // Gem
//[Type] == "Molten Shell" // Gem
//[Type] == "Molten Strike" // Gem
//[Type] == "Punishment" // Gem
//[Type] == "Purity of Fire" // Gem
//[Type] == "Rejuvenation Totem" // Gem
//[Type] == "Searing Bond" // Gem
//[Type] == "Shield Charge" // Gem
//[Type] == "Shockwave Totem" // Gem
//[Type] == "Sweep" // Gem
//[Type] == "Vitality" // Gem
//[Type] == "Warlord's Mark" // Gem
 
//Red Support Gem Skill
 
//[Type] == "Added Fire Damage" // Gem
//[Type] == "Blood Magic" // Gem
//[Type] == "Cast on Melee Kill" // Gem
//[Type] == "Cast when Damage Taken" // Gem
//[Type] == "Cold to Fire" // Gem
[Type] == "Empower" // Gem
//[Type] == "Endurance Charge on Melee Stun" // Gem
//[Type] == "Fire Penetration" // Gem
//[Type] == "Generosity" // Gem
//[Type] == "Increased Burning Damage" // Gem
//[Type] == "Increased Duration" // Gem
//[Type] == "Iron Grip" // Gem
//[Type] == "Iron Will" // Gem
//[Type] == "Item Quantity" // Gem
//[Type] == "Knockback" // Gem
//[Type] == "Life Gain on Hit" // Gem
//[Type] == "Life Leech" // Gem
//[Type] == "Melee Damage on Full Life" // Gem
//[Type] == "Melee Physical Damage" // Gem
//[Type] == "Melee Splash" // Gem
//[Type] == "Multistrike" // Gem
//[Type] == "Ranged Attack Totem" // Gem
//[Type] == "Reduced Duration" // Gem
//[Type] == "Reduced Mana" // Gem
//[Type] == "Spell Totem" // Gem
//[Type] == "Stun" // Gem
//[Type] == "Weapon Elemental Damage"// Gem
 
// Green Active Gem Skill
 
//[Type] == "Animate Weapon" // Gem
//[Type] == "Arctic Armour" // Gem
//[Type] == "Barrage" // Gem
//[Type] == "Bear Trap" // Gem
//[Type] == "Blood Rage" // Gem
//[Type] == "Burning Arrow" // Gem
//[Type] == "Cyclone" // Gem
//[Type] == "Desecrate" // Gem
//[Type] == "Detonate Dead" // Gem
//[Type] == "Double Strike" // Gem
//[Type] == "Dual Strike" // Gem
//[Type] == "Elemental Hit" // Gem
//[Type] == "Ethereal Knives" // Gem
//[Type] == "Explosive Arrow" // Gem
//[Type] == "Fire Trap" // Gem
//[Type] == "Flicker Strike" // Gem
//[Type] == "Freeze Mine" // Gem
//[Type] == "Frenzy" // Gem
//[Type] == "Grace" // Gem
//[Type] == "Haste" // Gem
//[Type] == "Hatred" // Gem
//[Type] == "Herald of Ice" // Gem
//[Type] == "Ice Shot" // Gem
//[Type] == "Lightning Arrow" // Gem
//[Type] == "Poacher's Mark" // Gem
//[Type] == "Poison Arrow" // Gem
//[Type] == "Projectile Weakness" // Gem
//[Type] == "Puncture" // Gem
//[Type] == "Purity of Ice" // Gem
//[Type] == "Rain of Arrows " // Gem
//[Type] == "Reave" // Gem
//[Type] == "Smoke Mine" // Gem
//[Type] == "Spectral Throw" // Gem
//[Type] == "Split Arrow" // Gem
//[Type] == "Temporal Chains" // Gem
//[Type] == "Tornado Shot" // Gem
//[Type] == "Viper Strike" // Gem
//[Type] == "Whirling Blades" // Gem
 
// Green Support Gem Skill
 
//[Type] == "Added Cold Damage" // Gem
//[Type] == "Additional Accuracy" // Gem
//[Type] == "Blind" // Gem
//[Type] == "Block Chance Reduction" // Gem
//[Type] == "Cast On Critical Strike" // Gem
//[Type] == "Cast on Death" // Gem
//[Type] == "Chain" // Gem
//[Type] == "Chance to Flee" // Gem
//[Type] == "Cold Penetration" // Gem
//[Type] == "Culling Strike" // Gem
[Type] == "Enhance" // Gem
//[Type] == "Faster Attacks" // Gem
//[Type] == "Faster Projectiles" // Gem
//[Type] == "Fork" // Gem
//[Type] == "Greater Multiple Projectiles" // Gem
//[Type] == "Lesser Multiple Projectiles" // Gem
//[Type] == "Mana Leech" // Gem
//[Type] == "Multiple Traps" // Gem
//[Type] == "Physical Projectile Attack Damage" // Gem
//[Type] == "Pierce" // Gem
//[Type] == "Point Blank" // Gem
//[Type] == "Slower Projectiles" // Gem
//[Type] == "Trap" // Gem
 
// Blue Active Gem Skill
 
//[Type] == "Arc" // Gem
//[Type] == "Arctic Breath" // Gem
//[Type] == "Assassin's Mark" // Gem
//[Type] == "Ball Lightning" // Gem
//[Type] == "Bone Offering" // Gem
//[Type] == "Clarity" // Gem
//[Type] == "Cold Snap" // Gem
//[Type] == "Conductivity" // Gem
//[Type] == "Conversion Trap" // Gem
//[Type] == "Convocation" // Gem
//[Type] == "Discharge" // Gem
//[Type] == "Discipline" // Gem
//[Type] == "Elemental Weakness" // Gem
//[Type] == "Enfeeble" // Gem
//[Type] == "Fireball" // Gem
//[Type] == "Firestorm" // Gem
//[Type] == "Flameblast" // Gem
//[Type] == "Flame Surge" // Gem
//[Type] == "Flammability" // Gem
//[Type] == "Flesh Offering" // Gem
//[Type] == "Freezing Pulse" // Gem
//[Type] == "Frost Wall" // Gem
//[Type] == "Frostbite" // Gem
//[Type] == "Glacial Cascade" // Gem
//[Type] == "Herald of Thunder" // Gem
//[Type] == "Ice Nova" // Gem
//[Type] == "Ice Spear" // Gem
//[Type] == "Incinerate" // Gem
//[Type] == "Lightning Trap" // Gem
//[Type] == "Lightning Warp" // Gem
//[Type] == "Power Siphon" // Gem
//[Type] == "Purity of Elements" // Gem
//[Type] == "Purity of Lightning" // Gem
//[Type] == "Raise Spectre" // Gem
//[Type] == "Raise Zombie" // Gem
//[Type] == "Righteous Fire" // Gem
//[Type] == "Shock Nova" // Gem
//[Type] == "Spark" // Gem
//[Type] == "Storm Call" // Gem
//[Type] == "Summon Raging Spirit" // Gem
//[Type] == "Summon Skeletons" // Gem
//[Type] == "Tempest Shield" // Gem
//[Type] == "Vulnerability" // Gem
//[Type] == "Wrath" // Gem
 
// Blue Support Gem Skill
 
//[Type] == "Added Chaos Damage" // Gem
//[Type] == "Added Lightning Damage" // Gem
//[Type] == "Cast when Stunned" // Gem
//[Type] == "Chance to Ignite" // Gem
//[Type] == "Concentrated Effect" // Gem
//[Type] == "Curse on Hit" // Gem
//[Type] == "Elemental Proliferation" // Gem
[Type] == "Enlighten" // Gem
//[Type] == "Faster Casting" // Gem
//[Type] == "Increased Area of Effect" // Gem
//[Type] == "Increased Critical Damage" // Gem
//[Type] == "Increased Critical Strikes" // Gem
//[Type] == "Item Rarity" // Gem
//[Type] == "Lightning Penetration" // Gem
//[Type] == "Minion and Totem Elemental Resistance" // Gem
//[Type] == "Minion Damage" // Gem
//[Type] == "Minion Life" // Gem
//[Type] == "Minion Speed" // Gem
//[Type] == "Power Charge On Critical" // Gem
//[Type] == "Remote Mine" // Gem
//[Type] == "Spell Echo" // Gem
 
// Currently no Vaal gems with quality have been found
 
[Type] == "Vaal Glaciel Hammer" // Gem
[Type] == "Vaal Ground Slam" // Gem
[Type] == "Vaal Immortal Call" // Gem
[Type] == "Vaal Lightning Strike" // Gem
[Type] == "Vaal Molten Shell" // Gem
 
[Type] == "Vaal Burning Arrow" // Gem
[Type] == "Vaal Cyclone" // Gem
[Type] == "Vaal Detonate Dead" // Gem
[Type] == "Vaal Double Strike" // Gem
[Type] == "Vaal Grace" // Gem
[Type] == "Vaal Haste" // Gem
[Type] == "Vaal Rain of Arrows" // Gem
[Type] == "Vaal Reave" // Gem
[Type] == "Vaal Spectral Throw" // Gem
 
[Type] == "Vaal Arc" // Gem
[Type] == "Vaal Clarity" // Gem
[Type] == "Vaal Cold Snap" // Gem
[Type] == "Vaal Discipline" // Gem
[Type] == "Vaal Fireball" // Gem
[Type] == "Vaal Flameblast" // Gem
[Type] == "Vaal Ice Nova" // Gem
[Type] == "Vaal Lightning Trap" // Gem
[Type] == "Vaal Lightning Warp" // Gem
[Type] == "Vaal Power Siphon" // Gem
[Type] == "Vaal Righteous Fire" // Gem
[Type] == "Vaal Spark" // Gem
[Type] == "Vaal Storm Call" // Gem
[Type] == "Vaal Summon Skeletons" // Gem
 
/////////////////////////////////////////////////////////////////////////////////////
//                                                                                 //
//                                  SOCKETS                                        //
//                                                                                 //
/////////////////////////////////////////////////////////////////////////////////////
 
[sockets] == "6" && [Linked] == "6" # [stashItem] =="true" // Keep 6L
[sockets] == "6" && [Linked] <= "5" # [sellUnid] == "true" // Sell 6S 
 
/////////////////////////////////////////////////////////////////////////////////////
//                                                                                 //
//                              C H A N C I N G                                    //
//                                                                                 //
/////////////////////////////////////////////////////////////////////////////////////
 
// [Type] == "Glorious Plate" # [ChanceItem] == "true" && [Rarity] == "Normal" // Kaom's Heart
// [Type] == "Hubris Circlet" # [ChanceItem] == "true" && [Rarity] == "Normal" // Crown of Eyes
// [Type] == "Gavel" # [ChanceItem] == "true" && [Rarity] == "Normal" // Mjolnir
// [Type] == "Spine Bow" # [ChanceItem] == "true" && [Rarity] == "Normal" // Voltaxic Rift
// [Type] == "Agate Amulet" # [ChanceItem] == "true" && [Rarity] == "Normal" // Voll's Devotion
 
/////////////////////////////////////////////////////////////////////////////////////
//                                                                                 //
//                             U N I Q U E  I T E M S                              //
//                                                                                 //
/////////////////////////////////////////////////////////////////////////////////////
 
[Rarity] == "Unique" # [sellItem] == "true" // Sell all unique that aren't defined in the pickit (be careful with recently added uniques)
 
//////////////////////////////////////////////
//                                          //
//                J E W E L S               //
//                                          //
//////////////////////////////////////////////
 
// [Category] == "Jewel" # [stashItem] == "true" // Stash all jewels
[Category] == "Jewel" && [Rarity] == "Magic" && [mana_leech_from_physical_damage_permyriad] == 0.4 # [stashItem] == "true" //stash all max manaleech jewels
[Category] == "Jewel" && [Rarity] == "Magic" && [life_leech_from_physical_damage_permyriad] == 0.4 # [stashItem] == "true" //stash all max lifeleech jewels
[Category] == "Jewel" && [Rarity] == "Magic" && [maximum_life_+%] == 7 # [stashItem] == "true" //stash all max %-life jewels
[Category] == "Jewel" && [Rarity] == "Magic" && [area_damage_+%] == 12 # [stashItem] == "true" //stash all max %-area dmg jewels
[Category] == "Jewel" && [Rarity] == "Magic" && [attack_speed_+%] == 5 # [stashItem] == "true" //stash all max %-attack speed jewels
 
[Category] == "Jewel" && [Rarity] == "Rare" # [stashItem] == "true" // Stash all rare jewels
[Category] == "Jewel" && [Rarity] == "Unique" # [stashItem] == "true" // Stash all unique jewels
 
 
//////////////////////////////////////////////
//                                          //
//                A m u l e t s             //
//                                          //
//////////////////////////////////////////////
 
[Type] == "Amulet" && [Rarity] == "Unique" // All Unique Amulets
 
 
//////////////////////////////////////////////
//                                          //
//                B e l t s                 //
//                                          //
//////////////////////////////////////////////
 
[Type] == "Belt" && [Rarity] == "Unique" // All Unique Belts
 
 
//////////////////////////////////////////////
//                                          //
//                R i n g s                 //
//                                          //
//////////////////////////////////////////////
 
[Type] == "Ring" && [Rarity] == All Unique Rings
 
 
//////////////////////////////////////////////
//                                          //
//                Q u i v e r s             //
//                                          //
//////////////////////////////////////////////
 
[Type] == "Penetrating Arrow Quiver" && [Rarity] == "Unique" //Drillneck
[Type] == "Broadhead Arrow Quiver" && [Rarity] == "Unique" //Rearguard
[Type] == "Sharktooth Arrow Quiver" && [Rarity] == "Unique" //Hyrri's Bite
 
//////////////////////////////////////////////
//                                          //
//                A r m o u r               //
//                                          //
//////////////////////////////////////////////
 
[Type] == "Varnished Coat" && [Rarity] == "Unique" //Carcass Jack
[Type] == "Spidersilk Robe" && [Rarity] == "Unique" # [local_energy_shield_+%] <= "180" && [stashItem] == "true" //Soul Mantle
[Type] == "Zodiac Leather" && [Rarity] == "Unique" //Hyrri's Ire
[Type] == "Occultist's Vestment" && [Rarity] == "Unique" # [base_lightning_damage_resistance_%] >= "30" && [stashItem] == "true" //Shavronne's Wrappings
[Type] == "Glorious Plate" && [Rarity] == "Unique" //Kaom's Heart
[Type] == "Desert Brigandine" && [Rarity] == "Unique" // Lightning Coil
[Type] == "Holy Chainmail" && [Rarity] == "Unique" //Voll's Protector
[Type] == "Full Wyrmscale" && [Rarity] == "Unique" //Belly of the beast
[Type] == "Astral Plate" && [Rarity] == "Unique" //Death's Oath
[Type] == "Simple Robe" && [Rarity] == "Unique" //Tabula Rasa
[Type] == "Copper Plate" && [Rarity] == "Unique" //Solaris Lorica 
[Type] == "Necromancer Silks" && [Rarity] == "Unique" //Vis Mortis 
[Type] == "Destiny Leather" && [Rarity] == "Unique" // Queen of the forest
[Type] == "Cutthroat's Garb" && [Rarity] == "Unique" // Bronn's Lithe
[Type] == "Triumphant Lamellar" && [Rarity] == "Unique" // Cherrubim's Maleficence
[Type] == "Lacquered Garb" && [Rarity] == "Unique" // Cloak of Defiance
[Type] == "Full Dragonscale" && [Rarity] == "Unique" // Daresso's Defiance
[Type] == "Conquest Chainmail" && [Rarity] == "Unique" // Kingsguard
[Type] == "Crusader Plate" && [Rarity] == "Unique" // Lioneye's Vision
[Type] == "Carnal Armour" && [Rarity] == "Unique" // The Restless Ward 
 
 
 
//////////////////////////////////////////////
//                                          //
//                 B o o t s                //
//                                          //
//////////////////////////////////////////////
 
[Type] == "Sharkskin Boots" && [Rarity] == "Unique" //The Blood Dance
[Type] == "Nubuck Boots" && [Rarity] == "Unique" # [base_item_found_quantity_+%] >= "18" && [stashItem] == "true" //Almost Perfect Goldwyrm
[Type] == "Conjurer Boots" && [Rarity] == "Unique" //Rainbow Stride
[Type] == "Reinforced Greaves" && [Rarity] == "Unique" //Windscream
[Type] == "Mesh Boots" && [Rarity] == "Unique" //wake of destruction
[Type] == "Soldier Boots" && [Rarity] == "Unique" //Alberon's Warpath
[Type] == "Golden Caligae" && [Rarity] == "Unique" //Demigod's Stride
[Type] == "Leatherscale Boots" && [Rarity] == "Unique" // Dusktoe
[Type] == "Slink Boots" && [Rarity] == "Unique" //Atziri's Steps
// [Type] == "Dragonscale Boots" && [Rarity] == "Unique" //Darkray Vectors 
[Type] == "Titan Greaves" && [Rarity] == "Unique" //Kaom's Roots
[Type] == "Serpentscale Boots" && [Rarity] == "Unique" //Mutewind Whispersteps
[Type] == "Ancient Greaves" && [Rarity] == "Unique" //Redblade Tramplers 
 
 
//////////////////////////////////////////////
//                                          //
//                 G l o v e s              //
//                                          //
//////////////////////////////////////////////
 
[Type] == "Steelscale Gauntlets" && [Rarity] == "Unique" # [base_item_found_rarity_+%] >= "45" && [stashItem] == "true" //Almost Perfect IIR Aurseize
[Type] == "Deerskin Gloves" && [Rarity] == "Unique" //Maligaro's virtuosity
[Type] == "Wool Gloves" && [Rarity] == "Unique" # [base_item_found_quantity_+%] >= "16" && [stashItem] == "true" //Almost Perfect Sadima's Touch
[Type] == "Golden Bracers" && [Rarity] == "Unique" //Demigod's Touch 
[Type] == "Steel Gauntlets" && [Rarity] == "Unique" //Deshret's Vise / Meginord's Vise
[Type] == "Assassin's Mitts" && [Rarity] == "Unique" //Snakebite
[Type] == "Conjurer Gloves" && [Rarity] == "Unique" //Voidbringer 
[Type] == "Murder Mitts" && [Rarity] == "Unique" //Thunderfist 
[Type] == "Chain Gloves" && [Rarity] == "Unique" // Shackles of the Wretched
[Type] == "Vaal Gauntlets" && [Rarity] == "Unique" // Atziri's Acuity & Doryani's Fist
[Type] == "Strapped Mitts" && [Rarity] == "Unique" # [1083] >= "700" // Facebreaker
 
//////////////////////////////////////////////
//                                          //
//                 H e l m e t s            //
//                                          //
//////////////////////////////////////////////
 
[Type] == "Ezomyte Burgonet" && [Rarity] == "Unique" // Abyssus
[Type] == "Nightmare Bascinet" && [Rarity] == "Unique" //Bringer of Rain
[Type] == "Sinner Tricorne" && [Rarity] == "Unique" //Alpha's howl
[Type] == "Necromancer Circlet" && [Rarity] == "Unique" //Chitus Apex
[Type] == "Ursine Pelt" && [Rarity] == "Unique" //Rat's Nest
[Type] == "Hubris Circlet" && [Rarity] == "Unique" //Crown of Eyes
[Type] == "Golden Wreath" && [Rarity] == "Unique" //Demigod's Triumph
[Type] == "Nightmare Bascinet" && [Rarity] == "Unique" //Devoto's Devotion 
[Type] == "Secutor Helm" && [Rarity] == "Unique" //Skullhead 
[Type] == "Leather Cap" && [Rarity] == "Unique" # [base_resist_all_elements_%] >= "40" && [stashItem] == "true" //Goldrim 
[Type] == "Visored Sallet" && [Rarity] == "Unique" # [base_item_found_rarity_+%] >= "30" && [stashItem] == "true" //Perfect The Peregrine 
[Type] == "Mind Cage" && [Rarity] == "Unique" //Rime Gaze 
[Type] == "Silken Hood" && [Rarity] == "Unique" //Starkonja's Head 
[Type] == "Golden Mask" && [Rarity] == "Unique" //The Three Dragons 
[Type] == "Vaal Mask" && [Rarity] == "Unique" //The Vertex
[Type] == "Lacquered Helmet" && [Rarity] == "Unique" //Black Sun Crest
[Type] == "Regicide Mask" && [Rarity] == "Unique" //Crown of the Pale King 
 
//////////////////////////////////////////////
//                                          //
//                 S h i e l d s            //
//                                          //
//////////////////////////////////////////////
 
[Type] == "Golden Buckler" && [Rarity] == "Unique" //Atziri's Mirror
[Type] == "Pinnacle Tower Shield" && [Rarity] == "Unique" //Lioneye's Remorse
[Type] == "Titanium Spirit Shield" && [Rarity] == "Unique" //rathpith globe
[Type] == "Champion Kite Shield" && [Rarity] == "Unique" //Aegis Aurora
[Type] == "Mosaic Kite Shield" && [Rarity] == "Unique" //Rise of the Phoenix 
[Type] == "Rotted Round Shield" && [Rarity] == "Unique" //Wheel of the Stormsail
[Type] == "Baroque Round Shield" && [Rarity] == "Unique" //Daresso's Courage 
[Type] == "Tarnished Spirit Shield" && [Rarity] == "Unique" //Matua Tupuna 
[Type] == "Archon Kite Shield" && [Rarity] == "Unique" //Prism Guardian 
[Type] == "Branded Kite Shield" && [Rarity] == "Unique" //Saffell's Frame  
[Type] == "Supreme Spiked Shield" && [Rarity] == "Unique" //Jaws of Agony
 
//////////////////////////////////////////////
//                                          //
//                 W e a p o n s            //
//                                          //
//////////////////////////////////////////////
 
[Type] == "Eternal Sword" && [Rarity] == "Unique" //Dreamfeather
[Type] == "Judgement Staff" && [Rarity] == "Unique" //Pledge of Hands
[Type] == "Opal Wand" && [Rarity] == "Unique" //Apep's Rage
 
[Type] == "Siege Axe" && [Rarity] == "Unique" //Soul Taker
[Type] == "Infernal Axe" && [Rarity] == "Unique" //Dyadus
 
[Type] == "Karui Chopper" && [Rarity] == "Unique" //Kaom's Primacy
[Type] == "Sundering Axe" && [Rarity] == "Unique" //Wings of Entropy
[Type] == "Shadow Axe" && [Rarity] == "Unique" //Reaper's Pursuit
[Type] == "Vaal Axe" && [Rarity] == "Unique" //Atziri's Disfavour
 
[Type] == "Imperial Bow" && [Rarity] == "Unique" //Lioneye's Glare
[Type] == "Spine Bow" && [Rarity] == "Unique" //Voltaxic Rift
[Type] == "Imperial Bow" && [Rarity] == "Unique" //Windripper
 
[Type] == "Infernal Sword" && [Rarity] == "Unique" //Oro's Sacrifice
[Type] == "Vaal Blade" && [Rarity] == "Unique" //Rebuke of the Vaal
[Type] == "Vaal Greatsword" && [Rarity] == "Unique" //Razorwraith
 
[Type] == "Hellion's Paw" && [Rarity] == "Unique" //Bloodseeker
 
[Type] == "Imperial Skean" && [Rarity] == "Unique" //Divinarius
[Type] == "Slaughter Knife" && [Rarity] == "Unique" //Bino's Kitchen Knife
 
[Type] == "Karui Maul" && [Rarity] == "Unique" //Marohi Erqi
[Type] == "Terror Maul" && [Rarity] == "Unique" //Kongor's Undying Rage 
[Type] == "Gavel" && [Rarity] == "Unique" // Mjolner
 
[Type] == "Vaal Sceptre" && [Rarity] == "Unique" //Doon Cuebiyari
[Type] == "Long Staff" && [Rarity] == "Unique" //Pillar of the Caged god/Searing Touch
[Type] == "Maelström Staff" && [Rarity] == "Unique" //Taryn's Shiver
[Type] == "Vaal Sceptre" && [Rarity] == "Unique" //Doryani's Catalyst
[Type] == "Void Sceptre" && [Rarity] == "Unique" //Mon'tregul's Grasp 
[Type] == "Crystal Sceptre" && [Rarity] == "Unique" //The Supreme Truth 
[Type] == "Engraved Wand" && [Rarity] == "Unique" //Midnight Bargain
[Type] == "Prophecy Wand" && [Rarity] == "Unique" //Void Battery
[Type] == "Tornado Wand" && [Rarity] == "Unique" //Piscator's Vigil
[Type] == "Judgement Staff" && [Rarity] == "Unique" //Pledge of Hands
 
[Type] == "Fishing Rod" && [Rarity] == "Unique" //Song of the Sirens 
[Type] == "Fishing Rod" && [Rarity] == "Rare"
[Type] == "Fishing Rod" && [Rarity] == "Magic"
[Type] == "Fishing Rod" && [Rarity] == "Normal"
 
[Type] == "Large Hybrid Flask" && [Rarity] == "Unique" //Divination Distillate
[Type] == "Amethyst Flask" && [Rarity] == "Unique" //Atziri's Promise
[Type] == "Granite Flask" && [Rarity] == "Unique" //Rumi's Concoction
 
[Type] == "Ranger Bow" && [Rarity] == "Unique" //Null's Inclination
[Type] == "Eye Gouger" && [Rarity] == "Unique" //Essentia Sanguis Eye Gouger
[Type] == "Imperial Staff" && [Rarity] == "Unique"
 
 
/////////////////////////////////////////////////////////////////////////////////////
//                                                                                 //
//                             R A R E  I T E M S                                  //
//                                                                                 //
/////////////////////////////////////////////////////////////////////////////////////
 
////////////////////////////////////////////////////////////////////
//                                                                //
//                         W e a p o n s                          //
//                                                                //
////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
//                                                                //
//                   M e l e e   W e a p o n s                    //
//                                                                //
////////////////////////////////////////////////////////////////////
 
// Claws with more than 230 dps
[Type] == "Prehistoric Claw" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Noble Claw" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Twin Claw" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Great White Claw" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Throat Stabber" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Hellion's Paw" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Eye Gouger" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Vaal Claw" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Imperial Claw" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Terror Claw" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Gemini Claw" && [Rarity] == "Rare" # [Physical DPS] >= "230"
 
// Daggers with more than 230 dps
[Type] == "Fiend Dagger" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Trisula" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Gutting Knife" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Slaughter Knife" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Ambusher" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Ezomyte Dagger" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Platinum Kris" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Imperial Skean" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Demon Dagger" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Sai" && [Rarity] == "Rare" # [Physical DPS] >= "230"
 
// 1H-Axes with more than 250 dps
[Type] == "Wraith Axe" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Engraved Hatchet" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Karui Axe" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Siege Axe" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Reaver Axe" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Butcher Axe" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Vaal Hatchet" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Royal Axe" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Infernal Axe" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Runic Hatchet" && [Rarity] == "Rare" # [Physical DPS] >= "250"
 
// 1H-Maces with more than 250 dps
[Type] == "Ornate Mace" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Phantom Mace" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Dragon Mace" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Ancestral Club" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Tenderizer" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Gavel" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Legion Hammer" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Pernarch" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Auric Mace" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Nightmare Mace" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Behemoth Mace" && [Rarity] == "Rare" # [Physical DPS] >= "250"
 
// 1H-Swords with more than 250 dps
[Type] == "Grappler" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Gemstone Sword" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Corsair Sword" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Gladius" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Legion Sword" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Vaal Blade" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Eternal Sword" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Midnight Blade" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Tiger Hook" && [Rarity] == "Rare" # [Physical DPS] >= "250"
 
// Thrusting 1H-Swords with more than 220 dps
[Type] == "Courtesan Sword" && [Rarity] == "Rare" # [Physical DPS] >= "220"
[Type] == "Dragonbone Rapier" && [Rarity] == "Rare" # [Physical DPS] >= "220"
[Type] == "Tempered Foil" && [Rarity] == "Rare" # [Physical DPS] >= "220"
[Type] == "Pecoraro" && [Rarity] == "Rare" # [Physical DPS] >= "220"
[Type] == "Spiraled Foil" && [Rarity] == "Rare" # [Physical DPS] >= "220"
[Type] == "Vaal Rapier" && [Rarity] == "Rare" # [Physical DPS] >= "220"
[Type] == "Jewelled Foil" && [Rarity] == "Rare" # [Physical DPS] >= "220"
[Type] == "Harpy Rapier" && [Rarity] == "Rare" # [Physical DPS] >= "220"
[Type] == "Dragoon Sword" && [Rarity] == "Rare" # [Physical DPS] >= "220"
 
// Sceptres woth more than 230 DPS
[Type] == "Royal Sceptre" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Abyssal Sceptre" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Stag Sceptre" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Karui Sceptre" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Tyrant's Sekhem" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Opal Sceptre" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Platinum Sceptre" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Vaal Sceptre" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Carnal Sceptre" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Void Sceptre" && [Rarity] == "Rare" # [Physical DPS] >= "230"
[Type] == "Sambar Sceptre" && [Rarity] == "Rare" # [Physical DPS] >= "230"
 
 
//Wands
[Type] == "Omen Wand" && [Rarity] == "Rare" # [Physical DPS] >= "170"
[Type] == "Omen Wand" && [Rarity] == "Rare" # [spell_Damage_+%] >= "80"
[Type] == "Heathen Wand" && [Rarity] == "Rare" # [Physical DPS] >= "170"
[Type] == "Heathen Wand" && [Rarity] == "Rare" # [spell_Damage_+%] >= "80"
[Type] == "Demon's Horn" && [Rarity] == "Rare" # [Physical DPS] >= "170"
[Type] == "Demon's Horn" && [Rarity] == "Rare" # [spell_Damage_+%] >= "80"
[Type] == "Imbued Wand" && [Rarity] == "Rare" # [Physical DPS] >= "170"
[Type] == "Imbued Wand" && [Rarity] == "Rare" # [spell_Damage_+%] >= "80"
[Type] == "Opal Wand" && [Rarity] == "Rare" # [Physical DPS] >= "170"
[Type] == "Opal Wand" && [Rarity] == "Rare" # [spell_Damage_+%] >= "80"
[Type] == "Tornado Wand" && [Rarity] == "Rare" # [Physical DPS] >= "170"
[Type] == "Tornado Wand" && [Rarity] == "Rare" # [spell_Damage_+%] >= "80"
[Type] == "Prophecy Wand" && [Rarity] == "Rare" # [Physical DPS] >= "170"
[Type] == "Prophecy Wand" && [Rarity] == "Rare" # [spell_Damage_+%] >= "80"
[Type] == "Profane Wand" && [Rarity] == "Rare" # [Physical DPS] >= "170"
[Type] == "Profane Wand" && [Rarity] == "Rare" # [spell_Damage_+%] >= "80"
 
// 2H-Axe that has more than 350 dps
[Type] == "Karui Chopper" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Talon Axe" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Sundering Axe" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Ezomyte Axe" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Vaal Axe" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Despot Axe" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Void Axe" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Fleshripper" && [Rarity] == "Rare" # [Physical DPS] >= "350"
 
// 2H-Sword 2H-Sword that has more than 350 dps
[Type] == "Lithe Blade" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Headman's Sword" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Reaver Sword" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Ezomyte Blade" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Vaal Greatsword" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Lion Sword" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Infernal Sword" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Exquisite Blade" && [Rarity] == "Rare" # [Physical DPS] >= "350"
 
//2H-Hand Mace Axe that has more than 350 dps
[Type] == "Solar Maul" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Karui Maul" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Colossus Mallet" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Piledriver" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Meatgrinder" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Imperial Maul" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Terror Maul" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Coronal Maul" && [Rarity] == "Rare" # [Physical DPS] >= "350"
 
//Staff with more than 350 DPS
[Type] == "Moon Staff" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Primordial Staff" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Lathi" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Ezomyte Staff" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Maelström Staff" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Imperial Staff" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Judgement Staff" && [Rarity] == "Rare" # [Physical DPS] >= "350"
[Type] == "Eclipse Staff" && [Rarity] == "Rare" # [Physical DPS] >= "350"
 
//Spell Staffs
[Type] == "Moon Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_damage_+%] >= "80"
[Type] == "Moon Staff" && [Rarity] == "Rare" # [spell_critical_strike_chance_+%] >= "80" && [spell_damage_+%] >= "80"
[Type] == "Moon Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_critical_strike_chance_+%] >= "80"
 
[Type] == "Primordial Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_damage_+%] >= "80"
[Type] == "Primordial Staff" && [Rarity] == "Rare" # [spell_critical_strike_chance_+%] >= "80" && [spell_damage_+%] >= "80"
[Type] == "Primordial Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_critical_strike_chance_+%] >= "80"
 
[Type] == "Lathi" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_damage_+%] >= "80"
[Type] == "Lathi" && [Rarity] == "Rare" # [spell_critical_strike_chance_+%] >= "80" && [spell_damage_+%] >= "80"
[Type] == "Lathi" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_critical_strike_chance_+%] >= "80"
 
[Type] == "Ezomyte Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_damage_+%] >= "80"
[Type] == "Ezomyte Staff" && [Rarity] == "Rare" # [spell_critical_strike_chance_+%] >= "80" && [spell_damage_+%] >= "80"
[Type] == "Ezomyte Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_critical_strike_chance_+%] >= "80"
 
[Type] == "Maelström Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_damage_+%] >= "80"
[Type] == "Maelström Staff" && [Rarity] == "Rare" # [spell_critical_strike_chance_+%] >= "80" && [spell_damage_+%] >= "80"
[Type] == "Maelström Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_critical_strike_chance_+%] >= "80"
 
[Type] == "Imperial Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_damage_+%] >= "80"
[Type] == "Imperial Staff" && [Rarity] == "Rare" # [spell_critical_strike_chance_+%] >= "80" && [spell_damage_+%] >= "80"
[Type] == "Imperial Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_critical_strike_chance_+%] >= "80"
 
[Type] == "Judgement Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_damage_+%] >= "80"
[Type] == "Judgement Staff" && [Rarity] == "Rare" # [spell_critical_strike_chance_+%] >= "80" && [spell_damage_+%] >= "80"
[Type] == "Judgement Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_critical_strike_chance_+%] >= "80"
 
[Type] == "Eclipse Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_damage_+%] >= "80"
[Type] == "Eclipse Staff" && [Rarity] == "Rare" # [spell_critical_strike_chance_+%] >= "80" && [spell_damage_+%] >= "80"
[Type] == "Eclipse Staff" && [Rarity] == "Rare" # ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [spell_critical_strike_chance_+%] >= "80"
 
//Bows
[Type] == "Decimation Bow" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Steelwood Bow" && [Rarity] == "Rare" # [Physical DPS] >= "280"
[Type] == "Citadel Bow" && [Rarity] == "Rare" # [Physical DPS] >= "280"
[Type] == "Ranger Bow" && [Rarity] == "Rare" # [Physical DPS] >= "280"
[Type] == "Assassin Bow" && [Rarity] == "Rare" # [Physical DPS] >= "280"
[Type] == "Spine Bow" && [Rarity] == "Rare" # [Physical DPS] >= "280"
[Type] == "Imperial Bow" && [Rarity] == "Rare" # [Physical DPS] >= "280"
[Type] == "Harbinger Bow" && [Rarity] == "Rare" # [Physical DPS] >= "250"
[Type] == "Maraketh Bow" && [Rarity] == "Rare" # [Physical DPS] >= "280"
 
 
//Caster
//[Category] == "Weapon" && [Rarity] == "Rare" # [spell_damage_+%] >= "80" && [critical_strike_chance_+%] >= "50" && [stashItem] == "true"
 
//    (phys-dmg)
//[Category] == "1Handed" && [Rarity] == "Rare" # [local_minimum_added_physical_damage] >= "20" && [local_physical_damage_+%] >= "110" && [local_attack_speed_+%] >= "20" && [local_critical_strike_chance_+%] >= "20" && [stashItem] == "true"
 
//    (tri.ele-dmg)
//[Category] == "1Handed" && [Rarity] == "Rare" # [local_minimum_added_cold_damage] >= "20" && [local_minimum_added_fire_damage] >= "25" && [local_maximum_added_lightning_damage] >= "85" && [local_attack_speed_+%] >= "20" && [stashItem] == "true"
 
// Bows:(+3Gems&Attackspeed)
//[Category] == "Weapon" && [Rarity] == "Rare" # [local_socketed_gem_level_+] == "1" && [local_socketed_bow_gem_level_+] == "2" && [local_attack_speed_+%] >= "8" && [stashItem] == "true"
 
// Caster Weapons:(+3Gems (Cold/Fire/Light&Castspeed)
//[Category] == "Weapon" && [Rarity] == "Rare" # [local_socketed_gem_level_+] == "1" && [base_cast_speed_+%] >= "15" && ([local_socketed_cold_gem_level_+] == "2" || [local_socketed_fire_gem_level_+] == "2" || [local_socketed_lightning_gem_level_+] == "2") && [stashItem] == "true"
 
// Physical Damage only (very high %) Weapons:(+170%phys)
//[Category] == "Weapon" && [Rarity] == "Rare" # [local_physical_damage_+%] >= "160"
 
////////////////////////////////////////////////////////////////////
//                                                                //
//                         A r m o r                              //
//                                                                //
////////////////////////////////////////////////////////////////////
 
//////////////////////////////////////////////
//                                          //
//                H e l m s                 //
//                                          //
//////////////////////////////////////////////
 
// Life Resists Def stat Helm
[Category] == "Helm" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Armor] >= "500" || [Computed Evasion] >=  "500" || [Computed Energy Shield] >= "200") && [TotalResistances] >= "60" && [stashItem] == "true"
 
// Life Resists Def stat Helm
[Category] == "Helm" && [Rarity] == "Rare" # [base_maximum_life] >= "70" && [TotalResistances] >= "70" && [stashItem] == "true"
 
// Life IIR Resists Helm
[Category] == "Helm" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && [base_item_found_rarity_+%] >= "25" && [TotalResistances] >= "60" && [stashItem] == "true"
 
 
//////////////////////////////////////////////
//                                          //
//                C h e s t                 //
//                                          //
//////////////////////////////////////////////
 
// Life Resists Def stat
[Type] == "Occultist's Vestment" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "400" || [Computed Evasion] >= "1000" || [Computed Armor] >= "1000") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Astral Plate" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "400" || [Computed Evasion] >= "1000" || [Computed Armor] >= "1000") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Widowsilk Robe" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "400" || [Computed Evasion] >= "1000" || [Computed Armor] >= "1000") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Zodiac Leather" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "400" || [Computed Evasion] >= "1000" || [Computed Armor] >= "1000") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Gladiator Plate" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "400" || [Computed Evasion] >= "1000" || [Computed Armor] >= "1000") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Glorious Plate" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "400" || [Computed Evasion] >= "1000" || [Computed Armor] >= "1000") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Assassin's Garb" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "400" || [Computed Evasion] >= "1000" || [Computed Armor] >= "1000") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Triumphant Lamellar" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "400" || [Computed Evasion] >= "1000" || [Computed Armor] >= "1000") && [TotalResistances] >= "60" && [stashItem] == "true"
 
 
// Life Resists 1
[Type] == "Occultist's Vestment" && [Rarity] == "Rare" # [base_maximum_life] >= "70" && [TotalResistances] >= "80" && [stashItem] == "true"
[Type] == "Astral Plate" && [Rarity] == "Rare" # [base_maximum_life] >= "70" && [TotalResistances] >= "80" && [stashItem] == "true"
[Type] == "Widowsilk Robe" && [Rarity] == "Rare" # [base_maximum_life] >= "70" && [TotalResistances] >= "80" && [stashItem] == "true"
[Type] == "Zodiac Leather" && [Rarity] == "Rare" # [base_maximum_life] >= "70" && [TotalResistances] >= "80" && [stashItem] == "true"
[Type] == "Gladiator Plate" && [Rarity] == "Rare" # [base_maximum_life] >= "70" && [TotalResistances] >= "80" && [stashItem] == "true"
[Type] == "Glorious Plate" && [Rarity] == "Rare" # [base_maximum_life] >= "70" && [TotalResistances] >= "80" && [stashItem] == "true"
[Type] == "Assassin's Garb" && [Rarity] == "Rare" # [base_maximum_life] >= "70" && [TotalResistances] >= "80" && [stashItem] == "true"
[Type] == "Triumphant Lamellar" && [Rarity] == "Rare" # [base_maximum_life] >= "70" && [TotalResistances] >= "80" && [stashItem] == "true"
 
 
 
// Life Resists 2
[Type] == "Occultist's Vestment" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && [TotalResistances] >= "110" && [stashItem] == "true"
[Type] == "Astral Plate" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && [TotalResistances] >= "110" && [stashItem] == "true"
[Type] == "Widowsilk Robe" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && [TotalResistances] >= "110" && [stashItem] == "true"
[Type] == "Zodiac Leather" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && [TotalResistances] >= "110" && [stashItem] == "true"
[Type] == "Gladiator Plate" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && [TotalResistances] >= "110" && [stashItem] == "true"
[Type] == "Glorious Plate" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && [TotalResistances] >= "110" && [stashItem] == "true"
[Type] == "Assassin's Garb" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && [TotalResistances] >= "110" && [stashItem] == "true"
[Type] == "Triumphant Lamellar" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && [TotalResistances] >= "110" && [stashItem] == "true"
 
// Mid Life, high stat, resist
[Type] == "Occultist's Vestment" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && ([additional_intelligence] >= "40" || [additional_dexterity] >= "40" || [additional_strength] >= "40") && [TotalResistances] >= "55" && [stashItem] == "true"
[Type] == "Astral Plate" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && ([additional_intelligence] >= "40" || [additional_dexterity] >= "40" || [additional_strength] >= "40") && [TotalResistances] >= "55" && [stashItem] == "true"
[Type] == "Widowsilk Robe" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && ([additional_intelligence] >= "40" || [additional_dexterity] >= "40" || [additional_strength] >= "40") && [TotalResistances] >= "55" && [stashItem] == "true"
[Type] == "Zodiac Leather" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && ([additional_intelligence] >= "40" || [additional_dexterity] >= "40" || [additional_strength] >= "40") && [TotalResistances] >= "55" && [stashItem] == "true"
[Type] == "Gladiator Plate" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && ([additional_intelligence] >= "40" || [additional_dexterity] >= "40" || [additional_strength] >= "40") && [TotalResistances] >= "55" && [stashItem] == "true"
[Type] == "Glorious Plate" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && ([additional_intelligence] >= "40" || [additional_dexterity] >= "40" || [additional_strength] >= "40") && [TotalResistances] >= "55" && [stashItem] == "true"
[Type] == "Assassin's Garb" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && ([additional_intelligence] >= "40" || [additional_dexterity] >= "40" || [additional_strength] >= "40") && [TotalResistances] >= "55" && [stashItem] == "true"
[Type] == "Triumphant Lamellar" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && ([additional_intelligence] >= "40" || [additional_dexterity] >= "40" || [additional_strength] >= "40") && [TotalResistances] >= "55" && [stashItem] == "true"
 
 
//////////////////////////////////////////////
//                                          //
//                G l o v e s               //
//                                          //
//////////////////////////////////////////////
 
// Life Attack Speed Resists
[Category] == "Gloves" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && [attack_speed_+%] >= "10" && [TotalResistances] >= "60" && [stashItem] == "true"
 
// Life Attack Speed low Resists Def stat
[Category] == "Gloves" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "150" || [Computed Evasion] >= "300" || [Computed Armor] >= "300") && [TotalResistances] >= "60" && [stashItem] == "true"
 
// Dual Leech Life 1Resist
[Category] == "Gloves" && [Rarity] == "Rare" # [base_maximum_life] >= "70" && [life_leech_from_physical_damage_permyriad] == "0.4" && [mana_leech_from_physical_damage_permyriad] == "0.4" && ([base_chaos_damage_resistance_%] >= "20" || [base_cold_damage_resistance_%] >= "30" || [base_fire_damage_resistance_%] >= "30" || [base_lightning_damage_resistance_%] >= "30") && [stashItem] == "true"
 
//////////////////////////////////////////////
//                                          //
//                B o o t s                 //
//                                          //
//////////////////////////////////////////////
 
// Life Resists Def stat Boot
[Category] == "Boots" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "150" || [Computed Evasion] >= "300" || [Computed Armor] >= "300") && [TotalResistances] >= "60" && [stashItem] == "true"
 
// high ES 30MS
[Category] == "Boots" && [Rarity] == "Rare" # [Computed Energy Shield] >= "180" && [base_movement_velocity_+%] >= "25" && [stashItem] == "true"
 
// Life MS Resists Boot
[Category] == "Boots" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && [base_movement_velocity_+%] >= "20" && [TotalResistances] >= "60" && [stashItem] == "true"
 
// Chaos res
[Category] == "Boots" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && [base_movement_velocity_+%] >= "20" && [TotalResistances] >= "30" && [base_chaos_damage_resistance_%] >= "20" && [stashItem] == "true"
 
 
// Life IIR Resists Boot
[Category] == "Boots" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && [base_item_found_rarity_+%] >= "25" && [TotalResistances] >= "40" && [stashItem] == "true"
 
//////////////////////////////////////////////
//                                          //
//                S h i e l d s             //
//                                          //
//////////////////////////////////////////////
 
// Shield
[Type] == "Lacquered Buckler" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "300" || [Computed Evasion] >= "800" || [Computed Armor] >= "900") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Ebony Tower Shield" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "300" || [Computed Evasion] >= "800" || [Computed Armor] >= "900") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Vaal Spirit Shield" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "300" || [Computed Evasion] >= "800" || [Computed Armor] >= "900") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Vaal Buckler" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "300" || [Computed Evasion] >= "800" || [Computed Armor] >= "900") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Ezomyte Tower Shield" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "300" || [Computed Evasion] >= "800" || [Computed Armor] >= "900") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Harmonic Spirit Shield" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "300" || [Computed Evasion] >= "800" || [Computed Armor] >= "900") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Crusader Buckler" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "300" || [Computed Evasion] >= "800" || [Computed Armor] >= "900") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Colossal Tower Shield" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "300" || [Computed Evasion] >= "800" || [Computed Armor] >= "900") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Imperial Buckler" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "300" || [Computed Evasion] >= "800" || [Computed Armor] >= "900") && [TotalResistances] >= "60" && [stashItem] == "true"
[Type] == "Pinnacle Tower Shield" && [Rarity] == "Rare" # [base_maximum_life] >= "60" && ([Computed Energy Shield] >= "300" || [Computed Evasion] >= "800" || [Computed Armor] >= "900") && [TotalResistances] >= "60" && [stashItem] == "true"
 
 
 
[Type] == "Lacquered Buckler" && [Rarity] == "Rare" # [base_maximum_life] >= "80" && [Computed Armor] >= "1200" && [stashItem] == "true"
[Type] == "Ebony Tower Shield" && [Rarity] == "Rare" # [base_maximum_life] >= "80" && [Computed Armor] >= "1200" && [stashItem] == "true"
[Type] == "Vaal Spirit Shield" && [Rarity] == "Rare" # [base_maximum_life] >= "80" && [Computed Armor] >= "1200" && [stashItem] == "true"
[Type] == "Vaal Buckler" && [Rarity] == "Rare" # [base_maximum_life] >= "80" && [Computed Armor] >= "1200" && [stashItem] == "true"
[Type] == "Ezomyte Tower Shield" && [Rarity] == "Rare" # [base_maximum_life] >= "80" && [Computed Armor] >= "1200" && [stashItem] == "true"
[Type] == "Harmonic Spirit Shield" && [Rarity] == "Rare" # [base_maximum_life] >= "80" && [Computed Armor] >= "1200" && [stashItem] == "true"
[Type] == "Crusader Buckler" && [Rarity] == "Rare" # [base_maximum_life] >= "80" && [Computed Armor] >= "1200" && [stashItem] == "true"
[Type] == "Colossal Tower Shield" && [Rarity] == "Rare" # [base_maximum_life] >= "80" && [Computed Armor] >= "1200" && [stashItem] == "true"
[Type] == "Imperial Buckler" && [Rarity] == "Rare" # [base_maximum_life] >= "80" && [Computed Armor] >= "1200" && [stashItem] == "true"
[Type] == "Pinnacle Tower Shield" && [Rarity] == "Rare" # [base_maximum_life] >= "80" && [Computed Armor] >= "1200" && [stashItem] == "true"
 
//////////////////////////////////////////////
//                                          //  
//                B e l t s                 //
//                                          //
//////////////////////////////////////////////
 
//tri res  hp
[Category] == "Belt" && [Rarity] == "Rare" # [TotalResistances] >= "90" && [base_maximum_life] >= "60" && [stashItem] == "true"
 
//tri res hp Weapon Elemental Dmg
[Category] == "Belt" && [Rarity] == "Rare" # [TotalResistances] >= "60" && [base_maximum_life] >= "40" && [weapon_elemental_damage_+%] >= "25" && [stashItem] == "true"
 
//high tri-res (incl.chaos-res)
[Category] == "Belt" && [Rarity] == "Rare" # [base_chaos_damage_resistance_%] >= "21" && ([base_cold_damage_resistance_%] >= "30" && [base_fire_damage_resistance_%] >= "30") || ([base_cold_damage_resistance_%] >= "30" && [base_lightning_damage_resistance_%] >= "30") || ([base_fire_damage_resistance_%] >= "30" && [base_lightning_damage_resistance_%] >= "30") && [stashItem] == "true"
 
//HP ARMOR Weapon Elemental Dmg
[Category] == "Belt" && [Rarity] == "Rare" # [physical_damage_reduction_rating] >= "350" && [weapon_elemental_damage_+%] >= "25" && [base_maximum_life] >= "60" && [stashItem] == "true"
 
//////////////////////////////////////////////
//                                          //
//                R i n g s                 //
//                                          //
//////////////////////////////////////////////
 
[Category] == "Ring" && [Rarity] == "Rare"
 
//////////////////////////////////////////////
//                                          //
//              A m u l e t s               //
//                                          //
//////////////////////////////////////////////
 
[Category] == "Amulet" && [Rarity] == "Rare"
 
 
//////////////////////////////////////////////
//                                          //
//                Q u i v e r               //
//                                          //
//////////////////////////////////////////////
 
// Phys dmg + life + crit + single res
[Type] == "Heavy Quiver" && [Rarity] == "Rare" # [attack_minimum_added_physical_damage] >= "9" && [base_maximum_life] >= "90" && ([base_critical_strike_multiplier_+%] >= "50" || [critical_strike_chance_+%] >= "30") && [TotalResistances] >= "40" && [stashItem] == "true"
 
// Phys dmg + life + ias/accuracy + crit + single res
[Type] == "Heavy Quiver" && [Rarity] == "Rare" # [attack_minimum_added_physical_damage] >= "9" && [base_maximum_life] >= "90" && ([attack_speed_+%] >= "11" || [accuracy_rating] >= "201") && ([base_critical_strike_multiplier_+%] >= "50" || [critical_strike_chance_+%] >= "30") && [TotalResistances] >= "40" && [stashItem] == "true"
 
//Elemental
 
// Dex + Elemental Damage + crit or life
[Type] == "Light Quiver" && [Rarity] == "Rare" # [additional_dexterity] >= "32" && [weapon_elemental_damage_+%] >= "20" && ([base_maximum_life] >= "70" || [critical_strike_chance_+%] >= "30") && [stashItem] == "true"
 
// Elemental Damage + Dex + accuracy or life
[Type] == "Conductive Quiver" && [Rarity] == "Rare" # [weapon_elemental_damage_+%] >= "20" && ([accuracy_rating] >= "200" || [additional_dexterity] >= "30" || [base_maximum_life] >= "70") && [stashItem] == "true"
Edited by crank

Share this post


Link to post
Share on other sites

hm, not sure if the pickit is case sensitive. otherwise i don't see a mistake in the syntax either at the first glance.

 

try to replace: [spell_Damage_+%]   -->  [spell_damage_+%]

Share this post


Link to post
Share on other sites
Sign in to follow this  

×
×
  • Create New...