Advertisement
uhmm

SalvageInstructions.cs

Jan 27th, 2022
729
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 22.89 KB | None | 0 0
  1. namespace Turbo.plugins.patrick.hotkeys.actions.general
  2. {
  3.     using System.Collections.Generic;
  4.     using Turbo.Plugins;
  5.     using patrick.util.logger;
  6.     using System;
  7.  
  8.     public partial class Salvage  {
  9.  
  10.         private static int countStats(params double[] stats) {
  11.             int total = 0;
  12.             foreach(var stat in stats) {
  13.                 if (stat > 0) {
  14.                     ++total;
  15.                 }
  16.             }
  17.             return total;
  18.         }
  19.        
  20.         public bool isGenericAmuletGood(IItem item) {
  21.             return countStats(getElementalDamageBonusAny(item),
  22.                 getCriticalHitChance(item),
  23.                 getCriticalHitDamage(item),
  24.                 getSockets(item)) >= 3;
  25.         }
  26.  
  27.         public bool isTheTravelersPledgeGood(IItem item) {
  28.             return isGenericAmuletGood(item);
  29.         }
  30.        
  31.         public bool isObsidianRingoftheZodiacGood(IItem item) {
  32.             int goodStats = 0;
  33.             goodStats += (getAttackSpeedBonus(item) == 7) ? 1 : 0;
  34.             goodStats += (getCriticalHitChance(item) == 6) ? 1 : 0;
  35.             goodStats += (getCooldownReduction(item) == 8) ? 1 : 0;
  36.             goodStats += (getResourceCostReduction(item) == 8) ? 1 : 0;
  37.             return goodStats >= 3;
  38.         }
  39.  
  40.         public bool isOculusRingGood(IItem item) {
  41.             return roundPercentStat(getLegendaryAffix(item)) == 85;
  42.         }
  43.        
  44.         public bool isShiMizusHaoriGood(IItem item) {
  45.             return roundPercentStat(getLegendaryAffix(item)) == 25;
  46.         }
  47.        
  48.         public bool isAndarielsVisageGood(IItem item) {
  49.             int physicalDamage = getElementalDamageBonusPhysical(item);
  50.             int skeletalMageDamage = getSkillDamageSpecific(item, _hud.Sno.SnoPowers.Necromancer_SkeletalMage.Sno);
  51.             int sockets = getSockets(item);
  52.             // LoD mages
  53.             return countStats(physicalDamage, skeletalMageDamage, sockets) >= 2;
  54.         }
  55.  
  56.         // Add an item here if it should never be automatically salvaged (useful when SalvageUnknowns=true).
  57.         private static readonly HashSet<string> NEVER_SALVAGE_LIST = new HashSet<string> {
  58.             "Bovine Bardiche",
  59.         };
  60.        
  61.         // Add an item here if it's never good and should always be salvaged.
  62.         private static readonly HashSet<string> ALWAYS_SALVAGE_LIST = new HashSet<string>{
  63.             "Accursed Visage",
  64.             "Accursed Visage",
  65.             "Ahavarion, Spear of Lycander",
  66.             "Akanesh, the Herald of Righteousness",
  67.             "Akkhan's Addendum",
  68.             "Akkhan's Manacles",
  69.             "Ambo's Pride",
  70.             "Ancient Parthan Defenders",
  71.             "Anessazi Edge",
  72.             "Angel Hair Braid",
  73.             "Angelic Grand Flail",
  74.             "Archmage's Vicalyke",
  75.             "Arcstone",
  76.             "Arreat's Law",
  77.             "Arthef's Spark of Life",
  78.             "Augustine's Panacea",
  79.             "Augustine's Panacea",
  80.             "Avarice Band",
  81.             "Bakkan Caster",
  82.             "Balefire Caster",
  83.             "Band of Hollow Whispers",
  84.             "Band of the Rue Chambers",
  85.             "Bastion's Revered",
  86.             "Belt of Transcendence",
  87.             "Bezoar Stone",
  88.             "Blackguard",
  89.             "Blackhand Key",
  90.             "Blackthorne's Duncraig Cross",
  91.             "Blackthorne's Notched Belt",
  92.             "Blackthorne's Spurs",
  93.             "Blackthorne's Surcoat",
  94.             "Blade of the Warlord",
  95.             "Blind Faith",
  96.             "Blood Brother",
  97.             "Bloodsong Mail",
  98.             "Bloodtide Blade",
  99.             "Boots of Disregard",
  100.             "Bottomless Potion of Amplification",
  101.             "Bottomless Potion of Chaos",
  102.             "Bottomless Potion of Fear",
  103.             "Bottomless Potion of Kulle-Aid",
  104.             "Bottomless Potion of Mutilation",
  105.             "Bottomless Potion of Regeneration",
  106.             "Bottomless Potion of Rejuvenation",
  107.             "Bottomless Potion of the Diamond",
  108.             "Bottomless Potion of the Leech",
  109.             "Bottomless Potion of the Unfettered",
  110.             "Bracer of Fury",
  111.             "Bracers of Destruction",
  112.             "Broken Crown",
  113.             "Broken Promises",
  114.             "Bryner's Journey",
  115.             "Bul-Kathos's Solemn Vow",
  116.             "Bul-Kathos's Warrior Blood",
  117.             "Bul-Kathos's Wedding Band",
  118.             "Buriza-Do Kyanon",
  119.             "Burst of Wrath",
  120.             "Burst Of Wrath",
  121.             "Butcher's Carver",
  122.             "Cage of the Hellborn",
  123.             "Cage of the Hellborn",
  124.             "Calamity",
  125.             "Cape of the Dark Night",
  126.             "Chaingmail",
  127.             "Chanon Bolter",
  128.             "Circle of Nailuj's Evol",
  129.             "Cloak of Deception",
  130.             "Cluckeye",
  131.             "Coils of the First Spider",
  132.             "Cord of the Sherma",
  133.             "Corpsewhisper Pauldrons",
  134.             "Corrupted Ashbringer",
  135.             "Countess Julia's Cameo",
  136.             "Coven's Criterion",
  137.             "Crashing Rain",
  138.             "Crushbane",
  139.             "Crystal Fist",
  140.             "Custerian Wristguards",
  141.             "Danetta's Revenge",
  142.             "Dashing Pauldrons of Despair",
  143.             "Deadly Rebirth",
  144.             "Death Watch Mantle",
  145.             "Death's Bargain",
  146.             "Deathseer's Cowl",
  147.             "Defender of Westmarch",
  148.             "Defiler Cuisses",
  149.             "Demon Machine",
  150.             "Devil Tongue",
  151.             "Dishonored Legacy",
  152.             "Doombringer",
  153.             "Dovu Energy Trap",
  154.             "Dread Iron",
  155.             "Eight-Demon Boots",
  156.             "Emimei's Duffel",
  157.             "Empyrean Messenger",
  158.             "Enchanting Favor",
  159.             "Envious Blade",
  160.             "Erlang Shen",
  161.             "Etrayu",
  162.             "Eun-jang-do",
  163.             "Exarian",
  164.             "Eye of Etlich",
  165.             "Eye of Peshkov",
  166.             "Eyes of the Earth",
  167.             "Fate's Vow",
  168.             "Fiendish Grips",
  169.             "Fire Walkers",
  170.             "Fjord Cutter",
  171.             "Flail of the Ascended",
  172.             "Flesh Tearer",
  173.             "Flesh Tearer",
  174.             "Flesh Tearer",
  175.             "Fleshrake",
  176.             "Fletcher's Pride",
  177.             "Flying Dragon",
  178.             "Fortress Ballista",
  179.             "Foundation of the Earth",
  180.             "Freeze of Deflection",
  181.             "Frostburn",
  182.             "Fulminator",
  183.             "Funerary Pick",
  184.             "Fury of the Vanished Peak",
  185.             "Gelmindor's Marrow Guards",
  186.             "Genzaniku",
  187.             "Gift of Silaria",
  188.             "Girdle of Giants",
  189.             "Gladiator Gauntlets",
  190.             "Gloves of Worship",
  191.             "Golden Flense",
  192.             "Golden Gorget of Leoric",
  193.             "Goldskin",
  194.             "Goldwrap",
  195.             "Golemskin Breeches",
  196.             "Grandfather Flail",
  197.             "Guard of Johanna",
  198.             "Gungdo Gear",
  199.             "Gyana Na Kashu",
  200.             "Gyana Na Kashu",
  201.             "Hack",
  202.             "Halcyon's Ascent",
  203.             "Hallowed Bulwark",
  204.             "Hand of the Prophet",
  205.             "Harness of Truth",
  206.             "Harrington Waistguard",
  207.             "Haunt of Vaxo",
  208.             "Haunting Girdle",
  209.             "Heart of Iron",
  210.             "Heart of the Crashing Wave",
  211.             "Heart of the Light",
  212.             "Heart Slaughter",
  213.             "Hell Walkers",
  214.             "Hellrack",
  215.             "Helltooth Gauntlets",
  216.             "Helltooth Greaves",
  217.             "Helltooth Mantle",
  218.             "Helltooth Mantle",
  219.             "Helltooth Mask",
  220.             "Helltooth Tunic",
  221.             "Helltrapper",
  222.             "Henri's Perquisition",
  223.             "Hergbrash's Binding",
  224.             "Hillenbrand's Training Sword",
  225.             "Holy Beacon",
  226.             "Homing Pads",
  227.             "Homunculus",
  228.             "Hwoj Wrap",
  229.             "Incense Torch of the Grand Temple",
  230.             "Incorruptible Soul",
  231.             "Insatiable Belt",
  232.             "Irontoe Mudsputters",
  233.             "Ivory Tower",
  234.             "Jade Harvester's Courage",
  235.             "Jade Harvester's Courage",
  236.             "Jade Harvester's Joy",
  237.             "Jade Harvester's Mercy",
  238.             "Jade Harvester's Mercy",
  239.             "Jade Harvester's Peace",
  240.             "Jade Harvester's Swiftness",
  241.             "Jade Harvester's Wisdom",
  242.             "Jawbreaker",
  243.             "Jeram's Bracers",
  244.             "Kekegi's Unbreakable Spirit",
  245.             "Kerykeion",
  246.             "Krede's Flame",
  247.             "Krelm's Buff Belt",
  248.             "Krelm's Buff Bracers",
  249.             "Kridershot",
  250.             "Kymbo's Gold",
  251.             "Kyoshiro's Soul",
  252.             "Lacuni Prowlers",
  253.             "Lakumba's Ornament",
  254.             "Last Breath",
  255.             "Last Breath",
  256.             "Leonine Bow of Hashir",
  257.             "Leoric's Crown",
  258.             "Leoric's Signet",
  259.             "Lianna's Wings",
  260.             "Lidless Wall",
  261.             "Light of Grace",
  262.             "Limb Cleaver",
  263.             "Lion's Claw",
  264.             "Lion's Claw",
  265.             "Logan's Claw",
  266.             "Lord Greenstone's Fan",
  267.             "Mad Monarch's Scepter",
  268.             "Madawc's Sorrow",
  269.             "Madstone",
  270.             "Magefist",
  271.             "Maloth's Focus",
  272.             "Maltorius' Petrified Spike",
  273.             "Manajuma's Carving Knife",
  274.             "Manajuma's Gory Fetch",
  275.             "Manticore",
  276.             "Mara's Kaleidoscope",
  277.             "Mask of Scarlet Death",
  278.             "Mask of the Searing Sky",
  279.             "Maximus",
  280.             "Mempo of Twilight",
  281.             "Messerschmidt's Reaver",
  282.             "Mirrorball",
  283.             "Monster Hunter",
  284.             "Moonlight Ward",
  285.             "Moribund Gauntlets",
  286.             "Moschen Spheres",
  287.             "Myken's Ball of Hate",
  288.             "Nagelring",
  289.             "Nailbiter",
  290.             "Natalya's Bloody Footprints",
  291.             "Natalya's Embrace",
  292.             "Natalya's Leggings",
  293.             "Natalya's Reflection",
  294.             "Natalya's Sight",
  295.             "Natalya's Slayer",
  296.             "Natalya's Touch",
  297.             "Nayr's Black Death",
  298.             "Neanderthal",
  299.             "Nemesis Bracers",
  300.             "Nilfur's Boast",
  301.             "Nutcracker",
  302.             "Oathkeeper",
  303.             "Odyn Son",
  304.             "Orb of Infinite Depth",
  305.             "Ouroboros",
  306.             "Overwhelming Desire",
  307.             "Oxybeles",
  308.             "Pandemonium Loop",
  309.             "Pauldrons of the Skeleton King",
  310.             "Penetrator",
  311.             "Persuader",
  312.             "Pledge of Caldeum",
  313.             "Pox Faulds",
  314.             "Pride of the Invoker",
  315.             "Pride's Fall",
  316.             "Promise of Glory",
  317.             "Pull of the Earth",
  318.             "Punyal",
  319.             "Pus Spitter",
  320.             "Pus Spitter",
  321.             "Quetzalcoatl",
  322.             "Raekor's Breeches",
  323.             "Raekor's Burden",
  324.             "Raekor's Heart",
  325.             "Raekor's Striders",
  326.             "Raekor's Will",
  327.             "Raekor's Wraps",
  328.             "Rakoff's Glass of Life",
  329.             "Razor Strop",
  330.             "Rechel's Ring of Larceny",
  331.             "Reilena's Shadowhook",
  332.             "Relic of Akarat",
  333.             "Renewal of the Invoker",
  334.             "Rhen'ho Flayer",
  335.             "Ribald Etchings",
  336.             "Rimeheart",
  337.             "Ring of Royal Grandeur",
  338.             "Rivera Dancers",
  339.             "Rogar's Huge Stone",
  340.             "Roland's Determination",
  341.             "Roland's Grasp",
  342.             "Roland's Mantle",
  343.             "Roland's Stride",
  344.             "Rondal's Locket",
  345.             "Sacred Harness",
  346.             "Saffron Wrap",
  347.             "Salvation",
  348.             "Sanguinary Vambraces",
  349.             "Sash of Knives",
  350.             "Scarbringer",
  351.             "Schaefer's Hammer",
  352.             "Scourge",
  353.             "Scrimshaw",
  354.             "Sebor's Nightmare",
  355.             "See No Evil",
  356.             "Sever",
  357.             "Shard of Hate",
  358.             "Skeleton Key",
  359.             "Skorn",
  360.             "Skular's Salvation",
  361.             "Skull Grasp",
  362.             "Skull of Resonance",
  363.             "Skullsplitter",
  364.             "Sky Splitter",
  365.             "Skycutter",
  366.             "Sledge Fist",
  367.             "Sledge of Athskeleng",
  368.             "Slipka's Letter Opener",
  369.             "Smoking Thurible",
  370.             "Solanium",
  371.             "Soulsmasher",
  372.             "Spaulders of Zakara",
  373.             "Spear of Jairo",
  374.             "Spires of the Earth",
  375.             "Spirit Guards",
  376.             "Spirit of the Earth",
  377.             "Split Task",
  378.             "Split Tusk",
  379.             "Staff of Chiroptera",
  380.             "Stalgard's Decimator",
  381.             "Standoff",
  382.             "Starfire",
  383.             "Starmetal Kukri",
  384.             "Stormshield",
  385.             "String of Ears",
  386.             "Sun Keeper",
  387.             "SuWong Diviner",
  388.             "Sword of Ill Will",
  389.             "Tal Rasha's Allegiance",
  390.             "Tal Rasha's Brace",
  391.             "Tal Rasha's Stride",
  392.             "Tal Rasha's Unwavering Glare",
  393.             "Talisman of Aranoch",
  394.             "Telranden's Hand",
  395.             "The Ancient Bonesaber of Zumakalis",
  396.             "The Barber",
  397.             "The Broken Staff",
  398.             "The Burning Axe of Sankis",
  399.             "The Butcher's Sickle",
  400.             "The Cloak of the Garwulf",
  401.             "The Demon's Demise",
  402.             "The Ess of Johan",
  403.             "The Executioner",
  404.             "The Eye of the Storm",
  405.             "The Flavor of Time",
  406.             "The Furnace",
  407.             "The Gavel of Judgment",
  408.             "The Gidbinn",
  409.             "The Grandfather",
  410.             "The Grin Reaper",
  411.             "The Laws of Seph",
  412.             "The Magistrate",
  413.             "The Oculus",
  414.             "The Paddle",
  415.             "The Raven's Wing",
  416.             "The Shame of Delsere",
  417.             "The Short Man's Finger",
  418.             "The Smoldering Core",
  419.             "The Star of Azkaranth",
  420.             "The Sultan of Blinding Sand",
  421.             "The Three Hundredth Spear",
  422.             "The Tormentor",
  423.             "The Zweihander",
  424.             "Thing of the Deep",
  425.             "Thunderfury, Blessed Blade of the Windseeker",
  426.             "Thundergod's Vigor",
  427.             "Tiklandian Visage",
  428.             "Trag'Oul Coils",
  429.             "Trag'Oul's Claws",
  430.             "Trag'Oul's Guise",
  431.             "Trag'Oul's Heart",
  432.             "Trag'Oul's Hide",
  433.             "Trag'Oul's Scales",
  434.             "Trag'Oul's Stalwart Greaves",
  435.             "Typhon's Tibia",
  436.             "Tyrael's Might",
  437.             "Tzo Krin's Gaze",
  438.             "Uhkapian Serpent",
  439.             "Uhkapian Serpent",
  440.             "Unholy Plates",
  441.             "Unsanctified Shoulders",
  442.             "Ursua's Trodden Effigy",
  443.             "Ursua's Trodden Effigy",
  444.             "Vadim's Surge",
  445.             "Valthek's Rebuke",
  446.             "Vambraces of Sescheron",
  447.             "Vigilance",
  448.             "Vigilante Belt",
  449.             "Vile Hive",
  450.             "Vile Ward",
  451.             "Visage of Giyua",
  452.             "Visage of Giyua",
  453.             "Voo's Juicer",
  454.             "Warmonger",
  455.             "Warzechian Armguards",
  456.             "Weight of the Earth",
  457.             "Wildwood",
  458.             "Wilken's Reach",
  459.             "Wilken's Reach.",
  460.             "Windforce",
  461.             "Winter Flurry",
  462.             "Wisdom of Kalan",
  463.             "Wojahnni Assaulter",
  464.             "Wormwood",
  465.             "Wrath of the Bone King",
  466.             "Wyrdward",
  467.             "Xephirian Amulet",
  468.             "Zeal of the Invoker",
  469.             "Zunimassa's Finger Wraps",
  470.             "Zunimassa's Marrow",
  471.             "Zunimassa's Pox",
  472.             "Zunimassa's String of Skulls",
  473.             "Zunimassa's Trail",
  474.             "Zunimassa's Vision"
  475.         };
  476.  
  477.         // Add an item here if it's only good in ancient.
  478.         private static readonly HashSet<string> NONANCIENT_SALVAGE_LIST = new HashSet<string>{
  479.             "Aether Walker",
  480.             "Ancient Parthan Defenders",
  481.             "Andariel's Visage",
  482.             "Antique Vintage Boots",
  483.             "Aquila Cuirass",
  484.             "Arachyr's Carapace",
  485.             "Arachyr's Claws",
  486.             "Arachyr's Legs",
  487.             "Arachyr's Mantle",
  488.             "Arachyr's Stride",
  489.             "Arachyr's Visage",
  490.             "Ashnagarr's Blood Bracer",
  491.             "Aughild's Power",
  492.             "Aughild's Search",
  493.             "Azurewrath",
  494.             "Balance",
  495.             "Beckon Sail",
  496.             "Binding of the Lost",
  497.             "Blackfeather",
  498.             "Blackthorne's Jousting Mail",
  499.             "Blade of the Tribes",
  500.             "Bonds of C'Lena",
  501.             "Bone Ringer",
  502.             "Brigandine of Valor",
  503.             "Briggs' Wrath",
  504.             "Carnevil",
  505.             "Chain of Shadows",
  506.             "Chantodo's Force",
  507.             "Chantodo's Will",
  508.             "Chausses of Valor",
  509.             "Cindercoat",
  510.             "Cold Cathode Trousers",
  511.             "Crown of Valor",
  512.             "Cuirass of the Wastes",
  513.             "Dayntee's Binding",
  514.             "Deathwish",
  515.             "Decree of Justice",
  516.             "Depth Diggers",
  517.             "Echoing Fury",
  518.             "Elegant Pants",
  519.             "Etched Sigil",
  520.             "Extravagant Shoes",
  521.             "Fazula's Improbable Chain",
  522.             "Firebird's Breast",
  523.             "Firebird's Down",
  524.             "Firebird's Eye",
  525.             "Firebird's Pinions",
  526.             "Firebird's Plume",
  527.             "Firebird's Talons",
  528.             "Firebird's Tarsi",
  529.             "Fists of Thunder",
  530.             "Flail of the Charge",
  531.             "Fragment of Destiny",
  532.             "Fury of the Ancients",
  533.             "Galvanized Vest",
  534.             "Gas Powered Automail Forearm",
  535.             "Gauntlet of the Wastes",
  536.             "Gazing Demise",
  537.             "Glamorous Gigot",
  538.             "Heel of Savages",
  539.             "Helm of the Wastes",
  540.             "Hexing Pants of Mr. Yan",
  541.             "Ice Climbers",
  542.             "Illusory Boots",
  543.             "Immortal King's Eternal Reign",
  544.             "Immortal King's Irons",
  545.             "Immortal King's Stature",
  546.             "Immortal King's Stride",
  547.             "Immortal King's Tribal Binding",
  548.             "Immortal King's Triumph",
  549.             "Inarius's Conviction",
  550.             "Inarius's Martyrdom",
  551.             "Inarius's Perseverance",
  552.             "Inarius's Reticence",
  553.             "Inarius's Understanding",
  554.             "Inarius's Will",
  555.             "In-geom",
  556.             "Inna's Favor",
  557.             "Inna's Hold",
  558.             "Inna's Radiance",
  559.             "Inna's Reach",
  560.             "Inna's Sandals",
  561.             "Inna's Temperance",
  562.             "Inna's Vast Expanse",
  563.             "Iron Rose",
  564.             "Jesseth Skullscythe",
  565.             "Jesseth Skullshield",
  566.             "Johanna's Argument",
  567.             "Justice Lantern",
  568.             "Kyoshiro's Blade",
  569.             "Lakumba's Ornament",
  570.             "Lamellars of Justice",
  571.             "Lavishing Gloves",
  572.             "Lefebvre's Soliloquy",
  573.             "Leger's Disdain",
  574.             "Leggings of Savages",
  575.             "Litany of the Undaunted",
  576.             "Little Rogue",
  577.             "Lornelle's Sunstone",
  578.             "Lost Time",
  579.             "Luxurious Bauta",
  580.             "Mantle of Channeling",
  581.             "Mantle of the Upside-Down Sinners",
  582.             "Marauder's Carapace",
  583.             "Marauder's Encasement",
  584.             "Marauder's Gloves",
  585.             "Marauder's Spines",
  586.             "Marauder's Treads",
  587.             "Marauder's Visage",
  588.             "Markings of Savages",
  589.             "Mask of Jeram",
  590.             "Mechanical Pauldrons",
  591.             "Mirrors of Justice",
  592.             "Mortick's Brace",
  593.             "Mountains of Justice",
  594.             "Mundunugu's Dance",
  595.             "Mundunugu's Decoration",
  596.             "Mundunugu's Descendant",
  597.             "Mundunugu's Headdress",
  598.             "Mundunugu's Rhythm",
  599.             "Mundunugu's Robe",
  600.             "Obsidian Ring of the Zodiac",
  601.             "Odyssey's End",
  602.             "Pauldrons of the Wastes",
  603.             "Pestilence Battle Boots",
  604.             "Pestilence Defense",
  605.             "Pestilence Gloves",
  606.             "Pestilence Incantations",
  607.             "Pestilence Mask",
  608.             "Pestilence Robe",
  609.             "Pig Sticker",
  610.             "Pinto's Pride",
  611.             "Pride of Cassius",
  612.             "Puzzle Ring",
  613.             "Rabid Strike",
  614.             "Ranslor's Folly",
  615.             "Rathma's Macabre Vambraces",
  616.             "Rathma's Ossified Sabatons",
  617.             "Rathma's Ribcage Plate",
  618.             "Rathma's Skeletal Legplates",
  619.             "Rathma's Skull Helm",
  620.             "Rathma's Spikes",
  621.             "Razeth's Volition",
  622.             "Remorseless",
  623.             "Requiem Cereplate",
  624.             "Restraint",
  625.             "Sabaton of the Wastes",
  626.             "Sacred Harvester",
  627.             "Scales of the Dancing Serpent",
  628.             "Scythe of the Cycle",
  629.             "Shenlong's Fist of Legend",
  630.             "Shenlong's Relentless Assault",
  631.             "Shield of Fury",
  632.             "Shukrani's Triumph",
  633.             "Skull of Savages",
  634.             "Sophisticated Vest",
  635.             "Spaulders of Valor",
  636.             "Spines of Savages",
  637.             "St. Archew's Gage",
  638.             "Steuart's Greaves",
  639.             "Stone Gauntlets",
  640.             "Stone of Jordan",
  641.             "Strongarm Bracers",
  642.             "Sunwuko's Balance",
  643.             "Sunwuko's Crown",
  644.             "Sunwuko's Leggings",
  645.             "Sunwuko's Paws",
  646.             "Sunwuko's Shines",
  647.             "Sunwuko's Soul",
  648.             "Swamp Land Waders",
  649.             "Swamp Land Waders",
  650.             "Tal Rasha's Relentless Pursuit",
  651.             "Tasker and Theo",
  652.             "Tasset of the Wastes",
  653.             "The Crudest Boots",
  654.             "The Dagger of Darts",
  655.             "The Shadow's Bane",
  656.             "The Shadow's Coil",
  657.             "The Shadow's Grasp",
  658.             "The Shadow's Heels",
  659.             "The Shadow's Mask",
  660.             "The Short Man's Finger",
  661.             "The Slanderer",
  662.             "The Spider Queen's Grasp",
  663.             "The Swami",
  664.             "The Tall Man's Finger",
  665.             "The Twisted Sword",
  666.             "The Wailing Host",
  667.             "The Witching Hour",
  668.             "Trag'Oul's Corroded Fang",
  669.             "Triumvirate",
  670.             "Uliana's Heart",
  671.             "Uliana's Strength",
  672.             "Unity",
  673.             "Unstable Scepter",
  674.             "Vengeful Wind",
  675.             "Vyr's Astonishing Aura",
  676.             "Vyr's Fantastic Finery",
  677.             "Vyr's Grasping Gauntlets",
  678.             "Vyr's Proud Pauldrons",
  679.             "Vyr's Sightless Skull",
  680.             "Vyr's Swaggering Stance",
  681.             "Weaves of Justice",
  682.             "Won Khim Lau",
  683.             "Wraps of Clarity",
  684.             "Yang's Recurve"
  685.         };
  686.     }
  687. }
  688.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement