From 82e2a2026833a2b6bfa631f93fbbed5548d14171 Mon Sep 17 00:00:00 2001 From: Enthusiast <73853957+rgto@users.noreply.github.com> Date: Mon, 29 Sep 2025 11:44:52 -0300 Subject: [PATCH 1/4] Revise README for community branch and account examples Updated development guidelines and added examples for account creation. --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 927654a..f8b5497 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ DiIiS is a fully-functional open-source local server for [Diablo III: Reaper of # Development -Developers, please contribute using the branch: **_community_**, always create your branches from it. +Developers, please contribute using the branch: **_community_**, always create your branches from it and also follow the Roadmap below. # Enthusiasts @@ -82,6 +82,16 @@ Creates an account with Login `username@`, password `YourPassword` and BattleTag Creates an account with Login `username@`, password `YourPassword` and BattleTag `YourBattleTag` with rank `owner` +### Example: + +> !account add username@ YourPassword YourBattleTag + +Creates an account with Login `username@`, password `YourPassword` and BattleTag `YourBattleTag` + +> !account add username@ YourPassword YourBattleTag owner + +Creates an account with Login `username@`, password `YourPassword` and BattleTag `YourBattleTag` with rank `owner` + ## Prepare Client Do this for each client connecting to the server. @@ -132,7 +142,7 @@ The command system allows you to get control of the game world if you have right Check the [report form](docs/report-form.md) before submitting issue, this will help people save time! -# Development Roadmap – Diablo-like Server/Client +# Development Roadmap – DIII Emulator ### 1️⃣ Rift / Greater Rift System GR closure: ensure the Greater Rift closes automatically after 15 minutes. From 32732325d1b23d4511e33397417348ef5365c0ef Mon Sep 17 00:00:00 2001 From: Pablo Rigueto Date: Mon, 29 Sep 2025 16:36:17 -0300 Subject: [PATCH 2/4] Added disclaimer, items label name and fix the database from docker. --- README.md | 10 +- disclaimer.md | 19 + db/docker-compose.yml => docker-compose.yml | 0 docs/items-identification-doc.md | 1378 +++++++++ .../GSSystem/ItemsSystem/UniqueItems.cs | 2739 +++++++++-------- 5 files changed, 2775 insertions(+), 1371 deletions(-) create mode 100644 disclaimer.md rename db/docker-compose.yml => docker-compose.yml (100%) create mode 100644 docs/items-identification-doc.md diff --git a/README.md b/README.md index f8b5497..966f81f 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,10 @@ DiIiS is a fully-functional open-source local server for [Diablo III: Reaper of Souls](https://eu.diablo3.blizzard.com). +# Disclaimer + +[Disclaimer and Project Philosophy](disclaimer.md). + # Development Developers, please contribute using the branch: **_community_**, always create your branches from it and also follow the Roadmap below. @@ -54,7 +58,7 @@ The currently supported version of the client: **2.7.4.84161** #### Or using docker 1. [Install docker](https://docs.docker.com/get-docker/) -2. Run `docker-compose up` inside [db](db) folder. +2. Run `docker-compose up` from root folder (here). ### Compile and run 1. Install [.NET 7 SDK and runtime](https://dotnet.microsoft.com/en-us/download/dotnet/7.0) (just runtime, not asp.net or desktop) @@ -96,7 +100,7 @@ Creates an account with Login `username@`, password `YourPassword` and BattleTag Do this for each client connecting to the server. -1. Get [supported client](#supported-clients) Diablo 3. +1. Get [supported client](#supported-clients) D3 (2.7.4). 2. Install certificate [bnetserver.p12](src/DiIiS-NA/bnetserver.p12), password - `123` (the game verifies the CA root certificates). @@ -142,7 +146,7 @@ The command system allows you to get control of the game world if you have right Check the [report form](docs/report-form.md) before submitting issue, this will help people save time! -# Development Roadmap – DIII Emulator +# Development Roadmap – DiIiS Emulator ### 1️⃣ Rift / Greater Rift System GR closure: ensure the Greater Rift closes automatically after 15 minutes. diff --git a/disclaimer.md b/disclaimer.md new file mode 100644 index 0000000..4ddbb6a --- /dev/null +++ b/disclaimer.md @@ -0,0 +1,19 @@ +# Disclaimer and Project Philosophy + +## Legal Notice +This project is a non-commercial, independent effort and is in no way affiliated with, endorsed by, or associated with Blizzard Entertainment, Inc. or any of its subsidiaries or affiliates. All trademarks, service marks, trade names, product names, and logos appearing on the site are the property of their respective owners. "Diablo" and "Blizzard Entertainment" are trademarks or registered trademarks of Blizzard Entertainment, Inc. in the U.S. and/or other countries. + +This software is provided "as is," without warranty of any kind, express or implied. By using this software, you agree to do so at your own risk. The developers are not responsible for any damage to your game account, computer, or data that may result from its use. Under no circumstances should you attempt to use this software to connect to the official game servers. + +## Educational Purpose +The primary goal of this project is for educational and research purposes only. It is intended as a learning tool for developers interested in studying network programming, game server architecture, and the principles of reverse engineering for interoperability. The project does not contain any proprietary or copyrighted code or assets from the original game. It is a clean-room implementation developed through independent research. + +We do not aim to create a replacement for the official game service or to harm the commercial success of the original product. We encourage users to support the original developers by purchasing their games. + +## Legal Requirement: You Must Own the Game +This software is intended to be used exclusively with a legally purchased copy of the game. You must own a valid license for Diablo III to use this software. We do not provide the game client, game assets, or any means to acquire them. + +## Strict Anti-Piracy Policy +We have a zero-tolerance policy towards piracy. This project does not condone, support, or enable the illegal acquisition or use of copyrighted material. + +Any discussion, request, or sharing of links related to illegal downloads of the game client or any copyrighted assets is strictly prohibited in all community channels associated with this project (such as Discord, forums, or GitHub issues) and will result in an immediate and permanent ban. Our focus is on the technical study of server implementation, not on circumventing legal ownership. diff --git a/db/docker-compose.yml b/docker-compose.yml similarity index 100% rename from db/docker-compose.yml rename to docker-compose.yml diff --git a/docs/items-identification-doc.md b/docs/items-identification-doc.md new file mode 100644 index 0000000..3b91aef --- /dev/null +++ b/docs/items-identification-doc.md @@ -0,0 +1,1378 @@ +## Understanding Diablo 3's Internal Item Naming Convention + +This document explains the internal file naming structure for Legendary and Set items in Diablo 3. +By understanding this convention, one can decipher an item's origin, version, and history within the game's development cycle. + +### The Core Structure +Most item names follow a logical pattern: + +**_[Prefix]_[Quality]_[Type]_[Subtype]_[ID]_[Suffix]_** + +## Item name and Label + +Unique_Dagger_003 → The Barber +Unique_Dagger_007 → Pig Sticker +Unique_Dagger_002 → Wizardspike +Unique_Dagger_006 → Kill +Unique_Dagger_010 → Eun-jang-do +Unique_CeremonialDagger_003 → The Gidbinn +Unique_CeremonialDagger_006 → Deadly Rebirth +Unique_CeremonialDagger_004 → The Spider Queen's Grasp +Unique_CeremonialDagger_001 → Anessazi Edge +Unique_CeremonialDagger_002 → Voo's Juicer +Unique_CeremonialDagger_008 → Starmetal Kukri +Unique_Sword_1H_017 → Devil Tongue +Unique_Sword_1H_002 → Wildwood +Unique_Sword_1H_011 → Sever +Unique_Sword_1H_003 → Azurewrath +Unique_Sword_1H_014 → Spectrum +Unique_Sword_1H_004 → Doombringer +Unique_Sword_1H_019 → Little Rogue +Unique_Sword_1H_007 → The Ancient Bonesaber of Zumakalis +Unique_Sword_1H_012 → Rimeheart +Unique_Sword_2H_002 → The Zweihander +Unique_Sword_2H_012 → The Grandfather +Unique_Sword_2H_004 → Scourge +Unique_Sword_2H_011 → Faithful Memory +Unique_Sword_2H_007 → Blade of Prophecy +Unique_Sword_2H_008 → Stalgard's Decimator +Unique_Sword_2H_010 → Cam's Rebuttal +Unique_Sword_2H_001 → Blackguard +Unique_Sword_2H_003 → Corrupted Ashbringer +Unique_Axe_1H_003 → The Butcher's Sickle +Unique_Axe_1H_007 → The Burning Axe of Sankis +Unique_Axe_1H_004 → Hack +Unique_Axe_1H_001 → Genzaniku +Unique_Axe_1H_006 → Flesh-Tearer +Unique_Axe_1H_005 → Sky Splitter +Unique_Axe_2H_003 → Messerschmidt's Reaver +Unique_Axe_2H_001 → The Executioner +Unique_Axe_2H_011 → Skorn +Unique_Axe_2H_010 → Cinder Switch +Unique_Axe_2H_009 → Butcher's Carver +Unique_Mace_1H_002 → Nutcracker +Unique_Mace_1H_001 → Telranden's Hand +Unique_Mace_1H_005 → Solanium +Unique_Mace_1H_007 → Odyn Son +Unique_Mace_1H_003 → Neanderthal +Unique_Mace_1H_008 → Jace's Hammer of Vigilance +Unique_Mace_1H_009 → Fulminator +Unique_Mace_1H_011 → Sun Keeper +Unique_Mace_2H_003 → Skywarden +Unique_Mace_2H_001 → Sledge of Athskeleng +Unique_Mace_2H_012 → The Furnace +Unique_Mace_2H_010 → Soulsmasher +Unique_Mace_2H_006 → Arthef's Spark of Life +Unique_Mace_2H_002 → Cataclysm +Unique_Mace_2H_009 → Schaeffer's Hammer +Unique_Polearm_002 → Standoff +Unique_Polearm_004 → Bovine Bardiche +Unique_Polearm_003 → Heart Slaughter +Unique_Polearm_001 → Vigilance +Unique_Spear_004 → The Three Hundredth Spear +Unique_Spear_001 → Scrimshaw +Unique_Spear_002 → Arreat's Law +Unique_Spear_003 → Empyrean Messenger +Unique_Bow_005 → The Raven's Wing +Unique_Bow_007 → Etrayu +Unique_Bow_008 → Kridershot +Unique_Bow_001 → Uskang +Unique_Bow_015 → Cluckeye +Unique_Bow_010 → Sydyru Crust +Unique_Bow_009 → Windforce +Unique_XBow_006 → Bakkan Caster +Unique_XBow_001 → Buriza-Do Kyanon +Unique_XBow_011 → Demon Machine +Unique_XBow_004 → Pus Spitter +Unique_XBow_012 → Manticore +Unique_XBow_002 → Hellrack +Unique_XBow_003 → Chanon Bolter +Unique_HandXBow_007 → K'mar Tenclip +Unique_HandXBow_006 → Helltrapper +Unique_HandXBow_005 → Natalya's Slayer +Unique_HandXBow_004 → Calamity +Unique_HandXBow_012 → Danetta's Revenge +Unique_Mighty_1H_006 → Blade of the Warlord +Unique_Mighty_1H_012 → Fjord Cutter +Unique_Mighty_1H_001 → Ambo's Pride +Unique_Mighty_1H_005 → Oathkeeper +Unique_Mighty_2H_012 → Fury of the Vanished Peak +Unique_Mighty_2H_004 → Madawc's Sorrow +Unique_Mighty_2H_001 → Bastion's Revered +Unique_Mighty_2H_006 → The Gavel of Judgment +Unique_Fist_008 → The Fist of Az'Turrasq +Unique_Fist_003 → Fleshrake +Unique_Fist_007 → Scarbringer +Unique_Fist_013 → Logan's Claw +Unique_Fist_012 → Won Khim Lau +Unique_Fist_004 → Rabid Strike +Unique_Fist_005 → Sledge Fist +Unique_Fist_006 → Jawbreaker +Unique_Fist_009 → Crystal Fist +Unique_CombatStaff_2H_002 → The Flow of Eternity +Unique_CombatStaff_2H_008 → Balance +Unique_CombatStaff_2H_005 → Incense Torch of the Grand Temple +Unique_CombatStaff_2H_007 → The Paddle +Unique_CombatStaff_2H_003 → Warstaff of General Quang +Unique_CombatStaff_2H_004 → Flying Dragon +Unique_CombatStaff_2H_009 → Inna's Reach +Unique_Staff_008 → The Smoldering Core +Unique_Staff_002 → Valthek's Rebuke +Unique_Staff_001 → The Tormentor +Unique_Staff_006 → Maloth's Focus +Unique_Staff_003 → The Grand Vizier +Unique_Staff_007 → Ahavarion, Spear of Lycander +Unique_Staff_009 → Staff of Chiroptera +Unique_Wand_003 → Starfire +Unique_Wand_006 → Blackhand Key +Unique_Wand_002 → Wand of Woh +Unique_Wand_010 → Gesture of Orpheus +Unique_Wand_009 → Fragment of Destiny +Unique_Wand_013 → Aether Walker +Unique_Helm_001 → Leoric's Crown +Unique_Helm_002 → Andariel's Visage +Unique_Helm_007 → Deathseer's Cowl +Unique_Helm_004 → The Helm of Rule +Unique_Helm_003 → Mempo of Twilight +Unique_Helm_006 → Broken Crown +Unique_Helm_011 → Blind Faith +Unique_Gloves_014 → St. Archew's Gage +Unique_Gloves_002 → Frostburn +Unique_Gloves_001 → Stone Gauntlets +Unique_Gloves_003 → Gladiator Gauntlets +Unique_Gloves_007 → Magefist +Unique_Gloves_011 → Tasker and Theo +Unique_Boots_010 → Boj Anglers +Unique_Boots_009 → The Crudest Boots +Unique_Boots_001 → Lut Socks +Unique_Boots_005 → Fire Walkers +Unique_Boots_008 → Ice Climbers +Unique_Boots_007 → Illusory Boots +Unique_Belt_002 → The Witching Hour +Unique_Belt_009 → Harrington Waistguard +Unique_Belt_004 → Saffron Wrap +Unique_Belt_010 → Cord of the Sherma +Unique_Belt_001 → Goldwrap +Unique_Belt_008 → String of Ears +Unique_Belt_003 → Vigilante Belt +Unique_Belt_005 → Hellcat Waistguard +Unique_Bracer_004 → Strongarm Bracers +Unique_Bracer_006 → Lacuni Prowlers +Unique_Bracer_003 → Slave Bonds +Unique_Bracer_005 → Nemesis Bracers +Unique_Bracer_002 → Steady Strikers +Unique_Bracer_001 → Gungdo Gear +Unique_Bracer_007 → Warzechian Armguards +Unique_Chest_012 → Cindercoat +Unique_Chest_018 → Goldskin +Unique_Chest_010 → Chaingmail +Unique_Chest_006 → Aquila Cuirass +Unique_Chest_001 → Heart of Iron +Unique_Chest_019 → Tyrael's Might +Unique_Chest_002 → Shi Mizu's Haori +Unique_Pants_007 → Pox Faulds +Unique_Pants_002 → Hammer Jammers +Unique_Pants_001 → Swampland Waders +Unique_Pants_005 → Hexing Pants of Mr. Yan +Unique_Pants_006 → Depth Diggers +Unique_Shoulder_001 → Homing Pads +Unique_Shoulder_002 → Spaulders of Zakara +Unique_Shoulder_007 → Pauldrons of the Skeleton King +Unique_Shoulder_003 → Death Watch Mantle +Unique_SpiritStone_005 → The Mind's Eye +Unique_SpiritStone_004 → Tzo Krin's Gaze +Unique_SpiritStone_002 → See No Evil +Unique_SpiritStone_003 → Gyana Na Kashu +Unique_SpiritStone_001 → Bezoar Stone +Unique_SpiritStone_006 → The Laws of Seph +Unique_SpiritStone_007 → Erlang Shen +Unique_SpiritStone_008 → Madstone +Unique_VoodooMask_006 → Quetzalcoatl +Unique_VoodooMask_005 → The Grin Reaper +Unique_VoodooMask_001 → Tiklandian Visage +Unique_VoodooMask_002 → Visage of Giyua +Unique_VoodooMask_008 → Carnevil +Unique_WizardHat_003 → The Swami +Unique_WizardHat_001 → Storm Crow +Unique_WizardHat_004 → Dark Mage's Shade +Unique_Cloak_001 → The Cape of the Dark Night +Unique_Cloak_005 → Beckon Sail +Unique_Cloak_002 → Blackfeather +Unique_BarbBelt_004 → Pride of Cassius +Unique_BarbBelt_006 → Chilanik's Chain +Unique_BarbBelt_007 → The Undisputed Champion +Unique_BarbBelt_002 → Lamentation +Unique_BarbBelt_001 → Girdle of Giants +Unique_BarbBelt_003 → Dread Iron +Unique_BarbBelt_008 → Kotuur's Brace +Unique_BarbBelt_005 → Ageless Might +Unique_Mighty_1H_010 → Remorseless +Unique_Mighty_1H_011 → Dishonored Legacy +Unique_HandXBow_001 → Dawn +Unique_HandXBow_002 → Balefire Caster +Unique_Wand_012 → Serpent's Sparker +Unique_Fist_010 → Vengeful Wind +Unique_Fist_011 → Lion's Claw +Unique_CeremonialDagger_009 → Sacred Harvester +Unique_Helm_009 → Visage of Gunes +Unique_HandXBow_003 → Valla's Bequest +Unique_Cloak_006 → The Demon's Demise +Unique_Boots_011 → Rivera Dancers +Unique_Helm_008 → Skull of Resonance +Unique_Mighty_2H_010 → Blade of the Tribes +Unique_Chest_013 → Mantle of Channeling +Unique_BarbBelt_009 → Girdle of Giants +Unique_Gloves_008 → Gloves of Worship +Unique_Boots_012 → Irontoe Mudsputters +Unique_Helm_010 → Warhelm of Kassar +Unique_Chest_014 → Armor of the Kind Regent +Unique_Belt_006 → Razor Strop +Unique_SpiritStone_009 → Eye of Peshkov +Unique_CombatStaff_2H_001 → Staff of Kyro +Unique_Chest_015 → Vo'Toyias Spiker +Unique_Belt_007 → Thundergod's Vigor +Unique_Pants_008 → Death's Bargain +Unique_VoodooMask_007 → Mask of Jeram +Unique_Chest_016 → Heart of the Crashing Wave +Unique_Boots_013 → Boots of Disregard +Unique_Boots_019 → Nilfur's Boast +Unique_ChestArmor_028 → Shi Mizu's Haori +Unique_Belt_015 → Omryn's Chain +Unique_Pants_013 → Defiler Cuisses +Unique_Chest_025 → The Cloak of Deception +Unique_Shoulder_006 → Lefebvre's Soliloquy +Unique_Sword_1H_018 → The Slanderer +Unique_Helm_012 → Crown of the Primus +Unique_Pants_010 → Guardian's Jeopardy +Unique_Gloves_015 → Vambraces of Sescheron +Unique_Boots_015 → The Traveler's Pledge (parte do conjunto) +Unique_Boots_017 → Wraps of Clarity +Unique_Belt_012 → Bakuli Jungle Wraps +Unique_Pants_012 → Coils of the First Spider +Unique_Shoulder_008 → Fury of the Ancients +Unique_Bracer_009 → Gabriel's Vambraces +Unique_Chest_026 → Death's Bargain +Unique_Helm_014 → The Laws of Seph +Unique_Shoulder_017 → Channeling Pauldrons +Unique_Gloves_009 → The Shadow's Grasp +Unique_Pants_009 → The Shadow's Coil +Unique_Boots_014 → The Shadow's Heels +Unique_Bracer_010 → Drakon's Lesson +Unique_Belt_013 → The Shame of Delsere +Unique_Helm_015 → Shrouded Mask +Unique_Chest_027 → The Ninth Cirri Satchel +Unique_Belt_014 → Zoey's Secret +Unique_Pants_014 → Hammer Jammers +Unique_Shoulder_009 → Unhallowed Essence +Unique_Bracer_011 → Bracers of the First Men +Unique_Gloves_017 → Akkhan's Manacles +Unique_Boots_018 → Akkhan's Leniency +Unique_Helm_016 → Crown of the Invoker +Unique_Mighty_1H_015 → Oathkeeper +Unique_Wand_018 → Unstable Scepter +Unique_CeremonialDagger_011 → The Dagger of Darts +Unique_HandXBow_016 → The Demon's Demise +Unique_Fist_015 → Kyoshiro's Blade +Unique_Axe_1H_013 → Gimmershred +Unique_Dagger_008 → Karlei's Point +Unique_Offhand_001 → Envious Blade +Unique_Sword_1H_001 → Deathwish +Unique_Sword_1H_010 → Fulminator +Unique_Sword_1H_021 → In-geom +Unique_Sword_2H_014 → Blood Brother +Unique_Mace_1H_010 → Darklight +Unique_Shield_002 → Defender of Westmarch +Unique_Shield_004 → Lidless Wall +Unique_Shield_007 → Freeze of Deflection +Unique_Shield_008 → Ivory Tower +Unique_Shield_009 → Lidless Wall +Unique_Shield_009 → Lidless Wall +Unique_Dagger_003_1xx → The Barber +Unique_Dagger_007_1xx → Pig Sticker +Unique_Dagger_002_1xx → Wizardspike +Unique_Dagger_006_1xx → Kill +Unique_Dagger_010_1xx → Eun-jang-do +Unique_Dagger_008_1xx → Karlei's Point +Unique_Offhand_001_1xx → Envious Blade +Unique_CeremonialDagger_003_1xx → The Gidbinn +Unique_CeremonialDagger_006_1xx → Deadly Rebirth +Unique_CeremonialDagger_004_1xx → The Spider Queen's Grasp +Unique_CeremonialDagger_001_1xx → Anessazi Edge +Unique_CeremonialDagger_002_1xx → Voo's Juicer +Unique_CeremonialDagger_008_1xx → Starmetal Kukri +Unique_CeremonialDagger_009_1xx → Sacred Harvester +Unique_CeremonialDagger_011_1xx → The Dagger of Darts +Unique_Sword_1H_017_1xx → Devil Tongue +Unique_Sword_1H_002_1xx → Wildwood +Unique_Sword_1H_003_1xx → Azurewrath +Unique_Sword_1H_014_1xx → Spectrum +Unique_Sword_1H_004_1xx → Doombringer +Unique_Sword_1H_019_1xx → Little Rogue +Unique_Sword_1H_007_1xx → The Ancient Bonesaber of Zumakalis +Unique_Sword_1H_011_1xx → Sever +Unique_Sword_1H_012_1xx → Rimeheart +Unique_Sword_1H_018_1xx → The Slanderer +Unique_Sword_1H_001_1xx → Deathwish +Unique_Sword_1H_010_1xx → Fulminator +Unique_Sword_1H_021_1xx → In-geom +Unique_Sword_2H_002_1xx → The Zweihander +Unique_Sword_2H_012_1xx → The Grandfather +Unique_Sword_2H_004_1xx → Scourge +Unique_Sword_2H_011_1xx → Faithful Memory +Unique_Sword_2H_007_1xx → Blade of Prophecy +Unique_Sword_2H_008_1xx → Stalgard's Decimator +Unique_Sword_2H_003_1xx → Corrupted Ashbringer +Unique_Sword_2H_010_1xx → Cam's Rebuttal +Unique_Sword_2H_001_1xx → Blackguard +Unique_Sword_2H_014_1xx → Blood Brother +Unique_Axe_1H_003_1xx → The Butcher's Sickle +Unique_Axe_1H_004_1xx → Hack +Unique_Axe_1H_001_1xx → Genzaniku +Unique_Axe_1H_006_1xx → Flesh-Tearer +Unique_Axe_1H_007_1xx → The Burning Axe of Sankis +Unique_Axe_1H_005_1xx → Sky Splitter +Unique_Axe_1H_013_1xx → Gimmershred +Unique_Axe_2H_003_1xx → Messerschmidt's Reaver +Unique_Axe_2H_001_1xx → The Executioner +Unique_Axe_2H_011_1xx → Skorn +Unique_Axe_2H_010_1xx → Cinder Switch +Unique_Axe_2H_009_1xx → Butcher's Carver +Unique_Mace_1H_002_1xx → Nutcracker +Unique_Mace_1H_005_1xx → Solanium +Unique_Mace_1H_007_1xx → Odyn Son +Unique_Mace_1H_003_1xx → Neanderthal +Unique_Mace_1H_008_1xx → Jace's Hammer of Vigilance +Unique_Mace_1H_009_1xx → Fulminator +Unique_Mace_1H_001_1xx → Telranden's Hand +Unique_Mace_1H_011_1xx → Sun Keeper +Unique_Mace_1H_010_1xx → Darklight +Unique_Mace_2H_003_1xx → Skywarden +Unique_Mace_2H_001_1xx → Sledge of Athskeleng +Unique_Mace_2H_012_1xx → The Furnace +Unique_Mace_2H_010_1xx → Soulsmasher +Unique_Mace_2H_006_1xx → Arthef's Spark of Life +Unique_Mace_2H_002_1xx → Cataclysm +Unique_Mace_2H_009_1xx → Schaeffer's Hammer +Unique_Polearm_002_1xx → Standoff +Unique_Polearm_004_1xx → Bovine Bardiche +Unique_Polearm_003_1xx → Heart Slaughter +Unique_Polearm_001_1xx → Vigilance +Unique_Spear_004_1xx → The Three Hundredth Spear +Unique_Spear_001_1xx → Scrimshaw +Unique_Spear_002_1xx → Arreat's Law +Unique_Spear_003_1xx → Empyrean Messenger +Unique_Bow_005_1xx → The Raven's Wing +Unique_Bow_007_1xx → Etrayu +Unique_Bow_008_1xx → Kridershot +Unique_Bow_001_1xx → Uskang +Unique_Bow_015_1xx → Cluckeye +Unique_Bow_010_1xx → Sydyru Crust +Unique_Bow_009_1xx → Windforce +Unique_XBow_006_1xx → Bakkan Caster +Unique_XBow_001_1xx → Buriza-Do Kyanon +Unique_XBow_011_1xx → Demon Machine +Unique_XBow_004_1xx → Pus Spitter +Unique_XBow_012_1xx → Manticore +Unique_XBow_002_1xx → Hellrack +Unique_XBow_003_1xx → Chanon Bolter +Unique_HandXBow_006_1xx → Helltrapper +Unique_HandXBow_005_1xx → Natalya's Slayer +Unique_HandXBow_004_1xx → Calamity +Unique_HandXBow_007_1xxx → K'mar Tenclip +Unique_HandXBow_005_1xx → Natalya's Slayer +Unique_HandXBow_001_1xx → Dawn +Unique_HandXBow_002_1xx → Balefire Caster +Unique_HandXBow_003_1xx → Valla's Bequest +Unique_HandXBow_016_1xx → The Demon's Demise +Unique_Mighty_1H_006_1xx → Blade of the Warlord +Unique_Mighty_1H_012_1xx → Fjord Cutter +Unique_Mighty_1H_001_1xx → Ambo's Pride +Unique_Mighty_1H_010_1xx → Remorseless +Unique_Mighty_1H_005_1xx → Oathkeeper +Unique_Mighty_1H_011_1xx → Dishonored Legacy +Unique_Mighty_1H_015_1xx → Oathkeeper +Unique_Mighty_2H_012_1xx → Fury of the Vanished Peak +Unique_Mighty_2H_004_1xx → Madawc's Sorrow +Unique_Mighty_2H_010_1xx → Blade of the Tribes +Unique_Mighty_2H_001_1xx → Bastion's Revered +Unique_Mighty_2H_006_1xx → The Gavel of Judgment +Unique_Fist_003_1xx → Fleshrake +Unique_Fist_007_1xx → Scarbringer +Unique_Fist_013_1xx → Logan's Claw +Unique_Fist_012_1xx → Won Khim Lau +Unique_Fist_004_1xx → Rabid Strike +Unique_Fist_005_1xx → Sledge Fist +Unique_Fist_006_1xx → Jawbreaker +Unique_Fist_010_1xx → Vengeful Wind +Unique_Fist_011_1xx → Lion's Claw +Unique_Fist_008_1xx → The Fist of Az'Turrasq +Unique_Fist_009_1xx → Crystal Fist +Unique_Fist_015_1xx → Kyoshiro's Blade +Unique_CombatStaff_2H_002_1xx → The Flow of Eternity +Unique_CombatStaff_2H_008_1xx → Balance +Unique_CombatStaff_2H_005_1xx → Incense Torch of the Grand Temple +Unique_CombatStaff_2H_007_1xx → The Paddle +Unique_CombatStaff_2H_001_1xx → Staff of Kyro +Unique_CombatStaff_2H_003_1xx → Warstaff of General Quang +Unique_CombatStaff_2H_004_1xx → Flying Dragon +Unique_CombatStaff_2H_009_1xx → Inna's Reach +Unique_Staff_008_1xx → The Smoldering Core +Unique_Staff_002_1xx → Valthek's Rebuke +Unique_Staff_001_1xx → The Tormentor +Unique_Staff_006_1xx → Maloth's Focus +Unique_Staff_003_1xx → The Grand Vizier +Unique_Staff_007_1xx → Ahavarion, Spear of Lycander +Unique_Staff_009_1xx → Staff of Chiroptera +Unique_Wand_003_1xx → Starfire +Unique_Wand_006_1xx → Blackhand Key +Unique_Wand_002_1xx → Wand of Woh +Unique_Wand_010_1xx → Gesture of Orpheus +Unique_Wand_009_1xx → Fragment of Destiny +Unique_Wand_012_1xx → Serpent's Sparker +Unique_Wand_013_1xx → Aether Walker +Unique_Wand_018_1xx → Unstable Scepter +Unique_Shield_011_1xx → Frydehr's Wrath +Unique_Shield_007_1xx → Freeze of Deflection +Unique_Shield_004_1xx → Lidless Wall +Unique_Shield_008_1xx → Ivory Tower +Unique_Shield_002_1xx → Defender of Westmarch +Unique_Shield_009_1xx → Lidless Wall +Unique_Shield_012_1xx → Guard of Johanna +Unique_Helm_001_1xx → Leoric's Crown +Unique_Helm_002_1xx → Andariel's Visage +Unique_Helm_010_1xx → Warhelm of Kassar +Unique_Helm_007_1xx → Deathseer's Cowl +Unique_Helm_004_1xx → The Helm of Rule +Unique_Helm_003_1xx → Mempo of Twilight +Unique_Helm_011_1xx → Blind Faith +Unique_Helm_006_1xx → Broken Crown +Unique_Helm_009_1xx → Visage of Gunes +Unique_Helm_008_1xx → Skull of Resonance +Unique_Helm_014_1xx → The Laws of Seph +Unique_Helm_012_1xx → Crown of the Primus +Unique_Helm_015_1xx → Shrouded Mask +Unique_Helm_016_1xx → Crown of the Invoker +Unique_Gloves_014_1xx → St. Archew's Gage +Unique_Gloves_001_1xx → Stone Gauntlets +Unique_Gloves_007_1xx → Magefist +Unique_Gloves_011_1xx → Tasker and Theo +Unique_Gloves_002_1xx → Frostburn +Unique_Gloves_003_1xx → Gladiator Gauntlets +Unique_Gloves_008_1xx → Gloves of Worship +Unique_Gloves_015_1xx → Vambraces of Sescheron +Unique_Gloves_009_1xx → The Shadow's Grasp +Unique_Gloves_017_1xx → Akkhan's Manacles +Unique_Boots_010_1xx → Boj Anglers +Unique_Boots_009_1xx → The Crudest Boots +Unique_Boots_011_1xx → Rivera Dancers +Unique_Boots_001_1xx → Lut Socks +Unique_Boots_005_1xx → Fire Walkers +Unique_Boots_007_1xx → Illusory Boots +Unique_Boots_008_1xx → Ice Climbers +Unique_Boots_012_1xx → Irontoe Mudsputters +Unique_Boots_013_1xx → Boots of Disregard +Unique_Boots_019_1xx → Nilfur's Boast +Unique_Boots_015_1xx → The Traveler's Pledge (parte do conjunto) +Unique_Boots_017_1xx → Wraps of Clarity +Unique_Boots_014_1xx → The Shadow's Heels +Unique_Boots_018_1xx → Akkhan's Leniency +Unique_Belt_002_1xx → The Witching Hour +Unique_Belt_004_1xx → Saffron Wrap +Unique_Belt_006_1xx → Razor Strop +Unique_Belt_010_1xx → Cord of the Sherma +Unique_Belt_001_1xx → Goldwrap +Unique_Belt_008_1xx → String of Ears +Unique_Belt_003_1xx → Vigilante Belt +Unique_Belt_005_1xx → Hellcat Waistguard +Unique_Belt_009_1xx → Harrington Waistguard +Unique_Belt_007_1xx → Thundergod's Vigor +Unique_Belt_015_1xx → Omryn's Chain +Unique_Belt_012_1xx → Bakuli Jungle Wraps +Unique_Belt_013_1xx → The Shame of Delsere +Unique_Belt_014_1xx → Zoey's Secret +Unique_Bracer_004_1xx → Strongarm Bracers +Unique_Bracer_006_1xx → Lacuni Prowlers +Unique_Bracer_003_1xx → Slave Bonds +Unique_Bracer_002_1xx → Steady Strikers +Unique_Bracer_001_1xx → Gungdo Gear +Unique_Bracer_007_1xx → Warzechian Armguards +Unique_Bracer_005_1xx → Nemesis Bracers +Unique_Bracer_009_1xx → Gabriel's Vambraces +Unique_Bracer_010_1xx → Drakon's Lesson +Unique_Bracer_011_1xx → Bracers of the First Men +Unique_Chest_012_1xx → Cindercoat +Unique_Chest_018_1xx → Goldskin +Unique_Chest_010_1xx → Chaingmail +Unique_Chest_001_1xx → Heart of Iron +Unique_Chest_006_1xx → Aquila Cuirass +Unique_Chest_019_1xx → Tyrael's Might +Unique_Chest_002_1xx → Shi Mizu's Haori +Unique_Chest_013_1xx → Mantle of Channeling +Unique_Chest_014_1xx → Armor of the Kind Regent +Unique_Chest_015_1xx → Vo'Toyias Spiker +Unique_Chest_016_1xx → Heart of the Crashing Wave +Unique_ChestArmor_028_1xx → Shi Mizu's Haori +Unique_Chest_025_1xx → The Cloak of Deception +Unique_Chest_026_1xx → Death's Bargain +Unique_Chest_027_1xx → The Ninth Cirri Satchel +Unique_Pants_007_1xx → Pox Faulds +Unique_Pants_002_1xx → Hammer Jammers +Unique_Pants_001_1xx → Swampland Waders +Unique_Pants_005_1xx → Hexing Pants of Mr. Yan +Unique_Pants_006_1xx → Depth Diggers +Unique_Pants_008_1xx → Death's Bargain +Unique_Pants_013_1xx → Defiler Cuisses +Unique_Pants_010_1xx → Guardian's Jeopardy +Unique_Pants_012_1xx → Coils of the First Spider +Unique_Pants_009_1xx → The Shadow's Coil +Unique_Pants_014_1xx → Hammer Jammers +Unique_Shoulder_001_1xx → Homing Pads +Unique_Shoulder_002_1xx → Spaulders of Zakara +Unique_Shoulder_007_1xx → Pauldrons of the Skeleton King +Unique_Shoulder_003_1xx → Death Watch Mantle +Unique_Shoulder_006_1xx → Lefebvre's Soliloquy +Unique_Shoulder_008_1xx → Fury of the Ancients +Unique_Shoulder_017_1xx → Channeling Pauldrons +Unique_Shoulder_009_1xx → Unhallowed Essence +Unique_SpiritStone_005_1xx → The Mind's Eye +Unique_SpiritStone_004_1xx → Tzo Krin's Gaze +Unique_SpiritStone_002_1xx → See No Evil +Unique_SpiritStone_003_1xx → Gyana Na Kashu +Unique_SpiritStone_001_1xx → Bezoar Stone +Unique_SpiritStone_006_1xx → The Laws of Seph +Unique_SpiritStone_007_1xx → Erlang Shen +Unique_SpiritStone_008_1xx → Madstone +Unique_SpiritStone_009_1xx → Eye of Peshkov +Unique_VoodooMask_006_1xx → Quetzalcoatl +Unique_VoodooMask_005_1xx → The Grin Reaper +Unique_VoodooMask_002_1xx → Visage of Giyua +Unique_VoodooMask_001_1xx → Tiklandian Visage +Unique_VoodooMask_008_1xx → Carnevil +Unique_VoodooMask_007_1xx → Mask of Jeram +Unique_WizardHat_003_1xx → The Swami +Unique_WizardHat_001_1xx → Storm Crow +Unique_WizardHat_004_1xx → Dark Mage's Shade +Unique_Cloak_001_1xx → The Cape of the Dark Night +Unique_Cloak_005_1xx → Beckon Sail +Unique_Cloak_002_1xx → Blackfeather +Unique_Cloak_006_1xx → The Demon's Demise +Unique_BarbBelt_004_1xx → Pride of Cassius +Unique_BarbBelt_006_1xx → Chilanik's Chain +Unique_BarbBelt_007_1xx → The Undisputed Champion +Unique_BarbBelt_002_1xx → Lamentation +Unique_BarbBelt_001_1xx → Girdle of Giants +Unique_BarbBelt_003_1xx → Dread Iron +Unique_BarbBelt_008_1xx → Kotuur's Brace +Unique_BarbBelt_005_1xx → Ageless Might +Unique_BarbBelt_009_1xx → Girdle of Giants +Unique_Dagger_003_x1 → The Barber +Unique_Dagger_007_x1 → Pig Sticker +Unique_Dagger_002_x1 → Wizardspike +Unique_Dagger_006_x1 → Kill +Unique_Dagger_010_x1 → Eun-jang-do +Unique_CeremonialDagger_003_x1 → The Gidbinn +Unique_CeremonialDagger_006_x1 → Deadly Rebirth +Unique_CeremonialDagger_004_x1 → The Spider Queen's Grasp +Unique_CeremonialDagger_001_x1 → Anessazi Edge +Unique_CeremonialDagger_002_x1 → Voo's Juicer +Unique_CeremonialDagger_008_x1 → Starmetal Kukri +Unique_Sword_1H_017_x1 → Devil Tongue +Unique_Sword_1H_002_x1 → Wildwood +Unique_Sword_1H_003_x1 → Azurewrath +Unique_Sword_1H_014_x1 → Spectrum +Unique_Sword_1H_004_x1 → Doombringer +Unique_Sword_1H_019_x1 → Little Rogue +Unique_Sword_1H_007_x1 → The Ancient Bonesaber of Zumakalis +Unique_Sword_1H_011_x1 → Sever +Unique_Sword_1H_012_x1 → Rimeheart +Unique_Sword_2H_002_x1 → The Zweihander +Unique_Sword_2H_012_x1 → The Grandfather +Unique_Sword_2H_004_x1 → Scourge +Unique_Sword_2H_011_x1 → Faithful Memory +Unique_Sword_2H_007_x1 → Blade of Prophecy +Unique_Sword_2H_008_x1 → Stalgard's Decimator +Unique_Sword_2H_003_x1 → Corrupted Ashbringer +Unique_Sword_2H_010_x1 → Cam's Rebuttal +Unique_Sword_2H_001_x1 → Blackguard +Unique_Axe_1H_003_x1 → The Butcher's Sickle +Unique_Axe_1H_004_x1 → Hack +Unique_Axe_1H_001_x1 → Genzaniku +Unique_Axe_1H_006_x1 → Flesh-Tearer +Unique_Axe_1H_007_x1 → The Burning Axe of Sankis +Unique_Axe_1H_005_x1 → Sky Splitter +Unique_Axe_2H_003_x1 → Messerschmidt's Reaver +Unique_Axe_2H_001_x1 → The Executioner +Unique_Axe_2H_011_x1 → Skorn +Unique_Axe_2H_010_x1 → Cinder Switch +Unique_Axe_2H_009_x1 → Butcher's Carver +Unique_Mace_1H_002_x1 → Nutcracker +Unique_Mace_1H_005_x1 → Solanium +Unique_Mace_1H_007_x1 → Odyn Son +Unique_Mace_1H_003_x1 → Neanderthal +Unique_Mace_1H_008_x1 → Jace's Hammer of Vigilance +Unique_Mace_1H_009_x1 → Fulminator +Unique_Mace_1H_001_x1 → Telranden's Hand +Unique_Mace_1H_011_x1 → Sun Keeper +Unique_Mace_2H_003_x1 → Skywarden +Unique_Mace_2H_001_x1 → Sledge of Athskeleng +Unique_Mace_2H_012_x1 → The Furnace +Unique_Mace_2H_010_x1 → Soulsmasher +Unique_Mace_2H_006_x1 → Arthef's Spark of Life +Unique_Mace_2H_002_x1 → Cataclysm +Unique_Mace_2H_009_x1 → Schaeffer's Hammer +Unique_Polearm_002_x1 → Standoff +Unique_Polearm_004_x1 → Bovine Bardiche +Unique_Polearm_003_x1 → Heart Slaughter +Unique_Polearm_001_x1 → Vigilance +Unique_Spear_004_x1 → The Three Hundredth Spear +Unique_Spear_001_x1 → Scrimshaw +Unique_Spear_002_x1 → Arreat's Law +Unique_Spear_003_x1 → Empyrean Messenger +Unique_Bow_005_x1 → The Raven's Wing +Unique_Bow_007_x1 → Etrayu +Unique_Bow_008_x1 → Kridershot +Unique_Bow_001_x1 → Uskang +Unique_Bow_015_x1 → Cluckeye +Unique_Bow_010_x1 → Sydyru Crust +Unique_Bow_009_x1 → Windforce +Unique_XBow_006_x1 → Bakkan Caster +Unique_XBow_001_x1 → Buriza-Do Kyanon +Unique_XBow_011_x1 → Demon Machine +Unique_XBow_004_x1 → Pus Spitter +Unique_XBow_012_x1 → Manticore +Unique_XBow_002_x1 → Hellrack +Unique_XBow_003_x1 → Chanon Bolter +Unique_HandXBow_006_x1 → Helltrapper +Unique_HandXBow_005_x1 → Natalya's Slayer +Unique_HandXBow_004_x1 → Calamity +Unique_HandXBow_007_x1 → K'mar Tenclip +Unique_HandXBow_012_x1 → Danetta's Revenge +Unique_Mighty_1H_006_x1 → Blade of the Warlord +Unique_Mighty_1H_012_x1 → Fjord Cutter +Unique_Mighty_1H_001_x1 → Ambo's Pride +Unique_Mighty_1H_005_x1 → Oathkeeper +Unique_Mighty_2H_012_x1 → Fury of the Vanished Peak +Unique_Mighty_2H_004_x1 → Madawc's Sorrow +Unique_Mighty_2H_001_x1 → Bastion's Revered +Unique_Mighty_2H_006_x1 → The Gavel of Judgment +Unique_Fist_003_x1 → Fleshrake +Unique_Fist_007_x1 → Scarbringer +Unique_Fist_013_x1 → Logan's Claw +Unique_Fist_012_x1 → Won Khim Lau +Unique_Fist_004_x1 → Rabid Strike +Unique_Fist_005_x1 → Sledge Fist +Unique_Fist_006_x1 → Jawbreaker +Unique_Fist_008_x1 → The Fist of Az'Turrasq +Unique_Fist_009_x1 → Crystal Fist +Unique_CombatStaff_2H_002_x1 → The Flow of Eternity +Unique_CombatStaff_2H_008_x1 → Balance +Unique_CombatStaff_2H_005_x1 → Incense Torch of the Grand Temple +Unique_CombatStaff_2H_007_x1 → The Paddle +Unique_CombatStaff_2H_003_x1 → Warstaff of General Quang +Unique_CombatStaff_2H_004_x1 → Flying Dragon +Unique_CombatStaff_2H_009_x1 → Inna's Reach +Unique_Staff_008_x1 → The Smoldering Core +Unique_Staff_002_x1 → Valthek's Rebuke +Unique_Staff_001_x1 → The Tormentor +Unique_Staff_006_x1 → Maloth's Focus +Unique_Staff_003_x1 → The Grand Vizier +Unique_Staff_007_x1 → Ahavarion, Spear of Lycander +Unique_Staff_009_x1 → Staff of Chiroptera +Unique_Wand_003_x1 → Starfire +Unique_Wand_006_x1 → Blackhand Key +Unique_Wand_002_x1 → Wand of Woh +Unique_Wand_010_x1 → Gesture of Orpheus +Unique_Wand_009_x1 → Fragment of Destiny +Unique_Wand_013_x1 → Aether Walker +Unique_Shield_011_x1 → Frydehr's Wrath +Unique_Shield_007_x1 → Freeze of Deflection +Unique_Shield_004_x1 → Lidless Wall +Unique_Shield_008_x1 → Ivory Tower +Unique_Shield_002_x1 → Defender of Westmarch +Unique_Shield_009_x1 → Lidless Wall +Unique_Helm_001_x1 → Leoric's Crown +Unique_Helm_002_x1 → Andariel's Visage +Unique_Helm_007_x1 → Deathseer's Cowl +Unique_Helm_004_x1 → The Helm of Rule +Unique_Helm_003_x1 → Mempo of Twilight +Unique_Helm_011_x1 → Blind Faith +Unique_Helm_006_x1 → Broken Crown +Unique_Gloves_014_x1 → St. Archew's Gage +Unique_Gloves_001_x1 → Stone Gauntlets +Unique_Gloves_007_x1 → Magefist +Unique_Gloves_011_x1 → Tasker and Theo +Unique_Gloves_002_x1 → Frostburn +Unique_Gloves_003_x1 → Gladiator Gauntlets +Unique_Boots_010_x1 → Boj Anglers +Unique_Boots_009_x1 → The Crudest Boots +Unique_Boots_001_x1 → Lut Socks +Unique_Boots_005_x1 → Fire Walkers +Unique_Boots_007_x1 → Illusory Boots +Unique_Boots_008_x1 → Ice Climbers +Unique_Belt_002_x1 → The Witching Hour +Unique_Belt_004_x1 → Saffron Wrap +Unique_Belt_010_x1 → Cord of the Sherma +Unique_Belt_001_x1 → Goldwrap +Unique_Belt_008_x1 → String of Ears +Unique_Belt_003_x1 → Vigilante Belt +Unique_Belt_005_x1 → Hellcat Waistguard +Unique_Belt_009_x1 → Harrington Waistguard +Unique_Bracer_004_x1 → Strongarm Bracers +Unique_Bracer_006_x1 → Lacuni Prowlers +Unique_Bracer_003_x1 → Slave Bonds +Unique_Bracer_002_x1 → Steady Strikers +Unique_Bracer_001_x1 → Gungdo Gear +Unique_Bracer_007_x1 → Warzechian Armguards +Unique_Bracer_005_x1 → Nemesis Bracers +Unique_Chest_012_x1 → Cindercoat +Unique_Chest_018_x1 → Goldskin +Unique_Chest_010_x1 → Chaingmail +Unique_Chest_001_x1 → Heart of Iron +Unique_Chest_006_x1 → Aquila Cuirass +Unique_Chest_019_x1 → Tyrael's Might +Unique_Chest_002_x1 → Shi Mizu's Haori +Unique_Pants_007_x1 → Pox Faulds +Unique_Pants_002_x1 → Hammer Jammers +Unique_Pants_001_x1 → Swampland Waders +Unique_Pants_005_x1 → Hexing Pants of Mr. Yan +Unique_Pants_006_x1 → Depth Diggers +Unique_Shoulder_001_x1 → Homing Pads +Unique_Shoulder_002_x1 → Spaulders of Zakara +Unique_Shoulder_007_x1 → Pauldrons of the Skeleton King +Unique_Shoulder_003_x1 → Death Watch Mantle +Unique_SpiritStone_005_x1 → The Mind's Eye +Unique_SpiritStone_004_x1 → Tzo Krin's Gaze +Unique_SpiritStone_002_x1 → See No Evil +Unique_SpiritStone_003_x1 → Gyana Na Kashu +Unique_SpiritStone_001_x1 → Bezoar Stone +Unique_SpiritStone_006_x1 → The Laws of Seph +Unique_SpiritStone_007_x1 → Erlang Shen +Unique_SpiritStone_008_x1 → Madstone +Unique_VoodooMask_006_x1 → Quetzalcoatl +Unique_VoodooMask_005_x1 → The Grin Reaper +Unique_VoodooMask_002_x1 → Visage of Giyua +Unique_VoodooMask_001_x1 → Tiklandian Visage +Unique_VoodooMask_008_x1 → Carnevil +Unique_WizardHat_003_x1 → The Swami +Unique_WizardHat_001_x1 → Storm Crow +Unique_WizardHat_004_x1 → Dark Mage's Shade +Unique_Cloak_001_x1 → The Cape of the Dark Night +Unique_Cloak_005_x1 → Beckon Sail +Unique_Cloak_002_x1 → Blackfeather +Unique_BarbBelt_004_x1 → Pride of Cassius +Unique_BarbBelt_006_x1 → Chilanik's Chain +Unique_BarbBelt_007_x1 → The Undisputed Champion +Unique_BarbBelt_002_x1 → Lamentation +Unique_BarbBelt_001_x1 → Girdle of Giants +Unique_BarbBelt_003_x1 → Dread Iron +Unique_BarbBelt_008_x1 → Kotuur's Brace +Unique_BarbBelt_005_x1 → Ageless Might +Unique_Mighty_1H_010_x1 → Remorseless +Unique_Mighty_1H_011_x1 → Dishonored Legacy +Unique_HandXBow_001_x1 → Dawn +Unique_HandXBow_002_x1 → Balefire Caster +Unique_Wand_012_x1 → Serpent's Sparker +Unique_Fist_010_x1 → Vengeful Wind +Unique_Fist_011_x1 → Lion's Claw +Unique_CeremonialDagger_009_x1 → Sacred Harvester +Unique_Helm_009_x1 → Visage of Gunes +Unique_HandXBow_003_x1 → Valla's Bequest +Unique_Cloak_006_x1 → The Demon's Demise +Unique_Boots_011_x1 → Rivera Dancers +Unique_Helm_008_x1 → Skull of Resonance +Unique_Mighty_2H_010_x1 → Blade of the Tribes +Unique_Chest_013_x1 → Mantle of Channeling +Unique_BarbBelt_009_x1 → Girdle of Giants +Unique_Gloves_008_x1 → Gloves of Worship +Unique_Boots_012_x1 → Irontoe Mudsputters +Unique_Helm_010_x1 → Warhelm of Kassar +Unique_Chest_014_x1 → Armor of the Kind Regent +Unique_Belt_006_x1 → Razor Strop +Unique_SpiritStone_009_x1 → Eye of Peshkov +Unique_CombatStaff_2H_001_x1 → Staff of Kyro +Unique_Chest_015_x1 → Vo'Toyias Spiker +Unique_Belt_007_x1 → Thundergod's Vigor +Unique_Pants_008_x1 → Death's Bargain +Unique_VoodooMask_007_x1 → Mask of Jeram +Unique_Chest_016_x1 → Heart of the Crashing Wave +Unique_Boots_013_x1 → Boots of Disregard +Unique_Boots_019_x1 → Nilfur's Boast +Unique_ChestArmor_028_x1 → Shi Mizu's Haori +Unique_Belt_015_x1 → Omryn's Chain +Unique_Pants_013_x1 → Defiler Cuisses +Unique_Chest_025_x1 → The Cloak of Deception +Unique_Shoulder_006_x1 → Lefebvre's Soliloquy +Unique_Sword_1H_018_x1 → The Slanderer +Unique_Helm_012_x1 → Crown of the Primus +Unique_Pants_010_x1 → Guardian's Jeopardy +Unique_Gloves_015_x1 → Vambraces of Sescheron +Unique_Boots_015_x1 → The Traveler's Pledge (parte do conjunto) +Unique_Boots_017_x1 → Wraps of Clarity +Unique_Belt_012_x1 → Bakuli Jungle Wraps +Unique_Pants_012_x1 → Coils of the First Spider +Unique_Shoulder_008_x1 → Fury of the Ancients +Unique_Bracer_009_x1 → Gabriel's Vambraces +Unique_Chest_026_x1 → Death's Bargain +Unique_Helm_014_x1 → The Laws of Seph +Unique_Shoulder_017_x1 → Channeling Pauldrons +Unique_Gloves_009_x1 → The Shadow's Grasp +Unique_Pants_009_x1 → The Shadow's Coil +Unique_Boots_014_x1 → The Shadow's Heels +Unique_Bracer_010_x1 → Drakon's Lesson +Unique_Belt_013_x1 → The Shame of Delsere +Unique_Helm_015_x1 → Shrouded Mask +Unique_Chest_027_x1 → The Ninth Cirri Satchel +Unique_Belt_014_x1 → Zoey's Secret +Unique_Pants_014_x1 → Hammer Jammers +Unique_Shoulder_009_x1 → Unhallowed Essence +Unique_Bracer_011_x1 → Bracers of the First Men +Unique_Gloves_017_x1 → Akkhan's Manacles +Unique_Boots_018_x1 → Akkhan's Leniency +Unique_Helm_016_x1 → Crown of the Invoker +Unique_Shield_012_x1 → Guard of Johanna +Unique_Mighty_1H_015_x1 → Oathkeeper +Unique_Wand_018_x1 → Unstable Scepter +Unique_CeremonialDagger_011_x1 → The Dagger of Darts +Unique_HandXBow_016_x1 → The Demon's Demise +Unique_Fist_015_x1 → Kyoshiro's Blade +Unique_Axe_1H_013_x1 → Gimmershred +Unique_Dagger_008_x1 → Karlei's Point +Unique_Offhand_001_x1 → Envious Blade +Unique_Sword_1H_001_x1 → Deathwish +Unique_Sword_1H_010_x1 → Fulminator +Unique_Sword_1H_021_x1 → In-geom +Unique_Sword_2H_014_x1 → Blood Brother +Unique_Mace_1H_010_x1 → Darklight +Unique_Dagger_101_x1 → Lord Greenstone's Fan +Unique_Dagger_102_x1 → Spear of Jairo +Unique_Dagger_103_x1 → Trag'Oul's Corroded Fang +Unique_Sword_1H_101_x1 → The Twisted Sword +Unique_Sword_1H_102_x1 → Deathwish +Unique_Sword_1H_103_x1 → Ardent Falchion +Unique_Sword_1H_104_x1 → Amberwing +Unique_Sword_1H_105_x1 → Azurewrath +Unique_Sword_1H_106_x1 → Devil Tongue +Unique_Sword_1H_107_x1 → [Item não utilizado no jogo] +Unique_Sword_1H_108_x1 → Doombringer +Unique_Sword_1H_109_x1 → In-geom +Unique_Sword_1H_110_x1 → Rimeheart +Unique_Sword_1H_111_x1 → Sever +Unique_Sword_1H_112_x1 → Wildwood +Unique_Sword_2H_101_x1 → Faithful Memory +Unique_Sword_2H_102_x1 → Blade of Prophecy +Unique_Sword_2H_103_x1 → Scourge +Unique_Axe_1H_101_x1 → Mordullu's Blade +Unique_Axe_1H_102_x1 → Hack +Unique_Axe_1H_103_x1 → The Burning Axe of Sankis +Unique_Axe_2H_101_x1 → The Executioner +Unique_Axe_2H_102_x1 → Messerschmidt's Reaver +Unique_Axe_2H_103_x1 → Skorn +Unique_Axe_2H_104_x1 → Cinder Switch +Unique_Mace_1H_101_x1 → Odyn Son +Unique_Mace_1H_102_x1 → Nutcracker +Unique_Mace_1H_103_x1 → Sun Keeper +Unique_Mace_2H_103_x1 → Arthef's Spark of Life +Unique_Mace_2H_104_x1 → The Furnace +Unique_Polearm_101_x1 → Standoff +Unique_Polearm_102_x1 → Bovine Bardiche +Unique_Spear_101_x1 → Arreat's Law +Unique_Spear_102_x1 → The Three Hundredth Spear +Unique_Bow_101_x1 → Kridershot +Unique_Bow_102_x1 → The Raven's Wing +Unique_Bow_103_x1 → Windforce +Unique_Bow_104_x1 → Yang's Recurve +Unique_Xbow_101_x1 → Manticore +Unique_Xbow_102_x1 → Wojahnni Assaulter +Unique_Staff_101_x1 → Staff of Chiroptera +Unique_Staff_102_x1 → The Grand Vizier +Unique_Staff_103_x1 → The Tormentor +Unique_Staff_104_x1 → Valthek's Rebuke +Unique_Shield_101_x1 → Denial +Unique_Shield_102_x1 → Shield of the Steed +Unique_Shield_103_x1 → Akkhan's Leniency +Unique_Shield_104_x1 → Unrelenting Phalanx +Unique_Shield_105_x1 → [Item não utilizado no jogo] +Unique_Shield_106_x1 → [Item não utilizado no jogo] +Unique_Shield_107_x1 → Guard of Johanna +Unique_Helm_102_x1 → Leoric's Crown +Unique_Helm_103_x1 → Pride's Fall +Unique_Shoulder_101_x1 → Homing Pads +Unique_Shoulder_102_x1 → Pauldrons of the Skeleton King +Unique_Shoulder_103_x1 → Death Watch Mantle +Unique_Gloves_101_x1 → Gloves of Worship +Unique_Gloves_102_x1 → St. Archew's Gage +Unique_Gloves_103_x1 → Magefist +Unique_Boots_102_x1 → Boots of Disregard +Unique_Boots_103_x1 → Ice Climbers +Unique_Boots_104_x1 → Illusory Boots +Unique_Belt_101_x1 → Cord of the Sherma +Unique_Belt_102_x1 → Harrington Waistguard +Unique_Belt_103_x1 → The Witching Hour +Unique_Belt_104_x1 → Goldwrap +Unique_Belt_105_x1 → String of Ears +Unique_Belt_106_x1 → Thundergod's Vigor +Unique_Belt_107_x1 → Crashing Rain +Unique_Belt_108_x1 → Hunter's Wrath +Unique_Bracer_101_x1 → Custerian Wristguards +Unique_Bracer_102_x1 → Strongarm Bracers +Unique_Bracer_103_x1 → Warzechian Armguards +Unique_Bracer_104_x1 → Nemesis Bracers +Unique_Bracer_105_x1 → Promise of Glory +Unique_Bracer_106_x1 → Reaper's Wraps +Unique_Bracer_107_x1 → Kethryes' Splint +Unique_Bracer_108_x1 → [Item não utilizado no jogo] +Unique_Chest_101_x1 → Mantle of Channeling +Unique_Chest_102_x1 → Cindercoat +Unique_Pants_101_x1 → Pox Faulds +Unique_Pants_102_x1 → Hexing Pants of Mr. Yan +Unique_Mighty_1H_101_x1 → Fjord Cutter +Unique_Mighty_1H_102_x1 → Remorseless +Unique_Mighty_1H_103_x1 → Blade of the Warlord +Unique_Mighty_1H_104_x1 → Oathkeeper +Unique_Mighty_2H_101_x1 → Fury of the Vanished Peak +Unique_BarbBelt_101_x1 → Lamentation +Unique_BarbBelt_102_x1 → [Item não utilizado/bugado] +Unique_BarbBelt_103_x1 → [Item não utilizado/placeholder] +Unique_BarbBelt_104_x1 → The Undisputed Champion +Unique_BarbBelt_105_x1 → Pride of Cassius +Unique_CruShield_101_x1 → Shield of the Steed +Unique_CruShield_102_x1 → Unrelenting Phalanx +Unique_CruShield_103_x1 → Akkhan's Leniency +Unique_CruShield_104_x1 → Guard of Johanna +Unique_CruShield_105_x1 → Jekangbord +Unique_CruShield_106_x1 → The Final Witness +Unique_CruShield_107_x1 → Frydehr's Wrath +Unique_CruShield_108_x1 → Sublime Conviction +Unique_Flail_1H_101_x1 → Darklight +Unique_Flail_1H_102_x1 → Gyrfalcon's Foote +Unique_Flail_1H_103_x1 → Inviolable Faith +Unique_Flail_1H_104_x1 → Justinian's Mercy +Unique_Flail_1H_105_x1 → Swiftmount +Unique_Flail_1H_106_x1 → Golden Scourge +Unique_Flail_1H_107_x1 → Johanna's Argument +Unique_Flail_2H_101_x1 → Baleful Remnant +Unique_Flail_2H_102_x1 → Fate of the Fell +Unique_Flail_2H_103_x1 → Golden Flense +Unique_Flail_2H_104_x1 → The Mortal Drama +Unique_HandXBow_101_x1 → K'mar Tenclip +Unique_HandXBow_102_x1 → Valla's Bequest +Unique_Cloak_101_x1 → The Cloak of Garwulf +Unique_Cloak_102_x1 → Cape of the Dark Night +Unique_SpiritStone_101_x1 → Tzo Krin's Gaze +Unique_SpiritStone_102_x1 → The Laws of Seph +Unique_SpiritStone_103_x1 → Gyana Na Kashu +Unique_CombatStaff_2H_101_x1 → Incense Torch of the Grand Temple +Unique_CombatStaff_2H_102_x1 → Flying Dragon +Unique_Fist_101_x1 → The Fist of Az'Turrasq +Unique_Fist_102_x1 → Lion's Claw +Unique_VoodooMask_101_x1 → Carnevil +Unique_VoodooMask_102_x1 → Mask of Jeram +Unique_CeremonialDagger_101_x1 → The Dagger of Darts +Unique_CeremonialDagger_102_x1 → Starmetal Kukri +Unique_WizardHat_101_x1 → Velvet Camaral +Unique_WizardHat_102_x1 → The Magistrate +Unique_WizardHat_103_x1 → Crown of the Primus +Unique_WizardHat_104_x1 → Archmage's Vicalyke +Unique_Wand_101_x1 → Wand of Woh +Unique_Wand_102_x1 → Aether Walker +Unique_Belt_Set_02_x1 → Blackthorne's Notched Belt +Unique_Bracer_Set_02_x1 → Guardian's Case (Guardian's Jeopardy Set) +Unique_Sword_1H_Set_02_x1 → Hallowed Breach (Hallowed Protectors Set) +Unique_Sword_1H_Set_03_x1 → Bul-Kathos's Solemn Vow +Unique_Helm_Set_05_x1 → Helm of the Wastes +Unique_Shoulder_Set_05_x1 → Pauldrons of the Wastes +Unique_Chest_Set_05_x1 → Cuirass of the Wastes +Unique_Pants_Set_05_x1 → Tasset of the Wastes +Unique_Boots_Set_05_x1 → Sabaton of the Wastes +Unique_Gloves_Set_05_x1 → Gauntlet of the Wastes +Unique_Helm_Set_06_x1 → Accursed Visage +Unique_Shoulder_Set_06_x1 → Unsanctified Shoulders +Unique_Chest_Set_06_x1 → Cage of the Hellborn +Unique_Pants_Set_06_x1 → Unholy Plates +Unique_Boots_Set_06_x1 → Hell Walkers +Unique_Gloves_Set_06_x1 → Fiendish Grips +Unique_Helm_Set_07_x1 → Mask of the Searing Sky +Unique_Shoulder_Set_07_x1 → Mantle of the Upside-Down Sinners +Unique_Chest_Set_07_x1 → Heart of the Crashing Wave +Unique_Pants_Set_07_x1 → Scales of the Dancing Serpent +Unique_Boots_Set_07_x1 → Eight-Demon Boots +Unique_Gloves_Set_07_x1 → Fists of Thunder +Unique_Helm_Set_08_x1 → Helltooth Mask +Unique_Shoulder_Set_08_x1 → Helltooth Mantle +Unique_Chest_Set_08_x1 → Helltooth Tunic +Unique_Pants_Set_08_x1 → Helltooth Leg Guards +Unique_Boots_Set_08_x1 → Helltooth Greaves +Unique_Gloves_Set_08_x1 → Helltooth Gauntlets +Unique_Helm_Set_09_x1 → Tal Rasha's Guise of Wisdom +Unique_Shoulder_Set_09_x1 → Tal Rasha's Stride +Unique_Chest_Set_09_x1 → Tal Rasha's Relentless Pursuit +Unique_Pants_Set_09_x1 → Tal Rasha's Brace +Unique_Boots_Set_09_x1 → Tal Rasha's Allegiance +Unique_Gloves_Set_09_x1 → Tal Rasha's Grasp +Unique_Helm_Set_10_x1 → Roland's Visage +Unique_Shoulder_Set_10_x1 → Roland's Mantle +Unique_Chest_Set_10_x1 → Roland's Bearing +Unique_Pants_Set_10_x1 → Roland's Determination +Unique_Boots_Set_10_x1 → Roland's Stride +Unique_Gloves_Set_10_x1 → Roland's Grasp +Unique_Gloves_Set_11_x1 → Firebird's Talons +Unique_Shoulder_Set_11_x1 → Firebird's Pinions +Unique_Helm_Set_11_x1 → Firebird's Plume +Unique_Helm_Set_12_x1 → Shrouded Mask +Unique_Shoulder_Set_12_x1 → Dashing Pauldrons of Despair +Unique_Gloves_Set_12_x1 → Fierce Gauntlets +Unique_Bracer_Set_12_x1 → Krelm's Buff Bracers +Unique_Chest_Set_13_x1 → The Shadow's Bane +Unique_Pants_Set_13_x1 → The Shadow's Coil +Unique_Boots_Set_13_x1 → The Shadow's Heels +Unique_Gloves_Set_13_x1 → The Shadow's Grasp +Unique_Chest_Set_14_x1 → Sunwuko's Soul +Unique_Pants_Set_14_x1 → Sunwuko's Leggings +Unique_Boots_Set_14_x1 → Sunwuko's Sandals +Unique_Gloves_Set_14_x1 → Sunwuko's Paws +Unique_Gloves_Set_15_x1 → Gauntlets of Akkhan +Unique_Helm_Set_15_x1 → Helm of Akkhan +Unique_Pants_Set_15_x1 → Cuisses of Akkhan +Unique_Shoulder_Set_15_x1 → Pauldrons of Akkhan +Unique_Boots_Set_15_x1 → Sabatons of Akkhan +Unique_Helm_Set_16_x1 → Crown of the Invoker +Unique_Shoulder_Set_16_x1 → Burden of the Invoker +Unique_Chest_Set_16_x1 → Acquittal of the Invoker +Unique_Pants_Set_16_x1 → Zeal of the Invoker +Unique_Boots_Set_16_x1 → Shackles of the Invoker +Unique_Gloves_Set_16_x1 → Pride of the Invoker +Unique_Helm_Promo_01_x1 → Helm of the Cranial Crustacean +Unique_Helm_Promo_02_x1 → Infernal Helm +Unique_CeremonialDagger_Promo_01_x1 → Horadric Hamburger +Unique_Fist_Promo_01_x1 → Hand of Despair +Unique_Flail_1H_Promo_01_x1 → Templar's Chain +Unique_HandXBow_Promo_01_x1 → Crossbow of Corvus +Unique_Mighty_2H_Promo_01_x1 → Mace of the Crows +Unique_Sword_1H_Promo_01_x1 → Ghoul King's Blade +Unique_Sword_1H_Promo_02_x1 → Lachdanan's Stormshield +unique_axe_1h_005_p2 → Sky Splitter +p4_unique_axe_1h_102 → Hack +unique_dagger_010_x1_210 → Eun-jang-do +p61_unique_dagger_101_x1 → Lord Greenstone's Fan +unique_dagger_104_x1 → Bloodtide Blade +p61_unique_dagger_102_x1 → Spear of Jairo +p66_unique_mace_1h_001 → Echoing Fury +p6_unique_spear_01 → Nayr's Black Death +unique_spear_004_p3 → The Three Hundredth Spear +p3_unique_spear_001 → Scrimshaw +p4_unique_spear_002 → Arreat's Law +p3_unique_sword_1h_104 → The Twisted Sword +p3_unique_sword_1h_012 → Rimeheart +p4_unique_sword_1h_01 → Deathwish +p61_unique_sword_1h_112_x1 → Wildwood +unique_sword_1h_113_x1 → Manajuma's Carving Knife +p65_ceremonialdagger_norm_unique_02 → Voo's Juicer +p1_ceremonialdagger_norm_unique_01 → Manajuma's Carving Knife +p68_unique_dagger_003 → The Barber +p4_unique_ceremonialdagger_008 → Starmetal Kukri +p4_unique_dagger_002 → Wizardspike +p41_unique_fist_007 → Scarbringer +p41_unique_fist_008 → The Fist of Az'Turrasq +p61_unique_fist_013_x1 → Logan's Claw +p61_unique_fist_009_x1 → Crystal Fist +p67_unique_fist_006 → Jawbreaker +p43_unique_fist_003_x1 → Fleshrake +p67_fistweapon_norm_unique_02 → Won Khim Lau +p1_fistweapon_norm_unique_01 → Sledge Fist +p4_unique_fist_102 → Lion's Claw +p67_unique_flail_1h_106 → Golden Scourge +p61_unique_flail_1h_105_x1 → Swiftmount +p1_flail1h_norm_unique_01 → Justinian's Mercy +p67_unique_mighty_1h_006 → Blade of the Warlord +p67_unique_mighty_1h_012 → Fjord Cutter +p4_unique_mighty_1h_005 → Oathkeeper +p4_unique_mighty_1h_104 → Oathkeeper +p67_unique_mighty_1h_102 → Remorseless +p6_unique_scythe1h_01 → Trag'Oul's Corroded Fang +p6_unique_scythe1h_02 → Scythe of the Cycle +p61_unique_scythe1h_03 → Funerary Pick +unique_bow_005_p1 → The Raven's Wing +unique_bow_001_p1 → Uskang +p61_unique_bow_104_x1 → Yang's Recurve +p61_unique_xbow_001 → Buriza-Do Kyanon +p65_unique_xbow_102 → Wojahnni Assaulter +p43_unique_handxbow_005 → Natalya's Slayer +unique_handxbow_004_p1 → Calamity +p4_unique_handxbow_001 → Dawn +p4_unique_handxbow_01 → Danetta's Spite +p4_unique_handxbow_02 → Danetta's Revenge +p42_handxbow_norm_unique_03 → Lianna's Wings +p61_wand_norm_unique_02 → Starfire +p42_unique_wand_003_x1 → Starfire +p61_unique_wand_101_x1 → Wand of Woh +p68_unique_wand_102 → Aether Walker +p2_unique_wand_002 → Wand of Woh +p4_unique_wand_010 → Gesture of Orpheus +p1_wand_norm_unique_01 → Blackhand Key +p6_unique_scythe1h_04 → Maltorius' Petrified Spike +p66_unique_axe_2h_003 → Messerschmidt's Reaver +p66_unique_axe_2h_011 → Skorn +unique_mace_2h_012_p1 → The Furnace +unique_mace_2h_009_p2 → Schaeffer's Hammer +p61_unique_polearm_01 → Vigilance +unique_polearm_003_p1 → Heart Slaughter +p61_unique_staff_001 → The Tormentor +p2_unique_staff_003 → The Grand Vizier +p61_unique_staff_009 → Staff of Chiroptera +p61_unique_sword_2h_012_x1 → The Grandfather +p61_unique_sword_2h_007_x1 → Blade of Prophecy +unique_sword_2h_104_x1 → Stalgard's Decimator +p61_unique_combatstaff_2h_001 → Staff of Kyro +p41_unique_combatstaff_2h_005 → Incense Torch of the Grand Temple +p61_unique_combatstaff_2h_003_x1 → Warstaff of General Quang +p4_unique_flail_2h_002 → Fate of the Fell +p4_unique_flail_2h_001 → Golden Flense +p61_unique_flail_2h_104 → The Mortal Drama +p61_unique_flail_2h_103_x1 → Golden Flense +p65_flail2h_norm_unique_01 → Baleful Remnant +p4_unique_flail_2h_set_01_x1 → The Mortal Drama (parte do conjunto Seeker of the Light) +p68_unique_mighty_2h_004 → Madawc's Sorrow +p61_unique_mighty_2h_006 → The Gavel of Judgment +p4_unique_mighty_2h_101 → Fury of the Vanished Peak +p6_unique_scythe2h_03 → Reilena's Shadowhook +p61_unique_scythe2h_01 → Nayr's Black Death +p65_unique_scythe2h_02 → Bloodtide Blade +p61_unique_scythe2h_04 → Reilena's Shadowhook +unique_helm_002_p1 → Andariel's Visage +p2_unique_helm_001 → Leoric's Crown +p4_unique_helm_102 → Leoric's Crown +p4_unique_helm_103 → Pride's Fall +p6_necro_unique_helm_21 → Mask of Scarlet Death +unique_helm_003_p2 → Mempo of Twilight +p61_necro_unique_helm_22 → Fate's Vow +unique_helm_set_13_x1 → The Shadow's Mask +unique_helm_set_14_x1 → Sunwuko's Crown +unique_helm_set_01_p2 → Immortal King's Triumph +p68_unique_helm_set_05 → Helm of the Wastes +unique_helm_set_03_p3 → Firebird's Plume +p67_unique_helm_set_01 → Raekor's Will +unique_helm_set_01_p1 → Immortal King's Triumph +unique_helm_set_03_p2 → Firebird's Plume +p1_unique_spiritstone_008 → Madstone +p61_unique_voodoomask_102_x1 → Mask of Jeram +p65_unique_voodoomask_101_x1 → Carnevil +p68_unique_helm_set_04 → Natalya's Sight +p3_unique_wizardhat_003 → The Swami +p68_unique_wizardhat_103 → Crown of the Primus +p6_necro_unique_shoulders_22 → Corpsewhisper Pauldrons +p6_necro_unique_shoulders_21 → Razeth's Volition +p4_unique_shoulder_101 → Homing Pads +p4_unique_shoulder_103 → Death Watch Mantle +p67_unique_shoulder_102 → Pauldrons of the Skeleton King +unique_shoulder_003_p1 → Death Watch Mantle +unique_shoulder_set_13_x1 → The Shadow's Burden +unique_shoulder_set_14_x1 → Sunwuko's Balance +p68_unique_shoulder_set_05 → Pauldrons of the Wastes +unique_shoulder_set_01_p2 → Immortal King's Tribal Binding +p67_unique_shoulder_set_01 → Raekor's Burden +unique_shoulder_set_01_p1 → Immortal King's Tribal Binding +unique_shoulder_set_03_p3 → Firebird's Pinions +unique_shoulder_set_03_p2 → Firebird's Pinions +unique_shoulder_set_01_p3 → Immortal King's Tribal Binding +p67_unique_shoulder_set_02 → Vile Ward +p68_unique_shoulder_set_03 → Spaulders of Zakara +unique_shoulder_set_02_p2 → Vile Ward +p68_unique_shoulder_set_04 → Marauder's Spines +unique_shoulder_set_02_p3 → Vile Ward +p6_necro_set_4_shoulders → Glamorous Gigot (Masquerade of the Burning Carnival Set) +p6_necro_set_1_shoulders → Pestilence Defense (Pestilence Master's Shroud Set) +p6_necro_set_2_shoulders → Rathma's Spikes (Bones of Rathma Set) +p6_necro_set_3_shoulders → Trag'Oul's Heart (Trag'Oul's Avatar Set) +unique_helm_set_01_p3 → Immortal King's Triumph +p67_unique_helm_set_02 → Eyes of the Earth +unique_helm_set_02_p2 → Eyes of the Earth +p68_unique_helm_set_03 → Helm of Akkhan +unique_helm_set_02_p3 → Eyes of the Earth +p6_necro_set_2_helm → Rathma's Skull Helm (Bones of Rathma Set) +p6_necro_set_3_helm → Trag'Oul's Guise (Trag'Oul's Avatar Set) +p6_necro_set_4_helm → Mask of the Burning Carnival (Masquerade of the Burning Carnival Set) +p6_necro_set_1_helm → Pestilence Mask (Pestilence Master's Shroud Set) +unique_cloak_002_p1 → Blackfeather +unique_chest_set_03_p2 → Firebird's Breast +p4_unique_chest_018 → Goldskin +p4_unique_chest_012 → Cindercoat +p6_necro_unique_chest_21 → Bloodsong Mail +p6_necro_unique_chest_22 → Requiem Cereplate +unique_chest_set_15_x1 → Breastplate of Akkhan +unique_chest_set_11_x1 → Firebird's Breast +unique_chest_set_01_p2 → Immortal King's Eternal Reign +p68_unique_chest_set_05 → Cuirass of the Wastes +unique_chest_set_01_p1 → Immortal King's Eternal Reign +unique_chest_set_03_p3 → Firebird's Breast +p67_unique_chest_set_01 → Raekor's Heart +unique_chest_set_01_p3 → Immortal King's Eternal Reign +p67_unique_chest_set_02 → Heart of the Earth +p68_unique_chest_set_03 → Breastplate of Akkhan +unique_chest_set_02_p2 → Heart of the Earth +P68_unique_chest_set_04 → Marauder's Carapace +p6_necro_set_1_chest → Pestilence Robe (Pestilence Master's Shroud Set) +p6_necro_set_2_chest → Rathma's Ribcage Plate (Bones of Rathma Set) +p6_necro_set_3_chest → Trag'Oul's Scales (Trag'Oul's Avatar Set) +p6_necro_set_4_chest → Luxuriant Barding (Masquerade of the Burning Carnival Set) +p4_unique_bracer_004 → Strongarm Bracers +p2_unique_bracer_006 → Lacuni Prowlers +p61_unique_bracer_107 → Kethryes' Splint +p4_unique_bracer_105 → Promise of Glory +p4_unique_bracer_108 → [Item não utilizado no jogo] +p4_unique_bracer_103 → Warzechian Armguards +p2_unique_bracer_003 → Slave Bonds +p4_unique_bracer_106 → Reaper's Wraps +p61_unique_bracer_104 → Nemesis Bracers +p3_unique_bracer_107 → Wraps of Clarity +p61_unique_bracer_103 → Warzechian Armguards +p3_unique_bracer_106 → Spirit Guards +p61_unique_bracer_105 → Promise of Glory +p61_unique_bracer_108_x1 → Skular's Salvation +p67_unique_bracer_100 → Ashnagarr's Blood Bracer +p3_unique_bracer_101 → Gungdo Gear +p42_unique_bracer_spiketrap → Trag'Oul Coils +p4_unique_bracer_110 → Bracers of Destruction +p4_unique_bracer_102 → Strongarm Bracers +p61_unique_bracer_109 → Ranslor's Folly +p4_unique_bracer_101 → Custerian Wristguards +p6_necro_unique_gloves_22 → Grasps of Essence +p66_unique_gloves_007 → Magefist +unique_gloves_101_p2 → Gloves of Worship +p41_unique_gloves_014 → St. Archew's Gage +p6_necro_unique_gloves_21 → Moribund Gauntlets +p41_unique_gloves_002 → Frostburn +unique_gloves_set_01_p3 → Immortal King's Irons +p67_unique_gloves_set_02 → Pull of the Earth +p68_unique_gloves_set_03 → Gauntlets of Akkhan +unique_gloves_set_02_p2 → Pull of the Earth +p68_unique_gloves_set_04 → Marauder's Gloves +unique_gloves_set_02_p3 → Pull of the Earth +p6_necro_set_1_gloves → Pestilence Gloves (Pestilence Master's Shroud Set) +p6_necro_set_2_gloves → Rathma's Macabre Vambraces (Bones of Rathma Set) +p6_necro_set_3_gloves → Trag'Oul's Claws (Trag'Oul's Avatar Set) +p6_necro_set_4_gloves → Elegant Grips (Masquerade of the Burning Carnival Set) +p2_unique_gloves_03 → Gladiator Gauntlets +p2_unique_gloves_01 → Stone Gauntlets +p2_unique_gloves_04 → Pender's Purchase +p2_unique_gloves_02 → Frostburn +unique_gloves_set_01_p2 → Immortal King's Irons +p68_unique_gloves_set_05 → Gauntlet of the Wastes +p67_unique_gloves_set_01 → Raekor's Wraps +unique_gloves_set_01_p1 → Immortal King's Irons +unique_gloves_set_03_p3 → Firebird's Talons +unique_gloves_set_03_p2 → Firebird's Talons +p43_unique_belt_001_x1 → Goldwrap +p43_unique_belt_005_x1 → Hellcat Waistguard +p61_unique_belt_03 → Vigilante Belt +p4_unique_belt_02 → The Witching Hour +p61_unique_belt_01 → Goldwrap +p4_unique_belt_05 → Hellcat Waistguard +p3_unique_belt_01 → Jang's Envelopment +p4_unique_belt_03 → Vigilante Belt +p61_unique_belt_007 → Thundergod's Vigor +p4_unique_belt_07 → Thundergod's Vigor +p4_unique_belt_06 → Razor Strop +unique_belt_108_p2 → Hunter's Wrath +unique_belt_102_p2 → Harrington Waistguard +p2_unique_belt_04 → Saffron Wrap +p2_unique_belt_03 → Vigilante Belt +p2_unique_belt_06 → Razor Strop +unique_belt_104_p2 → Goldwrap +p2_unique_belt_01 → Goldwrap +p4_unique_belt_01 → Goldwrap +p2_unique_belt_05 → Hellcat Waistguard +p2_unique_belt_02 → The Witching Hour +unique_belt_003_p1 → Vigilante Belt +p2_unique_belt_008 → String of Ears +p42_crusader_foh_belt → Belt of the Trove +p4_unique_belt_04 → Saffron Wrap +p3_unique_belt_005 → Hwoj Wrap +p61_unique_barbbelt_eq → Girdle of Giants +p68_unique_barbbelt_006 → Chilanik's Chain +p2_unique_barbbelt_001 → Girdle of Giants +p67_unique_barbbelt_005 → Ageless Might +unique_pants_007_p2 → Pox Faulds +p61_necro_unique_pants_21 → Golemskin Breeches +p4_unique_pants_002 → Hammer Jammers +p61_necro_unique_pants_22 → Defiler Cuisses +p41_unique_pants_001 → Swampland Waders +unique_pants_006_p1 → Depth Diggers +p2_unique_pants_01 → Swampland Waders +p2_unique_pants_02 → Hammer Jammers +p2_unique_pants_04 → Ashen Garb +p2_unique_pants_03 → Gehennas +unique_pants_set_11_x1 → Firebird's Down +unique_pants_set_12_x1 → Krelm's Buff Belt +unique_pants_set_01_p2 → Immortal King's Stature +p68_unique_pants_set_05 → Tasset of the Wastes +p67_unique_pants_set_01 → Raekor's Breeches +p6_nercro_set_1_pants → Pestilence Incantations (Pestilence Master's Shroud Set) +p6_nercro_set_2_pants → Rathma's Skeletal Legplates (Bones of Rathma Set) +p6_nercro_set_3_pants → Trag'Oul's Hide (Trag'Oul's Avatar Set) +p6_nercro_set_4_pants → Leggings of the Burning Carnival (Masquerade of the Burning Carnival Set) +unique_pants_set_02_p3 → Weight of the Earth +p68_unique_pants_set_04 → Marauder's Encasement +p68_unique_pants_set_03 → Cuisses of Akkhan +unique_pants_set_02_p2 → Weight of the Earth +unique_pants_set_01_p3 → Immortal King's Stature +p67_unique_pants_set_02 → Weight of the Earth +unique_pants_set_03_p2 → Firebird's Down +unique_pants_set_01_p1 → Immortal King's Stature +unique_pants_set_03_p3 → Firebird's Down +p1_unique_boots_010 → Boj Anglers +p4_unique_boots_001 → Lut Socks +p6_necro_unique_boots_22 → Bryner's Journey +unique_boots_007_p2 → Illusory Boots +p6_necro_unique_boots_21 → Steuart's Greaves +p61_unique_boots_01 → Lut Socks +p2_unique_boots_02 → The Crudest Boots +unique_boots_set_12_x1 → Cain's Travelers +p68_unique_boots_set_05 → Sabaton of the Wastes +unique_boots_set_01_p2 → Immortal King's Stride +unique_boots_set_01_p1 → Immortal King's Stride +unique_boots_set_03_p3 → Firebird's Tarsi +p67_unique_boots_set_01 → Raekor's Striders +unique_boots_set_03_p2 → Firebird's Tarsi +p67_unique_boots_set_02 → Foundation of the Earth +unique_boots_set_01_p3 → Immortal King's Stride +unique_boots_set_02_p2 → Foundation of the Earth +p68_unique_boots_set_03 → Sabatons of Akkhan +unique_boots_set_02_p3 → Foundation of the Earth +p68_unique_boots_set_04 → Marauder's Treads +p6_necro_set_1_boots → Pestilence Battle Boots +p6_necro_set_2_boots → Rathma's Ossified Sabatons +p6_necro_set_3_boots → Trag'Oul's Stalwart Greaves +p6_necro_set_4_boots → Gallant Treads +p61_unique_shield_007 → Freeze of Deflection +unique_shield_101_p2 → Denial +p2_unique_shield_002 → Defender of Westmarch +p6_unique_shield_01 → Bone Ringer +p61_unique_shield_106_x1 → Stormshield +p65_unique_crushield_102_x1 → Unrelenting Phalanx +p61_crushield_norm_unique_01 → Jekangbord +p1_crushield_norm_unique_02 → Sublime Conviction +p4_unique_shield_set_01_x1 → Hallowed Barricade +P6_Necro_Set_1_Helm → Pestilence Mask (Pestilence Master's Shroud Set) +P6_Necro_Set_1_Boots → Pestilence Battle Boots (Pestilence Master's Shroud Set) +P6_Necro_Set_1_Pants → Pestilence Incantations (Pestilence Master's Shroud Set) +P6_Necro_Set_1_Chest → Pestilence Robe (Pestilence Master's Shroud Set) +P6_Necro_Set_1_Shoulders → Pestilence Defense (Pestilence Master's Shroud Set) +P6_Necro_Set_1_Gloves → Pestilence Gloves (Pestilence Master's Shroud Set) +P6_Necro_Set_2_Helm → Rathma's Skull Helm (Bones of Rathma Set) +P6_Necro_Set_2_Boots → Rathma's Ossified Sabatons (Bones of Rathma Set) +P6_Necro_Set_2_Pants → Rathma's Skeletal Legplates (Bones of Rathma Set) +P6_Necro_Set_2_Chest → Rathma's Ribcage Plate (Bones of Rathma Set) +P6_Necro_Set_2_Shoulders → Rathma's Spikes (Bones of Rathma Set) +P6_Necro_Set_2_Gloves → Rathma's Macabre Vambraces (Bones of Rathma Set) +P6_Necro_Set_3_Helm → Trag'Oul's Guise (Trag'Oul's Avatar Set) +P6_Necro_Set_3_Boots → Trag'Oul's Stalwart Greaves (Trag'Oul's Avatar Set) +P6_Necro_Set_3_Pants → Trag'Oul's Hide (Trag'Oul's Avatar Set) +P6_Necro_Set_3_Chest → Trag'Oul's Scales (Trag'Oul's Avatar Set) +P6_Necro_Set_3_Shoulders → Trag'Oul's Heart (Trag'Oul's Avatar Set) +P6_Necro_Set_3_Gloves → Trag'Oul's Claws (Trag'Oul's Avatar Set) +P6_Necro_Set_4_Helm → Mask of the Burning Carnival (Masquerade of the Burning Carnival Set) +P6_Necro_Set_4_Boots → Gallant Treads (Masquerade of the Burning Carnival Set) +P6_Necro_Set_4_Pants → Leggings of the Burning Carnival (Masquerade of the Burning Carnival Set) +P6_Necro_Set_4_Chest → Luxuriant Barding (Masquerade of the Burning Carnival Set) +P6_Necro_Set_4_Shoulders → Glamorous Gigot (Masquerade of the Burning Carnival Set) +P6_Necro_Set_4_Gloves → Elegant Grips (Masquerade of the Burning Carnival Set) \ No newline at end of file diff --git a/src/DiIiS-NA/D3-GameServer/GSSystem/ItemsSystem/UniqueItems.cs b/src/DiIiS-NA/D3-GameServer/GSSystem/ItemsSystem/UniqueItems.cs index d525ec1..d7c60a9 100644 --- a/src/DiIiS-NA/D3-GameServer/GSSystem/ItemsSystem/UniqueItems.cs +++ b/src/DiIiS-NA/D3-GameServer/GSSystem/ItemsSystem/UniqueItems.cs @@ -68,1381 +68,1384 @@ namespace DiIiS_NA.GameServer.GSSystem.ItemsSystem public static readonly Dictionary UniqueItemStats = new Dictionary { - {1111092658, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{15f}, WeaponDamageMax = new List{20f}}}, //ItemName: Unique_Dagger_003 - {1111092662, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{38f}, WeaponDamageMax = new List{44f}}}, //ItemName: Unique_Dagger_007 - {1111092657, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.56f, 1.58f}, WeaponDamageMin = new List{108f}, WeaponDamageMax = new List{118f}}}, //ItemName: Unique_Dagger_002 - {1111092661, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.56f, 1.58f}, WeaponDamageMin = new List{156f}, WeaponDamageMax = new List{179f}}}, //ItemName: Unique_Dagger_006 - {1111092688, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{178f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Dagger_010 - {394684209, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{31f}}}, //ItemName: Unique_CeremonialDagger_003 - {394684212, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{39f}}}, //ItemName: Unique_CeremonialDagger_006 - {394684210, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{62f}, WeaponDamageMax = new List{84f}}}, //ItemName: Unique_CeremonialDagger_004 - {394684207, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{113f}, WeaponDamageMax = new List{137f}}}, //ItemName: Unique_CeremonialDagger_001 - {394684208, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{190f}, WeaponDamageMax = new List{219f}}}, //ItemName: Unique_CeremonialDagger_002 - {394684214, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{219f}, WeaponDamageMax = new List{251f}}}, //ItemName: Unique_CeremonialDagger_008 - {608242228, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{25f}, WeaponDamageMax = new List{28f}}}, //ItemName: Unique_Sword_1H_017 - {608242190, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{53f}}}, //ItemName: Unique_Sword_1H_002 - {608242222, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{62f}, WeaponDamageMax = new List{74f}}}, //ItemName: Unique_Sword_1H_011 - {608242191, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.44f, 1.46f}, WeaponDamageMin = new List{741f}, WeaponDamageMax = new List{81f}}}, //ItemName: Unique_Sword_1H_003 - {608242225, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{137f}, WeaponDamageMax = new List{151f}}}, //ItemName: Unique_Sword_1H_014 - {608242192, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{151f}, WeaponDamageMax = new List{181f}}}, //ItemName: Unique_Sword_1H_004 - {608242230, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.46f, 1.47f}, WeaponDamageMin = new List{181f}, WeaponDamageMax = new List{210f}}}, //ItemName: Unique_Sword_1H_019 - {608242195, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{181f}, WeaponDamageMax = new List{210f}}}, //ItemName: Unique_Sword_1H_007 - {608242223, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{210f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Sword_1H_012 - {647377583, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{23f}, WeaponDamageMax = new List{28f}}}, //ItemName: Unique_Sword_2H_002 - {647377616, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{42f}, WeaponDamageMax = new List{53f}}}, //ItemName: Unique_Sword_2H_012 - {647377585, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{62f}, WeaponDamageMax = new List{75f}}}, //ItemName: Unique_Sword_2H_004 - {647377615, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{127f}, WeaponDamageMax = new List{172f}}}, //ItemName: Unique_Sword_2H_011 - {647377588, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{216f}, WeaponDamageMax = new List{269f}}}, //ItemName: Unique_Sword_2H_007 - {647377589, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{269f}, WeaponDamageMax = new List{367f}}}, //ItemName: Unique_Sword_2H_008 - {647377614, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{367f}, WeaponDamageMax = new List{433f}}}, //ItemName: Unique_Sword_2H_010 - {647377582, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{367f}, WeaponDamageMax = new List{433f}}}, //ItemName: Unique_Sword_2H_001 - {647377584, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{433f}, WeaponDamageMax = new List{512f}}}, //ItemName: Unique_Sword_2H_003 - {-219046946, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{12f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Axe_1H_003 - {-219046942, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{27f}, WeaponDamageMax = new List{31f}}}, //ItemName: Unique_Axe_1H_007 - {-219046945, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.34f, 1.35f}, WeaponDamageMin = new List{57f}, WeaponDamageMax = new List{70f}}}, //ItemName: Unique_Axe_1H_004 - {-219046948, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{86f}, WeaponDamageMax = new List{101f}}}, //ItemName: Unique_Axe_1H_001 - {-219046943, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{177f}, WeaponDamageMax = new List{207f}}}, //ItemName: Unique_Axe_1H_006 - {-219046944, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{207f}, WeaponDamageMax = new List{239f}}}, //ItemName: Unique_Axe_1H_005 - {-179911553, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{23f}, WeaponDamageMax = new List{32f}}}, //ItemName: Unique_Axe_2H_003 - {-179911555, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{57f}, WeaponDamageMax = new List{74f}}}, //ItemName: Unique_Axe_2H_001 - {-179911522, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{230f}, WeaponDamageMax = new List{313f}}}, //ItemName: Unique_Axe_2H_011 - {-179911523, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{400f}, WeaponDamageMax = new List{475f}}}, //ItemName: Unique_Axe_2H_010 - {-179911547, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{400f}, WeaponDamageMax = new List{475f}}}, //ItemName: Unique_Axe_2H_009 - {713325109, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{28f}, WeaponDamageMax = new List{34f}}}, //ItemName: Unique_Mace_1H_002 - {713325108, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.25f, 1.26f}, WeaponDamageMin = new List{44f}, WeaponDamageMax = new List{52f}}}, //ItemName: Unique_Mace_1H_001 - {713325112, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{62f}, WeaponDamageMax = new List{73f}}}, //ItemName: Unique_Mace_1H_005 - {713325114, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.24f, 1.25f}, WeaponDamageMin = new List{85f}, WeaponDamageMax = new List{102f}}}, //ItemName: Unique_Mace_1H_007 - {713325110, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{125f}, WeaponDamageMax = new List{138f}}}, //ItemName: Unique_Mace_1H_003 - {713325115, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{193f}, WeaponDamageMax = new List{237f}}}, //ItemName: Unique_Mace_1H_008 - {713325116, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{237f}, WeaponDamageMax = new List{274f}}}, //ItemName: Unique_Mace_1H_009 - {713325141, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{274f}, WeaponDamageMax = new List{318f}}}, //ItemName: Unique_Mace_1H_011 - {752460503, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{20f}, WeaponDamageMax = new List{25f}}}, //ItemName: Unique_Mace_2H_003 - {752460501, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{38f}, WeaponDamageMax = new List{45f}}}, //ItemName: Unique_Mace_2H_001 - {752460535, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{56f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Mace_2H_012 - {752460533, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{99f}, WeaponDamageMax = new List{118f}}}, //ItemName: Unique_Mace_2H_010 - {752460506, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{197f}, WeaponDamageMax = new List{249f}}}, //ItemName: Unique_Mace_2H_006 - {752460502, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{316f}, WeaponDamageMax = new List{438f}}}, //ItemName: Unique_Mace_2H_002 - {752460509, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{518f}, WeaponDamageMax = new List{613f}}}, //ItemName: Unique_Mace_2H_009 - {1031587767, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Polearm_002 - {1031587769, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{70f}}}, //ItemName: Unique_Polearm_004 - {1031587768, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{305f}, WeaponDamageMax = new List{356f}}}, //ItemName: Unique_Polearm_003 - {1031587766, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{499f}, WeaponDamageMax = new List{590f}}}, //ItemName: Unique_Polearm_001 - {-1980403708, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{19f}, WeaponDamageMax = new List{25f}}}, //ItemName: Unique_Spear_004 - {-1980403711, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{61f}, WeaponDamageMax = new List{85f}}}, //ItemName: Unique_Spear_001 - {-1980403710, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{152f}, WeaponDamageMax = new List{178f}}}, //ItemName: Unique_Spear_002 - {-1980403709, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{268f}, WeaponDamageMax = new List{311f}}}, //ItemName: Unique_Spear_003 - {513724850, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{15f}, WeaponDamageMax = new List{20f}}}, //ItemName: Unique_Bow_005 - {513724852, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.44f, 1.46f}, WeaponDamageMin = new List{29f}, WeaponDamageMax = new List{34f}}}, //ItemName: Unique_Bow_007 - {513724853, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{44f}, WeaponDamageMax = new List{55f}}}, //ItemName: Unique_Bow_008 - {513724846, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{75f}, WeaponDamageMax = new List{91f}}}, //ItemName: Unique_Bow_001 - {513724883, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{141f}, WeaponDamageMax = new List{172f}}}, //ItemName: Unique_Bow_015 - {513724878, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{275f}, WeaponDamageMax = new List{322f}}}, //ItemName: Unique_Bow_010 - {513724854, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{322f}, WeaponDamageMax = new List{376f}}}, //ItemName: Unique_Bow_009 - {1183779307, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_XBow_006 - {1183779302, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{33f}, WeaponDamageMax = new List{37f}}}, //ItemName: Unique_XBow_001 - {1183779335, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{77f}, WeaponDamageMax = new List{103f}}}, //ItemName: Unique_XBow_011 - {1183779305, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.14f, 1.16f}, WeaponDamageMin = new List{225f}, WeaponDamageMax = new List{281f}}}, //ItemName: Unique_XBow_004 - {1183779336, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{281f}, WeaponDamageMax = new List{358f}}}, //ItemName: Unique_XBow_012 - {1183779303, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{358f}, WeaponDamageMax = new List{424f}}}, //ItemName: Unique_XBow_002 - {1183779304, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{424f}, WeaponDamageMax = new List{501f}}}, //ItemName: Unique_XBow_003 - {515789447, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{38f}, WeaponDamageMax = new List{44f}}}, //ItemName: Unique_HandXBow_007 - {515789446, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{50f}, WeaponDamageMax = new List{66f}}}, //ItemName: Unique_HandXBow_006 - {515789445, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.66f, 1.68f}, WeaponDamageMin = new List{139f}, WeaponDamageMax = new List{154f}}}, //ItemName: Unique_HandXBow_005 - {515789444, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{154f}, WeaponDamageMax = new List{170f}}}, //ItemName: Unique_HandXBow_004 - {515789475, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{196f}, WeaponDamageMax = new List{225}}}, //ItemName: Unique_HandXBow_012 - {1801986933, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{36f}}}, //ItemName: Unique_Mighty_1H_006 - {1801986962, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{83f}, WeaponDamageMax = new List{118f}}}, //ItemName: Unique_Mighty_1H_012 - {1801986928, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{118f}, WeaponDamageMax = new List{153f}}}, //ItemName: Unique_Mighty_1H_001 - {1801986932, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{239f}, WeaponDamageMax = new List{278f}}}, //ItemName: Unique_Mighty_1H_005 - {1841122355, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{31f}}}, //ItemName: Unique_Mighty_2H_012 - {1841122324, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{36f}, WeaponDamageMax = new List{55f}}}, //ItemName: Unique_Mighty_2H_004 - {1841122321, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{153f}, WeaponDamageMax = new List{207f}}}, //ItemName: Unique_Mighty_2H_001 - {1841122326, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{239f}, WeaponDamageMax = new List{278f}}}, //ItemName: Unique_Mighty_2H_006 - {-840690589, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{7f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Fist_008 - {-840690594, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{20f}, WeaponDamageMax = new List{29f}}}, //ItemName: Unique_Fist_003 - {-840690590, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{29f}, WeaponDamageMax = new List{39f}}}, //ItemName: Unique_Fist_007 - {-840690561, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{46f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Fist_013 - {-840690562, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{81f}, WeaponDamageMax = new List{106f}}}, //ItemName: Unique_Fist_012 - {-840690593, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{106f}, WeaponDamageMax = new List{130f}}}, //ItemName: Unique_Fist_004 - {-840690592, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{130f}, WeaponDamageMax = new List{157f}}}, //ItemName: Unique_Fist_005 - {-840690591, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{181f}, WeaponDamageMax = new List{232f}}}, //ItemName: Unique_Fist_006 - {-840690588, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{232f}, WeaponDamageMax = new List{243f}}}, //ItemName: Unique_Fist_009 - {-326857814, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{22f}}}, //ItemName: Unique_CombatStaff_2H_002 - {-326857808, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.13f, 1.14f}, WeaponDamageMin = new List{28f}, WeaponDamageMax = new List{42f}}}, //ItemName: Unique_CombatStaff_2H_008 - {-326857811, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.13f, 1.14f}, WeaponDamageMin = new List{67f}, WeaponDamageMax = new List{98f}}}, //ItemName: Unique_CombatStaff_2H_005 - {-326857809, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{98f}, WeaponDamageMax = new List{145f}}}, //ItemName: Unique_CombatStaff_2H_007 - {-326857813, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{177f}, WeaponDamageMax = new List{221f}}}, //ItemName: Unique_CombatStaff_2H_003 - {-326857812, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{375f}, WeaponDamageMax = new List{442f}}}, //ItemName: Unique_CombatStaff_2H_004 - {-326857807, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{442f}, WeaponDamageMax = new List{522f}}}, //ItemName: Unique_CombatStaff_2H_009 - {300184993, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{51f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Staff_008 - {300184987, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{67f}, WeaponDamageMax = new List{76f}}}, //ItemName: Unique_Staff_002 - {300184986, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{121f}, WeaponDamageMax = new List{139f}}}, //ItemName: Unique_Staff_001 - {300184991, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{237f}, WeaponDamageMax = new List{276f}}}, //ItemName: Unique_Staff_006 - {300184988, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{320f}, WeaponDamageMax = new List{409f}}}, //ItemName: Unique_Staff_003 - {300184992, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{409f}, WeaponDamageMax = new List{484f}}}, //ItemName: Unique_Staff_007 - {300184994, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{484f}, WeaponDamageMax = new List{572f}}}, //ItemName: Unique_Staff_009 - {161873426, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{29f}, WeaponDamageMax = new List{41f}}}, //ItemName: Unique_Wand_003 - {161873429, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{48f}}}, //ItemName: Unique_Wand_006 - {161873425, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{116f}, WeaponDamageMax = new List{127f}}}, //ItemName: Unique_Wand_002 - {161873456, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{153f}, WeaponDamageMax = new List{177f}}}, //ItemName: Unique_Wand_010 - {161873432, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{177f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Wand_009 - {161873459, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{177f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Wand_013 - {1638662956, new UniqueItemLayout{ Armor = new List{54f, 72f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_001 - {1638662957, new UniqueItemLayout{ Armor = new List{72f, 90f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_002 - {1638662962, new UniqueItemLayout{ Armor = new List{186f, 225f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_007 - {1638662959, new UniqueItemLayout{ Armor = new List{225f, 247f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_004 - {1638662958, new UniqueItemLayout{ Armor = new List{322f, 360f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_003 - {1638662961, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_006 - {1638662989, new UniqueItemLayout{ Armor = new List{414f, 457f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_011 - {880593690, new UniqueItemLayout{ Armor = new List{42f, 56f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_014 - {880593655, new UniqueItemLayout{ Armor = new List{56f, 70f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_002 - {880593654, new UniqueItemLayout{ Armor = new List{88f, 107f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_001 - {880593656, new UniqueItemLayout{ Armor = new List{107f, 126f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_003 - {880593660, new UniqueItemLayout{ Armor = new List{192f, 210f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_007 - {880593687, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_011 - {261789229, new UniqueItemLayout{ Armor = new List{7f, 16f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_010 - {261789205, new UniqueItemLayout{ Armor = new List{44f, 57f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_009 - {261789197, new UniqueItemLayout{ Armor = new List{107f, 130f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_001 - {261789201, new UniqueItemLayout{ Armor = new List{154f, 175f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_005 - {261789204, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_008 - {261789203, new UniqueItemLayout{ Armor = new List{322f, 356f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_007 - {-660622994, new UniqueItemLayout{ Armor = new List{14f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_002 - {-660622987, new UniqueItemLayout{ Armor = new List{34f, 44f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_009 - {-660622992, new UniqueItemLayout{ Armor = new List{54f, 67f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_004 - {-660622963, new UniqueItemLayout{ Armor = new List{68f, 88f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_010 - {-660622995, new UniqueItemLayout{ Armor = new List{108f, 127f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_001 - {-660622988, new UniqueItemLayout{ Armor = new List{150f, 165f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_008 - {-660622993, new UniqueItemLayout{ Armor = new List{165f, 179f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_003 - {-660622991, new UniqueItemLayout{ Armor = new List{240f, 265f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_005 - {955538488, new UniqueItemLayout{ Armor = new List{16f, 25f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_004 - {955538490, new UniqueItemLayout{ Armor = new List{41f, 48f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_006 - {955538487, new UniqueItemLayout{ Armor = new List{63f, 75f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_003 - {955538489, new UniqueItemLayout{ Armor = new List{125f, 137f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_005 - {955538486, new UniqueItemLayout{ Armor = new List{158f, 178f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_002 - {955538485, new UniqueItemLayout{ Armor = new List{200f, 220f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_001 - {955538491, new UniqueItemLayout{ Armor = new List{230f, 253f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_007 - {172016991, new UniqueItemLayout{ Armor = new List{51f, 69f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_012 - {172016997, new UniqueItemLayout{ Armor = new List{87f, 108f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_018 - {172016989, new UniqueItemLayout{ Armor = new List{138f, 168f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_010 - {172016962, new UniqueItemLayout{ Armor = new List{247f, 270f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_006 - {172016957, new UniqueItemLayout{ Armor = new List{322f, 360f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_001 - {172016998, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_019 - {172016958, new UniqueItemLayout{ Armor = new List{414f, 457f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_002 - {903144210, new UniqueItemLayout{ Armor = new List{33f, 38f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_007 - {903144205, new UniqueItemLayout{ Armor = new List{162f, 191f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_002 - {903144204, new UniqueItemLayout{ Armor = new List{217f, 246f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_001 - {903144208, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_005 - {903144209, new UniqueItemLayout{ Armor = new List{414f, 457f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_006 - {238734028, new UniqueItemLayout{ Armor = new List{144f, 165f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_001 - {238734029, new UniqueItemLayout{ Armor = new List{200f, 220f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_002 - {238734034, new UniqueItemLayout{ Armor = new List{320f, 350f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_007 - {238734030, new UniqueItemLayout{ Armor = new List{368f, 403f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_003 - {1109225230, new UniqueItemLayout{ Armor = new List{36f, 41f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_005 - {1109225229, new UniqueItemLayout{ Armor = new List{60f, 80f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_004 - {1109225227, new UniqueItemLayout{ Armor = new List{126f, 149f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_002 - {1109225228, new UniqueItemLayout{ Armor = new List{186f, 224f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_003 - {1109225226, new UniqueItemLayout{ Armor = new List{225f, 254f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_001 - {1109225231, new UniqueItemLayout{ Armor = new List{255f, 284f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_006 - {1109225232, new UniqueItemLayout{ Armor = new List{322f, 359f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_007 - {1109225233, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_008 - {270555853, new UniqueItemLayout{ Armor = new List{36f, 41f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_006 - {270555852, new UniqueItemLayout{ Armor = new List{84f, 97f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_005 - {270555848, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_001 - {270555849, new UniqueItemLayout{ Armor = new List{255f, 284f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_002 - {270555855, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_008 - {703827190, new UniqueItemLayout{ Armor = new List{150f, 185f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_003 - {703827188, new UniqueItemLayout{ Armor = new List{285f, 322f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_001 - {703827191, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_004 - {-1838235536, new UniqueItemLayout{ Armor = new List{87f, 108f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_001 - {-1838235532, new UniqueItemLayout{ Armor = new List{225f, 247f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_005 - {-1838235535, new UniqueItemLayout{ Armor = new List{414f, 457f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_002 - {-1303630777, new UniqueItemLayout{ Armor = new List{53f, 61f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_004 - {-1303630775, new UniqueItemLayout{ Armor = new List{74f, 101f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_006 - {-1303630774, new UniqueItemLayout{ Armor = new List{101f, 133f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_007 - {-1303630779, new UniqueItemLayout{ Armor = new List{165f, 199f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_002 - {-1303630780, new UniqueItemLayout{ Armor = new List{206f, 226f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_001 - {-1303630778, new UniqueItemLayout{ Armor = new List{226f, 252f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_003 - {-1303630773, new UniqueItemLayout{ Armor = new List{286f, 318f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_008 - {-1303630776, new UniqueItemLayout{ Armor = new List{329f, 368f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_005 - {1801986960, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{207f}, WeaponDamageMax = new List{239f}}}, //ItemName: Unique_Mighty_1H_010 - {1801986961, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{207f}, WeaponDamageMax = new List{239f}}}, //ItemName: Unique_Mighty_1H_011 - {515789441, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{196f}, WeaponDamageMax = new List{225f}}}, //ItemName: Unique_HandXBow_001 - {515789442, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{196f}, WeaponDamageMax = new List{225f}}}, //ItemName: Unique_HandXBow_002 - {161873458, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{177f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Wand_012 - {-840690564, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{181f}, WeaponDamageMax = new List{232f}}}, //ItemName: Unique_Fist_010 - {-840690563, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{181f}, WeaponDamageMax = new List{232f}}}, //ItemName: Unique_Fist_011 - {394684215, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{190f}, WeaponDamageMax = new List{219f}}}, //ItemName: Unique_CeremonialDagger_009 - {1638662964, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_009 - {515789443, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{196f}, WeaponDamageMax = new List{225f}}}, //ItemName: Unique_HandXBow_003 - {-1838235531, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_006 - {261789230, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_011 - {1638662963, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_008 - {1841122353, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{207f}, WeaponDamageMax = new List{239f}}}, //ItemName: Unique_Mighty_2H_010 - {172016992, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_013 - {-1303630772, new UniqueItemLayout{ Armor = new List{286f, 320f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_009 - {880593661, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_008 - {261789231, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_012 - {1638662988, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_010 - {172016993, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_014 - {-660622990, new UniqueItemLayout{ Armor = new List{240f, 265f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_006 - {1109225234, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_009 - {-326857815, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{375f}, WeaponDamageMax = new List{442f}}}, //ItemName: Unique_CombatStaff_2H_001 - {172016994, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_015 - {-660622989, new UniqueItemLayout{ Armor = new List{240f, 265f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_007 - {903144211, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_008 - {270555854, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_007 - {172016995, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_016 - {261789232, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_013 - {261789238, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_019 - {1262779559, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_ChestArmor_028 - {-660622958, new UniqueItemLayout{ Armor = new List{240f, 265f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_015 - {903144239, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_013 - {172017027, new UniqueItemLayout{ Armor = new List{69f, 86f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_025 - {238734033, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_006 - {608242229, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{24f}, WeaponDamageMax = new List{27f}}}, //ItemName: Unique_Sword_1H_018 - {1638662990, new UniqueItemLayout{ Armor = new List{72f, 89f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_012 - {903144236, new UniqueItemLayout{ Armor = new List{63f, 77f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_010 - {880593691, new UniqueItemLayout{ Armor = new List{56f, 70f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_015 - {261789234, new UniqueItemLayout{ Armor = new List{58f, 66f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_015 - {261789236, new UniqueItemLayout{ Armor = new List{67f, 82f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_017 - {-660622961, new UniqueItemLayout{ Armor = new List{68f, 87f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_012 - {903144238, new UniqueItemLayout{ Armor = new List{102f, 131f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_012 - {238734035, new UniqueItemLayout{ Armor = new List{144f, 165f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_008 - {955538493, new UniqueItemLayout{ Armor = new List{90f, 102f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_009 - {172017028, new UniqueItemLayout{ Armor = new List{168f, 191f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_026 - {1638662992, new UniqueItemLayout{ Armor = new List{162f, 185f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_014 - {238734067, new UniqueItemLayout{ Armor = new List{200f, 220f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_017 - {880593662, new UniqueItemLayout{ Armor = new List{175f, 192f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_009 - {903144212, new UniqueItemLayout{ Armor = new List{217f, 246f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_009 - {261789233, new UniqueItemLayout{ Armor = new List{169f, 191f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_014 - {955538517, new UniqueItemLayout{ Armor = new List{137f, 149f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_010 - {-660622960, new UniqueItemLayout{ Armor = new List{165f, 179f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_013 - {1638662993, new UniqueItemLayout{ Armor = new List{247f, 269f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_015 - {172017029, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_027 - {-660622959, new UniqueItemLayout{ Armor = new List{240f, 265f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_014 - {903144240, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_014 - {238734036, new UniqueItemLayout{ Armor = new List{320f, 350f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_009 - {955538518, new UniqueItemLayout{ Armor = new List{200f, 220f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_011 - {880593693, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_017 - {261789237, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_018 - {1638662994, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_016 - {1801986965, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{207f}, WeaponDamageMax = new List{239f}}}, //ItemName: Unique_Mighty_1H_015 - {161873464, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{177f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Wand_018 - {394684240, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{190f}, WeaponDamageMax = new List{219f}}}, //ItemName: Unique_CeremonialDagger_011 - {515789479, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{196f}, WeaponDamageMax = new List{225f}}}, //ItemName: Unique_HandXBow_016 - {-840690559, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{181f}, WeaponDamageMax = new List{232f}}}, //ItemName: Unique_Fist_015 - {-219046913, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{207f}, WeaponDamageMax = new List{239f}}}, //ItemName: Unique_Axe_1H_013 - {1111092663, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{20f}, WeaponDamageMax = new List{23f}}}, //ItemName: Unique_Dagger_008 - {-1817947684, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Offhand_001 //actually dagger - {608242189, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Sword_1H_001 - {608242221, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{20f}, WeaponDamageMax = new List{25f}}}, //ItemName: Unique_Sword_1H_010 - {608242255, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{39f}}}, //ItemName: Unique_Sword_1H_021 - {647377618, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{367f}, WeaponDamageMax = new List{433f}}}, //ItemName: Unique_Sword_2H_014 - {713325140, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{23f}, WeaponDamageMax = new List{28f}}}, //ItemName: Unique_Mace_1H_010 - {-64652480, new UniqueItemLayout{ Armor = new List{960f, 1060f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_002 - {-64652478, new UniqueItemLayout{ Armor = new List{580f, 620f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_004 - {-64652475, new UniqueItemLayout{ Armor = new List{320f, 384f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_007 - {-64652474, new UniqueItemLayout{ Armor = new List{660f, 700f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_008 - {-64652473, new UniqueItemLayout{ Armor = new List{1104f, 1219f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_009 - {-64652448, new UniqueItemLayout{ Armor = new List{200f, 224f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_009 - {-2077069550, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Dagger_003_1xx - {-2072325866, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Dagger_007_1xx - {-2078255471, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{36f}, WeaponDamageMax = new List{108f}}}, //ItemName: Unique_Dagger_002_1xx - {-2073511787, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{52f}, WeaponDamageMax = new List{156f}}}, //ItemName: Unique_Dagger_006_1xx - {-2041491920, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{67f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Dagger_010_1xx - {-2071139945, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Dagger_008_1xx - {-1893279684, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Offhand_001_1xx - {-1240625135, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{24f}}}, //ItemName: Unique_CeremonialDagger_003_1xx - {-1237067372, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{35f}}}, //ItemName: Unique_CeremonialDagger_006_1xx - {-1239439214, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{18f}, WeaponDamageMax = new List{71f}}}, //ItemName: Unique_CeremonialDagger_004_1xx - {-1242996977, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{129f}}}, //ItemName: Unique_CeremonialDagger_001_1xx - {-1241811056, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{54f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_CeremonialDagger_002_1xx - {-1234695530, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{71f}, WeaponDamageMax = new List{288f}}}, //ItemName: Unique_CeremonialDagger_008_1xx - {-1233509609, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{71f}, WeaponDamageMax = new List{288f}}}, //ItemName: Unique_CeremonialDagger_009_1xx - {-1203861584, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{71f}, WeaponDamageMax = new List{288f}}}, //ItemName: Unique_CeremonialDagger_011_1xx - {362282132, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{12f}, WeaponDamageMax = new List{28f}}}, //ItemName: Unique_Sword_1H_017_1xx - {317217134, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{48f}}}, //ItemName: Unique_Sword_1H_002_1xx - {318403055, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{73f}}}, //ItemName: Unique_Sword_1H_003_1xx - {358724369, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{65f}, WeaponDamageMax = new List{151f}}}, //ItemName: Unique_Sword_1H_014_1xx - {319588976, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{65f}, WeaponDamageMax = new List{151f}}}, //ItemName: Unique_Sword_1H_004_1xx - {364653974, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{78f}, WeaponDamageMax = new List{181f}}}, //ItemName: Unique_Sword_1H_019_1xx - {323146739, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{90f}, WeaponDamageMax = new List{210f}}}, //ItemName: Unique_Sword_1H_007_1xx - {355166606, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Sword_1H_011_1xx - {356352527, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Sword_1H_012_1xx - {363468053, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{14f}, WeaponDamageMax = new List{32f}}}, //ItemName: Unique_Sword_1H_018_1xx - {316031213, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Sword_1H_001_1xx - {353980685, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Sword_1H_010_1xx - {394301999, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{39f}}}, //ItemName: Unique_Sword_1H_021_1xx - {385018511, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{24f}}}, //ItemName: Unique_Sword_2H_002_1xx - {424153904, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{45f}}}, //ItemName: Unique_Sword_2H_012_1xx - {387390353, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{46f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Sword_2H_004_1xx - {422967983, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{93f}, WeaponDamageMax = new List{137f}}}, //ItemName: Unique_Sword_2H_011_1xx - {390948116, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{158f}, WeaponDamageMax = new List{234f}}}, //ItemName: Unique_Sword_2H_007_1xx - {392134037, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{269f}, WeaponDamageMax = new List{399f}}}, //ItemName: Unique_Sword_2H_008_1xx - {386204432, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{317f}, WeaponDamageMax = new List{471f}}}, //ItemName: Unique_Sword_2H_003_1xx - {421782062, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{374f}, WeaponDamageMax = new List{556f}}}, //ItemName: Unique_Sword_2H_010_1xx - {383832590, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{374f}, WeaponDamageMax = new List{556f}}}, //ItemName: Unique_Sword_2H_001_1xx - {426525746, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{93f}, WeaponDamageMax = new List{137f}}}, //ItemName: Unique_Sword_2H_014_1xx - {137188158, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{7f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_Axe_1H_003_1xx - {138374079, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{57f}}}, //ItemName: Unique_Axe_1H_004_1xx - {134816316, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{47f}, WeaponDamageMax = new List{86f}}}, //ItemName: Unique_Axe_1H_001_1xx - {140745921, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{96f}, WeaponDamageMax = new List{177f}}}, //ItemName: Unique_Axe_1H_006_1xx - {141931842, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{129f}, WeaponDamageMax = new List{238f}}}, //ItemName: Unique_Axe_1H_007_1xx - {139560000, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{149f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_Axe_1H_005_1xx - {176323551, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{149f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_Axe_1H_013_1xx - {204989535, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{24f}}}, //ItemName: Unique_Axe_2H_003_1xx - {202617693, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{52f}, WeaponDamageMax = new List{61f}}}, //ItemName: Unique_Axe_2H_001_1xx - {241753086, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{285f}, WeaponDamageMax = new List{422f}}}, //ItemName: Unique_Axe_2H_011_1xx //minmaxpredef - {240567165, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{363f}, WeaponDamageMax = new List{437f}}}, //ItemName: Unique_Axe_2H_010_1xx - {212105061, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{507f}, WeaponDamageMax = new List{613f}}}, //ItemName: Unique_Axe_2H_009_1xx - {1881507093, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{30f}}}, //ItemName: Unique_Mace_1H_002_1xx - {1885064856, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{37f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Mace_1H_005_1xx - {1887436698, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{50f}, WeaponDamageMax = new List{92f}}}, //ItemName: Unique_Mace_1H_007_1xx - {1882693014, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{75f}, WeaponDamageMax = new List{135f}}}, //ItemName: Unique_Mace_1H_003_1xx - {1888622619, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{113f}, WeaponDamageMax = new List{208f}}}, //ItemName: Unique_Mace_1H_008_1xx - {1889808540, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{139f}, WeaponDamageMax = new List{258f}}}, //ItemName: Unique_Mace_1H_009_1xx - {1880321172, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{160f}, WeaponDamageMax = new List{296f}}}, //ItemName: Unique_Mace_1H_001_1xx - {1919456565, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{186f}, WeaponDamageMax = new List{344f}}}, //ItemName: Unique_Mace_1H_011_1xx - {1918270644, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Mace_1H_010_1xx - {1950494391, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{22f}, WeaponDamageMax = new List{23f}}}, //ItemName: Unique_Mace_2H_003_1xx - {1948122549, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{43f}}}, //ItemName: Unique_Mace_2H_001_1xx - {1988443863, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{60f}, WeaponDamageMax = new List{64f}}}, //ItemName: Unique_Mace_2H_012_1xx - {1986072021, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{106f}, WeaponDamageMax = new List{113f}}}, //ItemName: Unique_Mace_2H_010_1xx - {1954052154, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{211f}, WeaponDamageMax = new List{226f}}}, //ItemName: Unique_Mace_2H_006_1xx - {1949308470, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{551f}, WeaponDamageMax = new List{601f}}}, //ItemName: Unique_Mace_2H_002_1xx - {1957609917, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{651f}, WeaponDamageMax = new List{712f}}}, //ItemName: Unique_Mace_2H_009_1xx - {-1179860073, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{36f}}}, //ItemName: Unique_Polearm_002_1xx - {-1177488231, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{56f}, WeaponDamageMax = new List{66f}}}, //ItemName: Unique_Polearm_004_1xx - {-1178674152, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{340f}, WeaponDamageMax = new List{409f}}}, //ItemName: Unique_Polearm_003_1xx - {-1181045994, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{562f}, WeaponDamageMax = new List{680f}}}, //ItemName: Unique_Polearm_001_1xx - {1739246180, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Spear_004_1xx - {1735688417, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Spear_001_1xx - {1736874338, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{180f}, WeaponDamageMax = new List{267f}}}, //ItemName: Unique_Spear_002_1xx - {1738060259, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{209f}, WeaponDamageMax = new List{310f}}}, //ItemName: Unique_Spear_003_1xx - {275338002, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Bow_005_1xx - {277709844, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{35f}}}, //ItemName: Unique_Bow_007_1xx - {278895765, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{12f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Bow_008_1xx - {270594318, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{16f}, WeaponDamageMax = new List{91f}}}, //ItemName: Unique_Bow_001_1xx - {314473395, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{30f}, WeaponDamageMax = new List{171f}}}, //ItemName: Unique_Bow_015_1xx - {308543790, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{335f}}}, //ItemName: Unique_Bow_010_1xx - {280081686, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{80f}, WeaponDamageMax = new List{458f}}}, //ItemName: Unique_Bow_009_1xx - {-1447231541, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_XBow_006_1xx - {-1453161146, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{27f}, WeaponDamageMax = new List{32f}}}, //ItemName: Unique_XBow_001_1xx - {-1414025753, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{64f}, WeaponDamageMax = new List{75f}}}, //ItemName: Unique_XBow_011_1xx - {-1449603383, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{161f}, WeaponDamageMax = new List{192f}}}, //ItemName: Unique_XBow_004_1xx - {-1412839832, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{233f}, WeaponDamageMax = new List{278f}}}, //ItemName: Unique_XBow_012_1xx - {-1451975225, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{296f}, WeaponDamageMax = new List{355f}}}, //ItemName: Unique_XBow_002_1xx - {-1450789304, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{413f}, WeaponDamageMax = new List{498f}}}, //ItemName: Unique_XBow_003_1xx - {591732198, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1,60f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{64f}}}, //ItemName: Unique_HandXBow_006_1xx - {590546277, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{26f}, WeaponDamageMax = new List{148f}}}, //ItemName: Unique_HandXBow_005_1xx - {589360356, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{181f}}}, //ItemName: Unique_HandXBow_004_1xx - {592918119, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{42f}, WeaponDamageMax = new List{240f}}}, //ItemName: Unique_HandXBow_007_1xxx - {626123907, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_005_1xx - {585802593, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_001_1xx - {586988514, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_002_1xx - {588174435, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_003_1xx - {630867591, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_016_1xx - {1631309397, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{31f}}}, //ItemName: Unique_Mighty_1H_006_1xx - {1665701106, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{45f}, WeaponDamageMax = new List{82f}}}, //ItemName: Unique_Mighty_1H_012_1xx - {1625379792, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{83f}, WeaponDamageMax = new List{153f}}}, //ItemName: Unique_Mighty_1H_001_1xx - {1663329264, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_010_1xx - {1630123476, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_005_1xx - {1664515185, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_011_1xx - {1669258869, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_015_1xx - {1733502483, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{35f}, WeaponDamageMax = new List{37f}}}, //ItemName: Unique_Mighty_2H_012_1xx - {1696738932, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{62f}}}, //ItemName: Unique_Mighty_2H_004_1xx - {1731130641, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{531f}, WeaponDamageMax = new List{579f}}}, //ItemName: Unique_Mighty_2H_010_1xx - {1693181169, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{381f}, WeaponDamageMax = new List{414f}}}, //ItemName: Unique_Mighty_2H_001_1xx - {1699110774, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{531f}, WeaponDamageMax = new List{579f}}}, //ItemName: Unique_Mighty_2H_006_1xx - {-1868035138, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{20f}}}, //ItemName: Unique_Fist_003_1xx - {-1863291454, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{29f}}}, //ItemName: Unique_Fist_007_1xx - {-1828899745, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{26f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Fist_013_1xx - {-1830085666, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{26f}, WeaponDamageMax = new List{148f}}}, //ItemName: Unique_Fist_012_1xx - {-1866849217, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{46f}, WeaponDamageMax = new List{106f}}}, //ItemName: Unique_Fist_004_1xx - {-1865663296, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{56f}, WeaponDamageMax = new List{130f}}}, //ItemName: Unique_Fist_005_1xx - {-1864477375, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{90f}, WeaponDamageMax = new List{210f}}}, //ItemName: Unique_Fist_006_1xx - {-1832457508, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_010_1xx - {-1831271587, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_011_1xx - {-1862105533, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_008_1xx - {-1860919612, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_009_1xx - {-1826527903, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_015_1xx - {1846233354, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{14f}, WeaponDamageMax = new List{25f}}}, //ItemName: Unique_CombatStaff_2H_002_1xx - {1853348880, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{27f}, WeaponDamageMax = new List{49f}}}, //ItemName: Unique_CombatStaff_2H_008_1xx - {1849791117, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{43f}, WeaponDamageMax = new List{79f}}}, //ItemName: Unique_CombatStaff_2H_005_1xx - {1852162959, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{63f}, WeaponDamageMax = new List{115f}}}, //ItemName: Unique_CombatStaff_2H_007_1xx - {1845047433, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{333f}, WeaponDamageMax = new List{616f}}}, //ItemName: Unique_CombatStaff_2H_001_1xx - {1847419275, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{113f}, WeaponDamageMax = new List{208f}}}, //ItemName: Unique_CombatStaff_2H_003_1xx - {1848605196, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{239f}, WeaponDamageMax = new List{442f}}}, //ItemName: Unique_CombatStaff_2H_004_1xx - {1854534801, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{333f}, WeaponDamageMax = new List{616f}}}, //ItemName: Unique_CombatStaff_2H_009_1xx - {-1263708543, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Staff_008_1xx - {-1270824069, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{61f}, WeaponDamageMax = new List{90f}}}, //ItemName: Unique_Staff_002_1xx - {-1272009990, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{98f}, WeaponDamageMax = new List{144f}}}, //ItemName: Unique_Staff_001_1xx - {-1266080385, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{191f}, WeaponDamageMax = new List{283f}}}, //ItemName: Unique_Staff_006_1xx - {-1269638148, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{258f}, WeaponDamageMax = new List{382f}}}, //ItemName: Unique_Staff_003_1xx - {-1264894464, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{329f}, WeaponDamageMax = new List{489f}}}, //ItemName: Unique_Staff_007_1xx - {-1262522622, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{460f}, WeaponDamageMax = new List{685f}}}, //ItemName: Unique_Staff_009_1xx - {1240444786, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{15f}, WeaponDamageMax = new List{27f}}}, //ItemName: Unique_Wand_003_1xx - {1244002549, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Wand_006_1xx - {1239258865, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{107f}}}, //ItemName: Unique_Wand_002_1xx - {1276022416, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{77f}, WeaponDamageMax = new List{142f}}}, //ItemName: Unique_Wand_010_1xx - {1247560312, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{89f}, WeaponDamageMax = new List{164f}}}, //ItemName: Unique_Wand_009_1xx - {1278394258, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{118f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_Wand_012_1xx - {1279580179, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{118f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_Wand_013_1xx - {1285509784, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{118f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_Wand_018_1xx - {1063855040, new UniqueItemLayout{ Armor = new List{200f, 233f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_011_1xx - {1031835173, new UniqueItemLayout{ Armor = new List{320f, 383f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_007_1xx - {1028277410, new UniqueItemLayout{ Armor = new List{580f, 619f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_004_1xx - {1033021094, new UniqueItemLayout{ Armor = new List{660f, 699f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_008_1xx - {1025905568, new UniqueItemLayout{ Armor = new List{860f, 959f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_002_1xx - {1034207015, new UniqueItemLayout{ Armor = new List{1060f, 1259f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_009_1xx - {1065040961, new UniqueItemLayout{ Armor = new List{1060f, 1259f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_012_1xx - {-1857638004, new UniqueItemLayout{ Armor = new List{54f, 71f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_001_1xx - {-1856452083, new UniqueItemLayout{ Armor = new List{72f, 89f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_002_1xx - {-1819688532, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_010_1xx - {-1850522478, new UniqueItemLayout{ Armor = new List{186f, 224f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_007_1xx - {-1854080241, new UniqueItemLayout{ Armor = new List{225f, 247f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_004_1xx - {-1855266162, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_003_1xx - {-1818502611, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_011_1xx - {-1851708399, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_006_1xx - {-1848150636, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_009_1xx - {-1849336557, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_008_1xx - {-1814944848, new UniqueItemLayout{ Armor = new List{289f, 402f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_014_1xx - {-1817316690, new UniqueItemLayout{ Armor = new List{72f, 89f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_012_1xx - {-1813758927, new UniqueItemLayout{ Armor = new List{247f, 269f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_015_1xx - {-1812573006, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_016_1xx - {1844822138, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_014_1xx - {1802128982, new UniqueItemLayout{ Armor = new List{88f, 106f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_001_1xx - {1809244508, new UniqueItemLayout{ Armor = new List{192f, 209f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_007_1xx - {1841264375, new UniqueItemLayout{ Armor = new List{250f, 278f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_011_1xx - {1803314903, new UniqueItemLayout{ Armor = new List{280f, 308f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_002_1xx - {1804500824, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_003_1xx - {1810430429, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_008_1xx - {1846008059, new UniqueItemLayout{ Armor = new List{56f, 69f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_015_1xx - {1811616350, new UniqueItemLayout{ Armor = new List{175f, 192f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_009_1xx - {1848379901, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_017_1xx - {-363274995, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_010_1xx - {-391737099, new UniqueItemLayout{ Armor = new List{44f, 57f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_009_1xx - {-362089074, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_011_1xx - {-401224467, new UniqueItemLayout{ Armor = new List{130f, 152f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_001_1xx - {-396480783, new UniqueItemLayout{ Armor = new List{192f, 209f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_005_1xx - {-394108941, new UniqueItemLayout{ Armor = new List{280f, 308f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_007_1xx - {-392923020, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_008_1xx - {-360903153, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_012_1xx - {-359717232, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_013_1xx - {-352601706, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_019_1xx - {-357345390, new UniqueItemLayout{ Armor = new List{58f, 66f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_015_1xx - {-354973548, new UniqueItemLayout{ Armor = new List{67f, 82f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_017_1xx - {-358531311, new UniqueItemLayout{ Armor = new List{175f, 192f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_014_1xx - {-353787627, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_018_1xx - {-1693732658, new UniqueItemLayout{ Armor = new List{24f, 28f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_002_1xx - {-1691360816, new UniqueItemLayout{ Armor = new List{54f, 67f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_004_1xx - {-1688988974, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_006_1xx - {-1656969107, new UniqueItemLayout{ Armor = new List{88f, 107f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_010_1xx - {-1694918579, new UniqueItemLayout{ Armor = new List{108f, 127f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_001_1xx - {-1686617132, new UniqueItemLayout{ Armor = new List{145f, 164f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_008_1xx - {-1692546737, new UniqueItemLayout{ Armor = new List{165f, 179f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_003_1xx - {-1690174895, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_005_1xx - {-1685431211, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_009_1xx - {-1687803053, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_007_1xx - {-1651039502, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_015_1xx - {-1654597265, new UniqueItemLayout{ Armor = new List{68f, 87f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_012_1xx - {-1653411344, new UniqueItemLayout{ Armor = new List{326f, 354f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_013_1xx - {-1652225423, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_014_1xx - {401387672, new UniqueItemLayout{ Armor = new List{16f, 19f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_004_1xx - {403759514, new UniqueItemLayout{ Armor = new List{41f, 48f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_006_1xx - {400201751, new UniqueItemLayout{ Armor = new List{63f, 75f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_003_1xx - {399015830, new UniqueItemLayout{ Armor = new List{158f, 178f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_002_1xx - {397829909, new UniqueItemLayout{ Armor = new List{220f, 261f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_001_1xx - {404945435, new UniqueItemLayout{ Armor = new List{200f, 220f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_007_1xx - {402573593, new UniqueItemLayout{ Armor = new List{220f, 261f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_005_1xx - {407317277, new UniqueItemLayout{ Armor = new List{175f, 247f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_009_1xx - {435779381, new UniqueItemLayout{ Armor = new List{137f, 149f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_010_1xx - {436965302, new UniqueItemLayout{ Armor = new List{220f, 261f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_011_1xx - {503797055, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_012_1xx - {510912581, new UniqueItemLayout{ Armor = new List{87f, 107f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_018_1xx - {501425213, new UniqueItemLayout{ Armor = new List{138f, 167f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_010_1xx - {463475741, new UniqueItemLayout{ Armor = new List{225f, 247f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_001_1xx - {469405346, new UniqueItemLayout{ Armor = new List{285f, 322f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_006_1xx - {512098502, new UniqueItemLayout{ Armor = new List{322f, 359f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_019_1xx - {464661662, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_002_1xx - {504982976, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_013_1xx - {506168897, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_014_1xx - {507354818, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_015_1xx - {508540739, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_016_1xx - {488992903, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_ChestArmor_028_1xx - {546490211, new UniqueItemLayout{ Armor = new List{133f, 158f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_025_1xx - {547676132, new UniqueItemLayout{ Armor = new List{295f, 414f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_026_1xx - {548862053, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_027_1xx - {218698866, new UniqueItemLayout{ Armor = new List{33f, 38f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_007_1xx - {212769261, new UniqueItemLayout{ Armor = new List{162f, 191f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_002_1xx - {211583340, new UniqueItemLayout{ Armor = new List{217f, 246f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_001_1xx - {216327024, new UniqueItemLayout{ Armor = new List{286f, 322f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_005_1xx - {217512945, new UniqueItemLayout{ Armor = new List{397f, 457f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_006_1xx - {219884787, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_008_1xx - {253090575, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_013_1xx - {249532812, new UniqueItemLayout{ Armor = new List{63f, 77f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_010_1xx - {251904654, new UniqueItemLayout{ Armor = new List{102f, 131f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_012_1xx - {221070708, new UniqueItemLayout{ Armor = new List{225f, 247f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_009_1xx - {254276496, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_014_1xx - {-248493780, new UniqueItemLayout{ Armor = new List{138f, 167f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_001_1xx - {-247307859, new UniqueItemLayout{ Armor = new List{240f, 252f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_002_1xx - {-241378254, new UniqueItemLayout{ Armor = new List{286f, 318f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_007_1xx - {-246121938, new UniqueItemLayout{ Armor = new List{353f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_003_1xx - {-242564175, new UniqueItemLayout{ Armor = new List{101f, 166f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_006_1xx - {-240192333, new UniqueItemLayout{ Armor = new List{229f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_008_1xx - {-202242861, new UniqueItemLayout{ Armor = new List{200f, 219f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_017_1xx - {-239006412, new UniqueItemLayout{ Armor = new List{353f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_009_1xx - {-496026002, new UniqueItemLayout{ Armor = new List{36f, 41f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_005_1xx - {-497211923, new UniqueItemLayout{ Armor = new List{60f, 69f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_004_1xx - {-499583765, new UniqueItemLayout{ Armor = new List{114f, 149f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_002_1xx - {-498397844, new UniqueItemLayout{ Armor = new List{186f, 232f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_003_1xx - {-500769686, new UniqueItemLayout{ Armor = new List{232f, 254f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_001_1xx - {-494840081, new UniqueItemLayout{ Armor = new List{255f, 284f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_006_1xx - {-493654160, new UniqueItemLayout{ Armor = new List{322f, 359f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_007_1xx - {-492468239, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_008_1xx - {-491282318, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_009_1xx - {-1955597907, new UniqueItemLayout{ Armor = new List{36f, 41f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_006_1xx - {-1956783828, new UniqueItemLayout{ Armor = new List{84f, 113f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_005_1xx - {-1960341591, new UniqueItemLayout{ Armor = new List{255f, 284f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_002_1xx - {-1961527512, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_001_1xx - {-1953226065, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_008_1xx - {-1954411986, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_007_1xx - {-495841194, new UniqueItemLayout{ Armor = new List{150f, 185f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_003_1xx - {-498213036, new UniqueItemLayout{ Armor = new List{285f, 322f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_001_1xx - {-494655273, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_004_1xx - {-1276219184, new UniqueItemLayout{ Armor = new List{87f, 107f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_001_1xx - {-1271475500, new UniqueItemLayout{ Armor = new List{232f, 254f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_005_1xx - {-1275033263, new UniqueItemLayout{ Armor = new List{360f, 414f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_002_1xx - {-1270289579, new UniqueItemLayout{ Armor = new List{360f, 414f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_006_1xx - {431747111, new UniqueItemLayout{ Armor = new List{53f, 61f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_004_1xx - {434118953, new UniqueItemLayout{ Armor = new List{74f, 100f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_006_1xx - {435304874, new UniqueItemLayout{ Armor = new List{101f, 132f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_007_1xx - {429375269, new UniqueItemLayout{ Armor = new List{165f, 205f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_002_1xx - {428189348, new UniqueItemLayout{ Armor = new List{352f, 385f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_001_1xx - {430561190, new UniqueItemLayout{ Armor = new List{226f, 252f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_003_1xx - {436490795, new UniqueItemLayout{ Armor = new List{286f, 318f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_008_1xx - {432933032, new UniqueItemLayout{ Armor = new List{320f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_005_1xx - {437676716, new UniqueItemLayout{ Armor = new List{320f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_009_1xx + {1111092658, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{15f}, WeaponDamageMax = new List{20f}}}, //ItemName: Unique_Dagger_003 → The Barber + {1111092662, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{38f}, WeaponDamageMax = new List{44f}}}, //ItemName: Unique_Dagger_007 → Pig Sticker + {1111092657, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.56f, 1.58f}, WeaponDamageMin = new List{108f}, WeaponDamageMax = new List{118f}}}, //ItemName: Unique_Dagger_002 → Wizardspike + {1111092661, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.56f, 1.58f}, WeaponDamageMin = new List{156f}, WeaponDamageMax = new List{179f}}}, //ItemName: Unique_Dagger_006 → Kill + {1111092688, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{178f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Dagger_010 → Eun-jang-do + {394684209, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{31f}}}, //ItemName: Unique_CeremonialDagger_003 → The Gidbinn + {394684212, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{39f}}}, //ItemName: Unique_CeremonialDagger_006 → Deadly Rebirth + {394684210, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{62f}, WeaponDamageMax = new List{84f}}}, //ItemName: Unique_CeremonialDagger_004 → The Spider Queen's Grasp + {394684207, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{113f}, WeaponDamageMax = new List{137f}}}, //ItemName: Unique_CeremonialDagger_001 → Anessazi Edge + {394684208, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{190f}, WeaponDamageMax = new List{219f}}}, //ItemName: Unique_CeremonialDagger_002 → Voo's Juicer + {394684214, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{219f}, WeaponDamageMax = new List{251f}}}, //ItemName: Unique_CeremonialDagger_008 → Starmetal Kukri + {608242228, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{25f}, WeaponDamageMax = new List{28f}}}, //ItemName: Unique_Sword_1H_017 → Devil Tongue + {608242190, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{53f}}}, //ItemName: Unique_Sword_1H_002 → Wildwood + {608242222, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{62f}, WeaponDamageMax = new List{74f}}}, //ItemName: Unique_Sword_1H_011 → Sever + {608242191, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.44f, 1.46f}, WeaponDamageMin = new List{741f}, WeaponDamageMax = new List{81f}}}, //ItemName: Unique_Sword_1H_003 → Azurewrath + {608242225, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{137f}, WeaponDamageMax = new List{151f}}}, //ItemName: Unique_Sword_1H_014 → Spectrum + {608242192, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{151f}, WeaponDamageMax = new List{181f}}}, //ItemName: Unique_Sword_1H_004 → Doombringer + {608242230, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.46f, 1.47f}, WeaponDamageMin = new List{181f}, WeaponDamageMax = new List{210f}}}, //ItemName: Unique_Sword_1H_019 → Little Rogue + {608242195, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{181f}, WeaponDamageMax = new List{210f}}}, //ItemName: Unique_Sword_1H_007 → The Ancient Bonesaber of Zumakalis + {608242223, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{210f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Sword_1H_012 → Rimeheart + {647377583, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{23f}, WeaponDamageMax = new List{28f}}}, //ItemName: Unique_Sword_2H_002 → The Zweihander + {647377616, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{42f}, WeaponDamageMax = new List{53f}}}, //ItemName: Unique_Sword_2H_012 → The Grandfather + {647377585, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{62f}, WeaponDamageMax = new List{75f}}}, //ItemName: Unique_Sword_2H_004 → Scourge + {647377615, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{127f}, WeaponDamageMax = new List{172f}}}, //ItemName: Unique_Sword_2H_011 → Faithful Memory + {647377588, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{216f}, WeaponDamageMax = new List{269f}}}, //ItemName: Unique_Sword_2H_007 → Blade of Prophecy + {647377589, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{269f}, WeaponDamageMax = new List{367f}}}, //ItemName: Unique_Sword_2H_008 → Stalgard's Decimator + {647377614, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{367f}, WeaponDamageMax = new List{433f}}}, //ItemName: Unique_Sword_2H_010 → Cam's Rebuttal + {647377582, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{367f}, WeaponDamageMax = new List{433f}}}, //ItemName: Unique_Sword_2H_001 → Blackguard + {647377584, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{433f}, WeaponDamageMax = new List{512f}}}, //ItemName: Unique_Sword_2H_003 → Corrupted Ashbringer + {-219046946, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{12f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Axe_1H_003 → The Butcher's Sickle + {-219046942, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{27f}, WeaponDamageMax = new List{31f}}}, //ItemName: Unique_Axe_1H_007 → The Burning Axe of Sankis + {-219046945, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.34f, 1.35f}, WeaponDamageMin = new List{57f}, WeaponDamageMax = new List{70f}}}, //ItemName: Unique_Axe_1H_004 → Hack + {-219046948, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{86f}, WeaponDamageMax = new List{101f}}}, //ItemName: Unique_Axe_1H_001 → Genzaniku + {-219046943, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{177f}, WeaponDamageMax = new List{207f}}}, //ItemName: Unique_Axe_1H_006 → Flesh-Tearer + {-219046944, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{207f}, WeaponDamageMax = new List{239f}}}, //ItemName: Unique_Axe_1H_005 → Sky Splitter + {-179911553, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{23f}, WeaponDamageMax = new List{32f}}}, //ItemName: Unique_Axe_2H_003 → Messerschmidt's Reaver + {-179911555, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{57f}, WeaponDamageMax = new List{74f}}}, //ItemName: Unique_Axe_2H_001 → The Executioner + {-179911522, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{230f}, WeaponDamageMax = new List{313f}}}, //ItemName: Unique_Axe_2H_011 → Skorn + {-179911523, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{400f}, WeaponDamageMax = new List{475f}}}, //ItemName: Unique_Axe_2H_010 → Cinder Switch + {-179911547, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{400f}, WeaponDamageMax = new List{475f}}}, //ItemName: Unique_Axe_2H_009 → Butcher's Carver + {713325109, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{28f}, WeaponDamageMax = new List{34f}}}, //ItemName: Unique_Mace_1H_002 → Nutcracker + {713325108, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.25f, 1.26f}, WeaponDamageMin = new List{44f}, WeaponDamageMax = new List{52f}}}, //ItemName: Unique_Mace_1H_001 → Telranden's Hand + {713325112, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{62f}, WeaponDamageMax = new List{73f}}}, //ItemName: Unique_Mace_1H_005 → Solanium + {713325114, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.24f, 1.25f}, WeaponDamageMin = new List{85f}, WeaponDamageMax = new List{102f}}}, //ItemName: Unique_Mace_1H_007 → Odyn Son + {713325110, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{125f}, WeaponDamageMax = new List{138f}}}, //ItemName: Unique_Mace_1H_003 → Neanderthal + {713325115, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{193f}, WeaponDamageMax = new List{237f}}}, //ItemName: Unique_Mace_1H_008 → Jace's Hammer of Vigilance + {713325116, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{237f}, WeaponDamageMax = new List{274f}}}, //ItemName: Unique_Mace_1H_009 → Fulminator + {713325141, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{274f}, WeaponDamageMax = new List{318f}}}, //ItemName: Unique_Mace_1H_011 → Sun Keeper + {752460503, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{20f}, WeaponDamageMax = new List{25f}}}, //ItemName: Unique_Mace_2H_003 → Skywarden + {752460501, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{38f}, WeaponDamageMax = new List{45f}}}, //ItemName: Unique_Mace_2H_001 → Sledge of Athskeleng + {752460535, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{56f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Mace_2H_012 → The Furnace + {752460533, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{99f}, WeaponDamageMax = new List{118f}}}, //ItemName: Unique_Mace_2H_010 → Soulsmasher + {752460506, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{197f}, WeaponDamageMax = new List{249f}}}, //ItemName: Unique_Mace_2H_006 → Arthef's Spark of Life + {752460502, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{316f}, WeaponDamageMax = new List{438f}}}, //ItemName: Unique_Mace_2H_002 → Cataclysm + {752460509, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{518f}, WeaponDamageMax = new List{613f}}}, //ItemName: Unique_Mace_2H_009 → Schaeffer's Hammer + {1031587767, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Polearm_002 → Standoff + {1031587769, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{70f}}}, //ItemName: Unique_Polearm_004 → Bovine Bardiche + {1031587768, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{305f}, WeaponDamageMax = new List{356f}}}, //ItemName: Unique_Polearm_003 → Heart Slaughter + {1031587766, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{499f}, WeaponDamageMax = new List{590f}}}, //ItemName: Unique_Polearm_001 → Vigilance + {-1980403708, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{19f}, WeaponDamageMax = new List{25f}}}, //ItemName: Unique_Spear_004 → The Three Hundredth Spear + {-1980403711, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{61f}, WeaponDamageMax = new List{85f}}}, //ItemName: Unique_Spear_001 → Scrimshaw + {-1980403710, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{152f}, WeaponDamageMax = new List{178f}}}, //ItemName: Unique_Spear_002 → Arreat's Law + {-1980403709, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{268f}, WeaponDamageMax = new List{311f}}}, //ItemName: Unique_Spear_003 → Empyrean Messenger + {513724850, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{15f}, WeaponDamageMax = new List{20f}}}, //ItemName: Unique_Bow_005 → The Raven's Wing + {513724852, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.44f, 1.46f}, WeaponDamageMin = new List{29f}, WeaponDamageMax = new List{34f}}}, //ItemName: Unique_Bow_007 → Etrayu + {513724853, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{44f}, WeaponDamageMax = new List{55f}}}, //ItemName: Unique_Bow_008 → Kridershot + {513724846, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{75f}, WeaponDamageMax = new List{91f}}}, //ItemName: Unique_Bow_001 → Uskang + {513724883, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{141f}, WeaponDamageMax = new List{172f}}}, //ItemName: Unique_Bow_015 → Cluckeye + {513724878, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{275f}, WeaponDamageMax = new List{322f}}}, //ItemName: Unique_Bow_010 → Sydyru Crust + {513724854, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{322f}, WeaponDamageMax = new List{376f}}}, //ItemName: Unique_Bow_009 → Windforce + {1183779307, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_XBow_006 → Bakkan Caster + {1183779302, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{33f}, WeaponDamageMax = new List{37f}}}, //ItemName: Unique_XBow_001 → Buriza-Do Kyanon + {1183779335, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{77f}, WeaponDamageMax = new List{103f}}}, //ItemName: Unique_XBow_011 → Demon Machine + {1183779305, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.14f, 1.16f}, WeaponDamageMin = new List{225f}, WeaponDamageMax = new List{281f}}}, //ItemName: Unique_XBow_004 → Pus Spitter + {1183779336, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{281f}, WeaponDamageMax = new List{358f}}}, //ItemName: Unique_XBow_012 → Manticore + {1183779303, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{358f}, WeaponDamageMax = new List{424f}}}, //ItemName: Unique_XBow_002 → Hellrack + {1183779304, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{424f}, WeaponDamageMax = new List{501f}}}, //ItemName: Unique_XBow_003 → Chanon Bolter + {515789447, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{38f}, WeaponDamageMax = new List{44f}}}, //ItemName: Unique_HandXBow_007 → K'mar Tenclip + {515789446, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{50f}, WeaponDamageMax = new List{66f}}}, //ItemName: Unique_HandXBow_006 → Helltrapper + {515789445, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.66f, 1.68f}, WeaponDamageMin = new List{139f}, WeaponDamageMax = new List{154f}}}, //ItemName: Unique_HandXBow_005 → Natalya's Slayer + {515789444, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{154f}, WeaponDamageMax = new List{170f}}}, //ItemName: Unique_HandXBow_004 → Calamity + {515789475, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{196f}, WeaponDamageMax = new List{225}}}, //ItemName: Unique_HandXBow_012 → Danetta's Revenge + {1801986933, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{36f}}}, //ItemName: Unique_Mighty_1H_006 → Blade of the Warlord + {1801986962, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{83f}, WeaponDamageMax = new List{118f}}}, //ItemName: Unique_Mighty_1H_012 → Fjord Cutter + {1801986928, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{118f}, WeaponDamageMax = new List{153f}}}, //ItemName: Unique_Mighty_1H_001 → Ambo's Pride + {1801986932, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{239f}, WeaponDamageMax = new List{278f}}}, //ItemName: Unique_Mighty_1H_005 → Oathkeeper + {1841122355, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{31f}}}, //ItemName: Unique_Mighty_2H_012 → Fury of the Vanished Peak + {1841122324, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{36f}, WeaponDamageMax = new List{55f}}}, //ItemName: Unique_Mighty_2H_004 → Madawc's Sorrow + {1841122321, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{153f}, WeaponDamageMax = new List{207f}}}, //ItemName: Unique_Mighty_2H_001 → Bastion's Revered + {1841122326, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{239f}, WeaponDamageMax = new List{278f}}}, //ItemName: Unique_Mighty_2H_006 → The Gavel of Judgment + {-840690589, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{7f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Fist_008 → The Fist of Az'Turrasq + {-840690594, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{20f}, WeaponDamageMax = new List{29f}}}, //ItemName: Unique_Fist_003 → Fleshrake + {-840690590, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{29f}, WeaponDamageMax = new List{39f}}}, //ItemName: Unique_Fist_007 → Scarbringer + {-840690561, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{46f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Fist_013 → Logan's Claw + {-840690562, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{81f}, WeaponDamageMax = new List{106f}}}, //ItemName: Unique_Fist_012 → Won Khim Lau + {-840690593, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{106f}, WeaponDamageMax = new List{130f}}}, //ItemName: Unique_Fist_004 → Rabid Strike + {-840690592, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{130f}, WeaponDamageMax = new List{157f}}}, //ItemName: Unique_Fist_005 → Sledge Fist + {-840690591, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{181f}, WeaponDamageMax = new List{232f}}}, //ItemName: Unique_Fist_006 → Jawbreaker + {-840690588, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{232f}, WeaponDamageMax = new List{243f}}}, //ItemName: Unique_Fist_009 → Crystal Fist + {-326857814, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{22f}}}, //ItemName: Unique_CombatStaff_2H_002 → The Flow of Eternity + {-326857808, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.13f, 1.14f}, WeaponDamageMin = new List{28f}, WeaponDamageMax = new List{42f}}}, //ItemName: Unique_CombatStaff_2H_008 → Balance + {-326857811, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.13f, 1.14f}, WeaponDamageMin = new List{67f}, WeaponDamageMax = new List{98f}}}, //ItemName: Unique_CombatStaff_2H_005 → Incense Torch of the Grand Temple + {-326857809, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{98f}, WeaponDamageMax = new List{145f}}}, //ItemName: Unique_CombatStaff_2H_007 → The Paddle + {-326857813, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{177f}, WeaponDamageMax = new List{221f}}}, //ItemName: Unique_CombatStaff_2H_003 → Warstaff of General Quang + {-326857812, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{375f}, WeaponDamageMax = new List{442f}}}, //ItemName: Unique_CombatStaff_2H_004 → Flying Dragon + {-326857807, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{442f}, WeaponDamageMax = new List{522f}}}, //ItemName: Unique_CombatStaff_2H_009 → Inna's Reach + {300184993, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{51f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Staff_008 → The Smoldering Core + {300184987, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{67f}, WeaponDamageMax = new List{76f}}}, //ItemName: Unique_Staff_002 → Valthek's Rebuke + {300184986, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{121f}, WeaponDamageMax = new List{139f}}}, //ItemName: Unique_Staff_001 → The Tormentor + {300184991, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{237f}, WeaponDamageMax = new List{276f}}}, //ItemName: Unique_Staff_006 → Maloth's Focus + {300184988, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{320f}, WeaponDamageMax = new List{409f}}}, //ItemName: Unique_Staff_003 → The Grand Vizier + {300184992, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{409f}, WeaponDamageMax = new List{484f}}}, //ItemName: Unique_Staff_007 → Ahavarion, Spear of Lycander + {300184994, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{484f}, WeaponDamageMax = new List{572f}}}, //ItemName: Unique_Staff_009 → Staff of Chiroptera + {161873426, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{29f}, WeaponDamageMax = new List{41f}}}, //ItemName: Unique_Wand_003 → Starfire + {161873429, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{48f}}}, //ItemName: Unique_Wand_006 → Blackhand Key + {161873425, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{116f}, WeaponDamageMax = new List{127f}}}, //ItemName: Unique_Wand_002 → Wand of Woh + {161873456, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{153f}, WeaponDamageMax = new List{177f}}}, //ItemName: Unique_Wand_010 → Gesture of Orpheus + {161873432, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{177f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Wand_009 → Fragment of Destiny + {161873459, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{177f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Wand_013 → Aether Walker + {1638662956, new UniqueItemLayout{ Armor = new List{54f, 72f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_001 → Leoric's Crown + {1638662957, new UniqueItemLayout{ Armor = new List{72f, 90f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_002 → Andariel's Visage + {1638662962, new UniqueItemLayout{ Armor = new List{186f, 225f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_007 → Deathseer's Cowl + {1638662959, new UniqueItemLayout{ Armor = new List{225f, 247f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_004 → The Helm of Rule + {1638662958, new UniqueItemLayout{ Armor = new List{322f, 360f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_003 → Mempo of Twilight + {1638662961, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_006 → Broken Crown + {1638662989, new UniqueItemLayout{ Armor = new List{414f, 457f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_011 → Blind Faith + {880593690, new UniqueItemLayout{ Armor = new List{42f, 56f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_014 → St. Archew's Gage + {880593655, new UniqueItemLayout{ Armor = new List{56f, 70f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_002 → Frostburn + {880593654, new UniqueItemLayout{ Armor = new List{88f, 107f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_001 → Stone Gauntlets + {880593656, new UniqueItemLayout{ Armor = new List{107f, 126f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_003 → Gladiator Gauntlets + {880593660, new UniqueItemLayout{ Armor = new List{192f, 210f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_007 → Magefist + {880593687, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_011 → Tasker and Theo + {261789229, new UniqueItemLayout{ Armor = new List{7f, 16f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_010 → Boj Anglers + {261789205, new UniqueItemLayout{ Armor = new List{44f, 57f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_009 → The Crudest Boots + {261789197, new UniqueItemLayout{ Armor = new List{107f, 130f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_001 → Lut Socks + {261789201, new UniqueItemLayout{ Armor = new List{154f, 175f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_005 → Fire Walkers + {261789204, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_008 → Ice Climbers + {261789203, new UniqueItemLayout{ Armor = new List{322f, 356f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_007 → Illusory Boots + {-660622994, new UniqueItemLayout{ Armor = new List{14f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_002 → The Witching Hour + {-660622987, new UniqueItemLayout{ Armor = new List{34f, 44f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_009 → Harrington Waistguard + {-660622992, new UniqueItemLayout{ Armor = new List{54f, 67f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_004 → Saffron Wrap + {-660622963, new UniqueItemLayout{ Armor = new List{68f, 88f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_010 → Cord of the Sherma + {-660622995, new UniqueItemLayout{ Armor = new List{108f, 127f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_001 → Goldwrap + {-660622988, new UniqueItemLayout{ Armor = new List{150f, 165f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_008 → String of Ears + {-660622993, new UniqueItemLayout{ Armor = new List{165f, 179f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_003 → Vigilante Belt + {-660622991, new UniqueItemLayout{ Armor = new List{240f, 265f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_005 → Hellcat Waistguard + {955538488, new UniqueItemLayout{ Armor = new List{16f, 25f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_004 → Strongarm Bracers + {955538490, new UniqueItemLayout{ Armor = new List{41f, 48f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_006 → Lacuni Prowlers + {955538487, new UniqueItemLayout{ Armor = new List{63f, 75f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_003 → Slave Bonds + {955538489, new UniqueItemLayout{ Armor = new List{125f, 137f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_005 → Nemesis Bracers + {955538486, new UniqueItemLayout{ Armor = new List{158f, 178f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_002 → Steady Strikers + {955538485, new UniqueItemLayout{ Armor = new List{200f, 220f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_001 → Gungdo Gear + {955538491, new UniqueItemLayout{ Armor = new List{230f, 253f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_007 → Warzechian Armguards + {172016991, new UniqueItemLayout{ Armor = new List{51f, 69f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_012 → Cindercoat + {172016997, new UniqueItemLayout{ Armor = new List{87f, 108f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_018 → Goldskin + {172016989, new UniqueItemLayout{ Armor = new List{138f, 168f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_010 → Chaingmail + {172016962, new UniqueItemLayout{ Armor = new List{247f, 270f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_006 → Aquila Cuirass + {172016957, new UniqueItemLayout{ Armor = new List{322f, 360f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_001 → Heart of Iron + {172016998, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_019 → Tyrael's Might + {172016958, new UniqueItemLayout{ Armor = new List{414f, 457f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_002 → Shi Mizu's Haori + {903144210, new UniqueItemLayout{ Armor = new List{33f, 38f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_007 → Pox Faulds + {903144205, new UniqueItemLayout{ Armor = new List{162f, 191f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_002 → Hammer Jammers + {903144204, new UniqueItemLayout{ Armor = new List{217f, 246f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_001 → Swampland Waders + {903144208, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_005 → Hexing Pants of Mr. Yan + {903144209, new UniqueItemLayout{ Armor = new List{414f, 457f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_006 → Depth Diggers + {238734028, new UniqueItemLayout{ Armor = new List{144f, 165f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_001 → Homing Pads + {238734029, new UniqueItemLayout{ Armor = new List{200f, 220f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_002 → Spaulders of Zakara + {238734034, new UniqueItemLayout{ Armor = new List{320f, 350f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_007 → Pauldrons of the Skeleton King + {238734030, new UniqueItemLayout{ Armor = new List{368f, 403f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_003 → Death Watch Mantle + {1109225230, new UniqueItemLayout{ Armor = new List{36f, 41f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_005 → The Mind's Eye + {1109225229, new UniqueItemLayout{ Armor = new List{60f, 80f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_004 → Tzo Krin's Gaze + {1109225227, new UniqueItemLayout{ Armor = new List{126f, 149f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_002 → See No Evil + {1109225228, new UniqueItemLayout{ Armor = new List{186f, 224f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_003 → Gyana Na Kashu + {1109225226, new UniqueItemLayout{ Armor = new List{225f, 254f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_001 → Bezoar Stone + {1109225231, new UniqueItemLayout{ Armor = new List{255f, 284f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_006 → The Laws of Seph + {1109225232, new UniqueItemLayout{ Armor = new List{322f, 359f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_007 → Erlang Shen + {1109225233, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_008 → Madstone + {270555853, new UniqueItemLayout{ Armor = new List{36f, 41f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_006 → Quetzalcoatl + {270555852, new UniqueItemLayout{ Armor = new List{84f, 97f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_005 → The Grin Reaper + {270555848, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_001 → Tiklandian Visage + {270555849, new UniqueItemLayout{ Armor = new List{255f, 284f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_002 → Visage of Giyua + {270555855, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_008 → Carnevil + {703827190, new UniqueItemLayout{ Armor = new List{150f, 185f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_003 → The Swami + {703827188, new UniqueItemLayout{ Armor = new List{285f, 322f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_001 → Storm Crow + {703827191, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_004 → Dark Mage's Shade + {-1838235536, new UniqueItemLayout{ Armor = new List{87f, 108f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_001 → The Cape of the Dark Night + {-1838235532, new UniqueItemLayout{ Armor = new List{225f, 247f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_005 → Beckon Sail + {-1838235535, new UniqueItemLayout{ Armor = new List{414f, 457f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_002 → Blackfeather + {-1303630777, new UniqueItemLayout{ Armor = new List{53f, 61f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_004 → Pride of Cassius + {-1303630775, new UniqueItemLayout{ Armor = new List{74f, 101f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_006 → Chilanik's Chain + {-1303630774, new UniqueItemLayout{ Armor = new List{101f, 133f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_007 → The Undisputed Champion + {-1303630779, new UniqueItemLayout{ Armor = new List{165f, 199f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_002 → Lamentation + {-1303630780, new UniqueItemLayout{ Armor = new List{206f, 226f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_001 → Girdle of Giants + {-1303630778, new UniqueItemLayout{ Armor = new List{226f, 252f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_003 → Dread Iron + {-1303630773, new UniqueItemLayout{ Armor = new List{286f, 318f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_008 → Kotuur's Brace + {-1303630776, new UniqueItemLayout{ Armor = new List{329f, 368f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_005 → Ageless Might + {1801986960, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{207f}, WeaponDamageMax = new List{239f}}}, //ItemName: Unique_Mighty_1H_010 → Remorseless + {1801986961, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{207f}, WeaponDamageMax = new List{239f}}}, //ItemName: Unique_Mighty_1H_011 → Dishonored Legacy + {515789441, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{196f}, WeaponDamageMax = new List{225f}}}, //ItemName: Unique_HandXBow_001 → Dawn + {515789442, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{196f}, WeaponDamageMax = new List{225f}}}, //ItemName: Unique_HandXBow_002 → Balefire Caster + {161873458, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{177f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Wand_012 → Serpent's Sparker + {-840690564, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{181f}, WeaponDamageMax = new List{232f}}}, //ItemName: Unique_Fist_010 → Vengeful Wind + {-840690563, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{181f}, WeaponDamageMax = new List{232f}}}, //ItemName: Unique_Fist_011 → Lion's Claw + {394684215, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{190f}, WeaponDamageMax = new List{219f}}}, //ItemName: Unique_CeremonialDagger_009 → Sacred Harvester + {1638662964, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_009 → Visage of Gunes + {515789443, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{196f}, WeaponDamageMax = new List{225f}}}, //ItemName: Unique_HandXBow_003 → Valla's Bequest + {-1838235531, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_006 → The Demon's Demise + {261789230, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_011 → Rivera Dancers + {1638662963, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_008 → Skull of Resonance + {1841122353, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{207f}, WeaponDamageMax = new List{239f}}}, //ItemName: Unique_Mighty_2H_010 → Blade of the Tribes + {172016992, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_013 → Mantle of Channeling + {-1303630772, new UniqueItemLayout{ Armor = new List{286f, 320f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_009 → Girdle of Giants + {880593661, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_008 → Gloves of Worship + {261789231, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_012 → Irontoe Mudsputters + {1638662988, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_010 → Warhelm of Kassar + {172016993, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_014 → Armor of the Kind Regent + {-660622990, new UniqueItemLayout{ Armor = new List{240f, 265f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_006 → Razor Strop + {1109225234, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_009 → Eye of Peshkov + {-326857815, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{375f}, WeaponDamageMax = new List{442f}}}, //ItemName: Unique_CombatStaff_2H_001 → Staff of Kyro + {172016994, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_015 → Vo'Toyias Spiker + {-660622989, new UniqueItemLayout{ Armor = new List{240f, 265f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_007 → Thundergod's Vigor + {903144211, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_008 → Death's Bargain + {270555854, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_007 → Mask of Jeram + {172016995, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_016 → Heart of the Crashing Wave + {261789232, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_013 → Boots of Disregard + {261789238, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_019 → Nilfur's Boast + {1262779559, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_ChestArmor_028 → Shi Mizu's Haori + {-660622958, new UniqueItemLayout{ Armor = new List{240f, 265f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_015 → Omryn's Chain + {903144239, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_013 → Defiler Cuisses + {172017027, new UniqueItemLayout{ Armor = new List{69f, 86f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_025 → The Cloak of Deception + {238734033, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_006 → Lefebvre's Soliloquy + {608242229, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{24f}, WeaponDamageMax = new List{27f}}}, //ItemName: Unique_Sword_1H_018 → The Slanderer + {1638662990, new UniqueItemLayout{ Armor = new List{72f, 89f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_012 → Crown of the Primus + {903144236, new UniqueItemLayout{ Armor = new List{63f, 77f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_010 → Guardian's Jeopardy + {880593691, new UniqueItemLayout{ Armor = new List{56f, 70f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_015 → Vambraces of Sescheron + {261789234, new UniqueItemLayout{ Armor = new List{58f, 66f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_015 → The Traveler's Pledge (parte do conjunto) + {261789236, new UniqueItemLayout{ Armor = new List{67f, 82f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_017 → Wraps of Clarity + {-660622961, new UniqueItemLayout{ Armor = new List{68f, 87f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_012 → Bakuli Jungle Wraps + {903144238, new UniqueItemLayout{ Armor = new List{102f, 131f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_012 → Coils of the First Spider + {238734035, new UniqueItemLayout{ Armor = new List{144f, 165f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_008 → Fury of the Ancients + {955538493, new UniqueItemLayout{ Armor = new List{90f, 102f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_009 → Gabriel's Vambraces + {172017028, new UniqueItemLayout{ Armor = new List{168f, 191f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_026 → Death's Bargain + {1638662992, new UniqueItemLayout{ Armor = new List{162f, 185f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_014 → The Laws of Seph + {238734067, new UniqueItemLayout{ Armor = new List{200f, 220f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_017 → Channeling Pauldrons + {880593662, new UniqueItemLayout{ Armor = new List{175f, 192f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_009 → The Shadow's Grasp + {903144212, new UniqueItemLayout{ Armor = new List{217f, 246f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_009 → The Shadow's Coil + {261789233, new UniqueItemLayout{ Armor = new List{169f, 191f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_014 → The Shadow's Heels + {955538517, new UniqueItemLayout{ Armor = new List{137f, 149f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_010 → Drakon's Lesson + {-660622960, new UniqueItemLayout{ Armor = new List{165f, 179f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_013 → The Shame of Delsere + {1638662993, new UniqueItemLayout{ Armor = new List{247f, 269f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_015 → Shrouded Mask + {172017029, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_027 → The Ninth Cirri Satchel + {-660622959, new UniqueItemLayout{ Armor = new List{240f, 265f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_014 → Zoey's Secret + {903144240, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_014 → Hammer Jammers + {238734036, new UniqueItemLayout{ Armor = new List{320f, 350f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_009 → Unhallowed Essence + {955538518, new UniqueItemLayout{ Armor = new List{200f, 220f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_011 → Bracers of the First Men + {880593693, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_017 → Akkhan's Manacles + {261789237, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_018 → Akkhan's Leniency + {1638662994, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_016 → Crown of the Invoker + {1801986965, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{207f}, WeaponDamageMax = new List{239f}}}, //ItemName: Unique_Mighty_1H_015 → Oathkeeper + {161873464, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{177f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Wand_018 → Unstable Scepter + {394684240, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{190f}, WeaponDamageMax = new List{219f}}}, //ItemName: Unique_CeremonialDagger_011 → The Dagger of Darts + {515789479, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{196f}, WeaponDamageMax = new List{225f}}}, //ItemName: Unique_HandXBow_016 → The Demon's Demise + {-840690559, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{181f}, WeaponDamageMax = new List{232f}}}, //ItemName: Unique_Fist_015 → Kyoshiro's Blade + {-219046913, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{207f}, WeaponDamageMax = new List{239f}}}, //ItemName: Unique_Axe_1H_013 → Gimmershred + {1111092663, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{20f}, WeaponDamageMax = new List{23f}}}, //ItemName: Unique_Dagger_008 → Karlei's Point + {-1817947684, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Offhand_001 → Envious Blade + {608242189, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Sword_1H_001 → Deathwish + {608242221, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{20f}, WeaponDamageMax = new List{25f}}}, //ItemName: Unique_Sword_1H_010 → Fulminator + {608242255, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{39f}}}, //ItemName: Unique_Sword_1H_021 → In-geom + {647377618, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{367f}, WeaponDamageMax = new List{433f}}}, //ItemName: Unique_Sword_2H_014 → Blood Brother + {713325140, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{23f}, WeaponDamageMax = new List{28f}}}, //ItemName: Unique_Mace_1H_010 → Darklight + {-64652480, new UniqueItemLayout{ Armor = new List{960f, 1060f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_002 → Defender of Westmarch + {-64652478, new UniqueItemLayout{ Armor = new List{580f, 620f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_004 → Lidless Wall + {-64652475, new UniqueItemLayout{ Armor = new List{320f, 384f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_007 → Freeze of Deflection + {-64652474, new UniqueItemLayout{ Armor = new List{660f, 700f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_008 → Ivory Tower + {-64652473, new UniqueItemLayout{ Armor = new List{1104f, 1219f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_009 → Lidless Wall + {-64652448, new UniqueItemLayout{ Armor = new List{200f, 224f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_009 → Lidless Wall + // Items with the suffix _1xx are the Primal Ancient versions of the items, which have the same name as the original legendary item. + {-2077069550, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Dagger_003_1xx → The Barber + {-2072325866, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Dagger_007_1xx → Pig Sticker + {-2078255471, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{36f}, WeaponDamageMax = new List{108f}}}, //ItemName: Unique_Dagger_002_1xx → Wizardspike + {-2073511787, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{52f}, WeaponDamageMax = new List{156f}}}, //ItemName: Unique_Dagger_006_1xx → Kill + {-2041491920, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{67f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Dagger_010_1xx → Eun-jang-do + {-2071139945, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Dagger_008_1xx → Karlei's Point + {-1893279684, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Offhand_001_1xx → Envious Blade + {-1240625135, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{24f}}}, //ItemName: Unique_CeremonialDagger_003_1xx → The Gidbinn + {-1237067372, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{35f}}}, //ItemName: Unique_CeremonialDagger_006_1xx → Deadly Rebirth + {-1239439214, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{18f}, WeaponDamageMax = new List{71f}}}, //ItemName: Unique_CeremonialDagger_004_1xx → The Spider Queen's Grasp + {-1242996977, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{129f}}}, //ItemName: Unique_CeremonialDagger_001_1xx → Anessazi Edge + {-1241811056, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{54f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_CeremonialDagger_002_1xx → Voo's Juicer + {-1234695530, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{71f}, WeaponDamageMax = new List{288f}}}, //ItemName: Unique_CeremonialDagger_008_1xx → Starmetal Kukri + {-1233509609, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{71f}, WeaponDamageMax = new List{288f}}}, //ItemName: Unique_CeremonialDagger_009_1xx → Sacred Harvester + {-1203861584, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{71f}, WeaponDamageMax = new List{288f}}}, //ItemName: Unique_CeremonialDagger_011_1xx → The Dagger of Darts + {362282132, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{12f}, WeaponDamageMax = new List{28f}}}, //ItemName: Unique_Sword_1H_017_1xx → Devil Tongue + {317217134, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{48f}}}, //ItemName: Unique_Sword_1H_002_1xx → Wildwood + {318403055, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{73f}}}, //ItemName: Unique_Sword_1H_003_1xx → Azurewrath + {358724369, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{65f}, WeaponDamageMax = new List{151f}}}, //ItemName: Unique_Sword_1H_014_1xx → Spectrum + {319588976, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{65f}, WeaponDamageMax = new List{151f}}}, //ItemName: Unique_Sword_1H_004_1xx → Doombringer + {364653974, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{78f}, WeaponDamageMax = new List{181f}}}, //ItemName: Unique_Sword_1H_019_1xx → Little Rogue + {323146739, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{90f}, WeaponDamageMax = new List{210f}}}, //ItemName: Unique_Sword_1H_007_1xx → The Ancient Bonesaber of Zumakalis + {355166606, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Sword_1H_011_1xx → Sever + {356352527, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Sword_1H_012_1xx → Rimeheart + {363468053, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{14f}, WeaponDamageMax = new List{32f}}}, //ItemName: Unique_Sword_1H_018_1xx → The Slanderer + {316031213, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Sword_1H_001_1xx → Deathwish + {353980685, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Sword_1H_010_1xx → Fulminator + {394301999, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{39f}}}, //ItemName: Unique_Sword_1H_021_1xx → In-geom + {385018511, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{24f}}}, //ItemName: Unique_Sword_2H_002_1xx → The Zweihander + {424153904, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{45f}}}, //ItemName: Unique_Sword_2H_012_1xx → The Grandfather + {387390353, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{46f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Sword_2H_004_1xx → Scourge + {422967983, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{93f}, WeaponDamageMax = new List{137f}}}, //ItemName: Unique_Sword_2H_011_1xx → Faithful Memory + {390948116, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{158f}, WeaponDamageMax = new List{234f}}}, //ItemName: Unique_Sword_2H_007_1xx → Blade of Prophecy + {392134037, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{269f}, WeaponDamageMax = new List{399f}}}, //ItemName: Unique_Sword_2H_008_1xx → Stalgard's Decimator + {386204432, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{317f}, WeaponDamageMax = new List{471f}}}, //ItemName: Unique_Sword_2H_003_1xx → Corrupted Ashbringer + {421782062, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{374f}, WeaponDamageMax = new List{556f}}}, //ItemName: Unique_Sword_2H_010_1xx → Cam's Rebuttal + {383832590, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{374f}, WeaponDamageMax = new List{556f}}}, //ItemName: Unique_Sword_2H_001_1xx → Blackguard + {426525746, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{93f}, WeaponDamageMax = new List{137f}}}, //ItemName: Unique_Sword_2H_014_1xx → Blood Brother + {137188158, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{7f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_Axe_1H_003_1xx → The Butcher's Sickle + {138374079, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{57f}}}, //ItemName: Unique_Axe_1H_004_1xx → Hack + {134816316, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{47f}, WeaponDamageMax = new List{86f}}}, //ItemName: Unique_Axe_1H_001_1xx → Genzaniku + {140745921, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{96f}, WeaponDamageMax = new List{177f}}}, //ItemName: Unique_Axe_1H_006_1xx → Flesh-Tearer + {141931842, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{129f}, WeaponDamageMax = new List{238f}}}, //ItemName: Unique_Axe_1H_007_1xx → The Burning Axe of Sankis + {139560000, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{149f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_Axe_1H_005_1xx → Sky Splitter + {176323551, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{149f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_Axe_1H_013_1xx → Gimmershred + {204989535, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{24f}}}, //ItemName: Unique_Axe_2H_003_1xx → Messerschmidt's Reaver + {202617693, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{52f}, WeaponDamageMax = new List{61f}}}, //ItemName: Unique_Axe_2H_001_1xx → The Executioner + {241753086, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{285f}, WeaponDamageMax = new List{422f}}}, //ItemName: Unique_Axe_2H_011_1xx → Skorn + {240567165, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{363f}, WeaponDamageMax = new List{437f}}}, //ItemName: Unique_Axe_2H_010_1xx → Cinder Switch + {212105061, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{507f}, WeaponDamageMax = new List{613f}}}, //ItemName: Unique_Axe_2H_009_1xx → Butcher's Carver + {1881507093, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{30f}}}, //ItemName: Unique_Mace_1H_002_1xx → Nutcracker + {1885064856, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{37f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Mace_1H_005_1xx → Solanium + {1887436698, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{50f}, WeaponDamageMax = new List{92f}}}, //ItemName: Unique_Mace_1H_007_1xx → Odyn Son + {1882693014, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{75f}, WeaponDamageMax = new List{135f}}}, //ItemName: Unique_Mace_1H_003_1xx → Neanderthal + {1888622619, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{113f}, WeaponDamageMax = new List{208f}}}, //ItemName: Unique_Mace_1H_008_1xx → Jace's Hammer of Vigilance + {1889808540, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{139f}, WeaponDamageMax = new List{258f}}}, //ItemName: Unique_Mace_1H_009_1xx → Fulminator + {1880321172, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{160f}, WeaponDamageMax = new List{296f}}}, //ItemName: Unique_Mace_1H_001_1xx → Telranden's Hand + {1919456565, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{186f}, WeaponDamageMax = new List{344f}}}, //ItemName: Unique_Mace_1H_011_1xx → Sun Keeper + {1918270644, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Mace_1H_010_1xx → Darklight + {1950494391, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{22f}, WeaponDamageMax = new List{23f}}}, //ItemName: Unique_Mace_2H_003_1xx → Skywarden + {1948122549, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{43f}}}, //ItemName: Unique_Mace_2H_001_1xx → Sledge of Athskeleng + {1988443863, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{60f}, WeaponDamageMax = new List{64f}}}, //ItemName: Unique_Mace_2H_012_1xx → The Furnace + {1986072021, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{106f}, WeaponDamageMax = new List{113f}}}, //ItemName: Unique_Mace_2H_010_1xx → Soulsmasher + {1954052154, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{211f}, WeaponDamageMax = new List{226f}}}, //ItemName: Unique_Mace_2H_006_1xx → Arthef's Spark of Life + {1949308470, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{551f}, WeaponDamageMax = new List{601f}}}, //ItemName: Unique_Mace_2H_002_1xx → Cataclysm + {1957609917, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{651f}, WeaponDamageMax = new List{712f}}}, //ItemName: Unique_Mace_2H_009_1xx → Schaeffer's Hammer + {-1179860073, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{36f}}}, //ItemName: Unique_Polearm_002_1xx → Standoff + {-1177488231, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{56f}, WeaponDamageMax = new List{66f}}}, //ItemName: Unique_Polearm_004_1xx → Bovine Bardiche + {-1178674152, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{340f}, WeaponDamageMax = new List{409f}}}, //ItemName: Unique_Polearm_003_1xx → Heart Slaughter + {-1181045994, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{562f}, WeaponDamageMax = new List{680f}}}, //ItemName: Unique_Polearm_001_1xx → Vigilance + {1739246180, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Spear_004_1xx → The Three Hundredth Spear + {1735688417, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Spear_001_1xx → Scrimshaw + {1736874338, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{180f}, WeaponDamageMax = new List{267f}}}, //ItemName: Unique_Spear_002_1xx → Arreat's Law + {1738060259, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{209f}, WeaponDamageMax = new List{310f}}}, //ItemName: Unique_Spear_003_1xx → Empyrean Messenger + {275338002, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Bow_005_1xx → The Raven's Wing + {277709844, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{35f}}}, //ItemName: Unique_Bow_007_1xx → Etrayu + {278895765, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{12f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Bow_008_1xx → Kridershot + {270594318, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{16f}, WeaponDamageMax = new List{91f}}}, //ItemName: Unique_Bow_001_1xx → Uskang + {314473395, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{30f}, WeaponDamageMax = new List{171f}}}, //ItemName: Unique_Bow_015_1xx → Cluckeye + {308543790, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{335f}}}, //ItemName: Unique_Bow_010_1xx → Sydyru Crust + {280081686, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{80f}, WeaponDamageMax = new List{458f}}}, //ItemName: Unique_Bow_009_1xx → Windforce + {-1447231541, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_XBow_006_1xx → Bakkan Caster + {-1453161146, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{27f}, WeaponDamageMax = new List{32f}}}, //ItemName: Unique_XBow_001_1xx → Buriza-Do Kyanon + {-1414025753, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{64f}, WeaponDamageMax = new List{75f}}}, //ItemName: Unique_XBow_011_1xx → Demon Machine + {-1449603383, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{161f}, WeaponDamageMax = new List{192f}}}, //ItemName: Unique_XBow_004_1xx → Pus Spitter + {-1412839832, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{233f}, WeaponDamageMax = new List{278f}}}, //ItemName: Unique_XBow_012_1xx → Manticore + {-1451975225, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{296f}, WeaponDamageMax = new List{355f}}}, //ItemName: Unique_XBow_002_1xx → Hellrack + {-1450789304, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{413f}, WeaponDamageMax = new List{498f}}}, //ItemName: Unique_XBow_003_1xx → Chanon Bolter + {591732198, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1,60f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{64f}}}, //ItemName: Unique_HandXBow_006_1xx → Helltrapper + {590546277, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{26f}, WeaponDamageMax = new List{148f}}}, //ItemName: Unique_HandXBow_005_1xx → Natalya's Slayer + {589360356, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{181f}}}, //ItemName: Unique_HandXBow_004_1xx → Calamity + {592918119, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{42f}, WeaponDamageMax = new List{240f}}}, //ItemName: Unique_HandXBow_007_1xxx → K'mar Tenclip + {626123907, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_005_1xx → Natalya's Slayer + {585802593, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_001_1xx → Dawn + {586988514, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_002_1xx → Balefire Caster + {588174435, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_003_1xx → Valla's Bequest + {630867591, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_016_1xx → The Demon's Demise + {1631309397, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{31f}}}, //ItemName: Unique_Mighty_1H_006_1xx → Blade of the Warlord + {1665701106, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{45f}, WeaponDamageMax = new List{82f}}}, //ItemName: Unique_Mighty_1H_012_1xx → Fjord Cutter + {1625379792, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{83f}, WeaponDamageMax = new List{153f}}}, //ItemName: Unique_Mighty_1H_001_1xx → Ambo's Pride + {1663329264, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_010_1xx → Remorseless + {1630123476, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_005_1xx → Oathkeeper + {1664515185, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_011_1xx → Dishonored Legacy + {1669258869, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_015_1xx → Oathkeeper + {1733502483, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{35f}, WeaponDamageMax = new List{37f}}}, //ItemName: Unique_Mighty_2H_012_1xx → Fury of the Vanished Peak + {1696738932, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{62f}}}, //ItemName: Unique_Mighty_2H_004_1xx → Madawc's Sorrow + {1731130641, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{531f}, WeaponDamageMax = new List{579f}}}, //ItemName: Unique_Mighty_2H_010_1xx → Blade of the Tribes + {1693181169, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{381f}, WeaponDamageMax = new List{414f}}}, //ItemName: Unique_Mighty_2H_001_1xx → Bastion's Revered + {1699110774, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{531f}, WeaponDamageMax = new List{579f}}}, //ItemName: Unique_Mighty_2H_006_1xx → The Gavel of Judgment + {-1868035138, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{20f}}}, //ItemName: Unique_Fist_003_1xx → Fleshrake + {-1863291454, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{29f}}}, //ItemName: Unique_Fist_007_1xx → Scarbringer + {-1828899745, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{26f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Fist_013_1xx → Logan's Claw + {-1830085666, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{26f}, WeaponDamageMax = new List{148f}}}, //ItemName: Unique_Fist_012_1xx → Won Khim Lau + {-1866849217, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{46f}, WeaponDamageMax = new List{106f}}}, //ItemName: Unique_Fist_004_1xx → Rabid Strike + {-1865663296, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{56f}, WeaponDamageMax = new List{130f}}}, //ItemName: Unique_Fist_005_1xx → Sledge Fist + {-1864477375, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{90f}, WeaponDamageMax = new List{210f}}}, //ItemName: Unique_Fist_006_1xx → Jawbreaker + {-1832457508, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_010_1xx → Vengeful Wind + {-1831271587, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_011_1xx → Lion's Claw + {-1862105533, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_008_1xx → The Fist of Az'Turrasq + {-1860919612, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_009_1xx → Crystal Fist + {-1826527903, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_015_1xx → Kyoshiro's Blade + {1846233354, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{14f}, WeaponDamageMax = new List{25f}}}, //ItemName: Unique_CombatStaff_2H_002_1xx → The Flow of Eternity + {1853348880, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{27f}, WeaponDamageMax = new List{49f}}}, //ItemName: Unique_CombatStaff_2H_008_1xx → Balance + {1849791117, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{43f}, WeaponDamageMax = new List{79f}}}, //ItemName: Unique_CombatStaff_2H_005_1xx → Incense Torch of the Grand Temple + {1852162959, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{63f}, WeaponDamageMax = new List{115f}}}, //ItemName: Unique_CombatStaff_2H_007_1xx → The Paddle + {1845047433, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{333f}, WeaponDamageMax = new List{616f}}}, //ItemName: Unique_CombatStaff_2H_001_1xx → Staff of Kyro + {1847419275, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{113f}, WeaponDamageMax = new List{208f}}}, //ItemName: Unique_CombatStaff_2H_003_1xx → Warstaff of General Quang + {1848605196, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{239f}, WeaponDamageMax = new List{442f}}}, //ItemName: Unique_CombatStaff_2H_004_1xx → Flying Dragon + {1854534801, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{333f}, WeaponDamageMax = new List{616f}}}, //ItemName: Unique_CombatStaff_2H_009_1xx → Inna's Reach + {-1263708543, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Staff_008_1xx → The Smoldering Core + {-1270824069, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{61f}, WeaponDamageMax = new List{90f}}}, //ItemName: Unique_Staff_002_1xx → Valthek's Rebuke + {-1272009990, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{98f}, WeaponDamageMax = new List{144f}}}, //ItemName: Unique_Staff_001_1xx → The Tormentor + {-1266080385, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{191f}, WeaponDamageMax = new List{283f}}}, //ItemName: Unique_Staff_006_1xx → Maloth's Focus + {-1269638148, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{258f}, WeaponDamageMax = new List{382f}}}, //ItemName: Unique_Staff_003_1xx → The Grand Vizier + {-1264894464, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{329f}, WeaponDamageMax = new List{489f}}}, //ItemName: Unique_Staff_007_1xx → Ahavarion, Spear of Lycander + {-1262522622, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{460f}, WeaponDamageMax = new List{685f}}}, //ItemName: Unique_Staff_009_1xx → Staff of Chiroptera + {1240444786, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{15f}, WeaponDamageMax = new List{27f}}}, //ItemName: Unique_Wand_003_1xx → Starfire + {1244002549, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Wand_006_1xx → Blackhand Key + {1239258865, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{107f}}}, //ItemName: Unique_Wand_002_1xx → Wand of Woh + {1276022416, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{77f}, WeaponDamageMax = new List{142f}}}, //ItemName: Unique_Wand_010_1xx → Gesture of Orpheus + {1247560312, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{89f}, WeaponDamageMax = new List{164f}}}, //ItemName: Unique_Wand_009_1xx → Fragment of Destiny + {1278394258, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{118f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_Wand_012_1xx → Serpent's Sparker + {1279580179, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{118f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_Wand_013_1xx → Aether Walker + {1285509784, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{118f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_Wand_018_1xx → Unstable Scepter + {1063855040, new UniqueItemLayout{ Armor = new List{200f, 233f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_011_1xx → Frydehr's Wrath + {1031835173, new UniqueItemLayout{ Armor = new List{320f, 383f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_007_1xx → Freeze of Deflection + {1028277410, new UniqueItemLayout{ Armor = new List{580f, 619f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_004_1xx → Lidless Wall + {1033021094, new UniqueItemLayout{ Armor = new List{660f, 699f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_008_1xx → Ivory Tower + {1025905568, new UniqueItemLayout{ Armor = new List{860f, 959f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_002_1xx → Defender of Westmarch + {1034207015, new UniqueItemLayout{ Armor = new List{1060f, 1259f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_009_1xx → Lidless Wall + {1065040961, new UniqueItemLayout{ Armor = new List{1060f, 1259f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_012_1xx → Guard of Johanna + {-1857638004, new UniqueItemLayout{ Armor = new List{54f, 71f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_001_1xx → Leoric's Crown + {-1856452083, new UniqueItemLayout{ Armor = new List{72f, 89f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_002_1xx → Andariel's Visage + {-1819688532, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_010_1xx → Warhelm of Kassar + {-1850522478, new UniqueItemLayout{ Armor = new List{186f, 224f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_007_1xx → Deathseer's Cowl + {-1854080241, new UniqueItemLayout{ Armor = new List{225f, 247f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_004_1xx → The Helm of Rule + {-1855266162, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_003_1xx → Mempo of Twilight + {-1818502611, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_011_1xx → Blind Faith + {-1851708399, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_006_1xx → Broken Crown + {-1848150636, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_009_1xx → Visage of Gunes + {-1849336557, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_008_1xx → Skull of Resonance + {-1814944848, new UniqueItemLayout{ Armor = new List{289f, 402f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_014_1xx → The Laws of Seph + {-1817316690, new UniqueItemLayout{ Armor = new List{72f, 89f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_012_1xx → Crown of the Primus + {-1813758927, new UniqueItemLayout{ Armor = new List{247f, 269f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_015_1xx → Shrouded Mask + {-1812573006, new UniqueItemLayout{ Armor = new List{360f, 397f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_016_1xx → Crown of the Invoker + {1844822138, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_014_1xx → St. Archew's Gage + {1802128982, new UniqueItemLayout{ Armor = new List{88f, 106f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_001_1xx → Stone Gauntlets + {1809244508, new UniqueItemLayout{ Armor = new List{192f, 209f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_007_1xx → Magefist + {1841264375, new UniqueItemLayout{ Armor = new List{250f, 278f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_011_1xx → Tasker and Theo + {1803314903, new UniqueItemLayout{ Armor = new List{280f, 308f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_002_1xx → Frostburn + {1804500824, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_003_1xx → Gladiator Gauntlets + {1810430429, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_008_1xx → Gloves of Worship + {1846008059, new UniqueItemLayout{ Armor = new List{56f, 69f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_015_1xx → Vambraces of Sescheron + {1811616350, new UniqueItemLayout{ Armor = new List{175f, 192f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_009_1xx → The Shadow's Grasp + {1848379901, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_017_1xx → Akkhan's Manacles + {-363274995, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_010_1xx → Boj Anglers + {-391737099, new UniqueItemLayout{ Armor = new List{44f, 57f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_009_1xx → The Crudest Boots + {-362089074, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_011_1xx → Rivera Dancers + {-401224467, new UniqueItemLayout{ Armor = new List{130f, 152f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_001_1xx → Lut Socks + {-396480783, new UniqueItemLayout{ Armor = new List{192f, 209f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_005_1xx → Fire Walkers + {-394108941, new UniqueItemLayout{ Armor = new List{280f, 308f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_007_1xx → Illusory Boots + {-392923020, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_008_1xx → Ice Climbers + {-360903153, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_012_1xx → Irontoe Mudsputters + {-359717232, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_013_1xx → Boots of Disregard + {-352601706, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_019_1xx → Nilfur's Boast + {-357345390, new UniqueItemLayout{ Armor = new List{58f, 66f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_015_1xx → The Traveler's Pledge (parte do conjunto) + {-354973548, new UniqueItemLayout{ Armor = new List{67f, 82f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_017_1xx → Wraps of Clarity + {-358531311, new UniqueItemLayout{ Armor = new List{175f, 192f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_014_1xx → The Shadow's Heels + {-353787627, new UniqueItemLayout{ Armor = new List{280f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_018_1xx → Akkhan's Leniency + {-1693732658, new UniqueItemLayout{ Armor = new List{24f, 28f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_002_1xx → The Witching Hour + {-1691360816, new UniqueItemLayout{ Armor = new List{54f, 67f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_004_1xx → Saffron Wrap + {-1688988974, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_006_1xx → Razor Strop + {-1656969107, new UniqueItemLayout{ Armor = new List{88f, 107f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_010_1xx → Cord of the Sherma + {-1694918579, new UniqueItemLayout{ Armor = new List{108f, 127f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_001_1xx → Goldwrap + {-1686617132, new UniqueItemLayout{ Armor = new List{145f, 164f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_008_1xx → String of Ears + {-1692546737, new UniqueItemLayout{ Armor = new List{165f, 179f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_003_1xx → Vigilante Belt + {-1690174895, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_005_1xx → Hellcat Waistguard + {-1685431211, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_009_1xx → Harrington Waistguard + {-1687803053, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_007_1xx → Thundergod's Vigor + {-1651039502, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_015_1xx → Omryn's Chain + {-1654597265, new UniqueItemLayout{ Armor = new List{68f, 87f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_012_1xx → Bakuli Jungle Wraps + {-1653411344, new UniqueItemLayout{ Armor = new List{326f, 354f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_013_1xx → The Shame of Delsere + {-1652225423, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_014_1xx → Zoey's Secret + {401387672, new UniqueItemLayout{ Armor = new List{16f, 19f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_004_1xx → Strongarm Bracers + {403759514, new UniqueItemLayout{ Armor = new List{41f, 48f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_006_1xx → Lacuni Prowlers + {400201751, new UniqueItemLayout{ Armor = new List{63f, 75f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_003_1xx → Slave Bonds + {399015830, new UniqueItemLayout{ Armor = new List{158f, 178f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_002_1xx → Steady Strikers + {397829909, new UniqueItemLayout{ Armor = new List{220f, 261f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_001_1xx → Gungdo Gear + {404945435, new UniqueItemLayout{ Armor = new List{200f, 220f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_007_1xx → Warzechian Armguards + {402573593, new UniqueItemLayout{ Armor = new List{220f, 261f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_005_1xx → Nemesis Bracers + {407317277, new UniqueItemLayout{ Armor = new List{175f, 247f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_009_1xx → Gabriel's Vambraces + {435779381, new UniqueItemLayout{ Armor = new List{137f, 149f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_010_1xx → Drakon's Lesson + {436965302, new UniqueItemLayout{ Armor = new List{220f, 261f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_011_1xx → Bracers of the First Men + {503797055, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_012_1xx → Cindercoat + {510912581, new UniqueItemLayout{ Armor = new List{87f, 107f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_018_1xx → Goldskin + {501425213, new UniqueItemLayout{ Armor = new List{138f, 167f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_010_1xx → Chaingmail + {463475741, new UniqueItemLayout{ Armor = new List{225f, 247f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_001_1xx → Heart of Iron + {469405346, new UniqueItemLayout{ Armor = new List{285f, 322f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_006_1xx → Aquila Cuirass + {512098502, new UniqueItemLayout{ Armor = new List{322f, 359f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_019_1xx → Tyrael's Might + {464661662, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_002_1xx → Shi Mizu's Haori + {504982976, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_013_1xx → Mantle of Channeling + {506168897, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_014_1xx → Armor of the Kind Regent + {507354818, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_015_1xx → Vo'Toyias Spiker + {508540739, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_016_1xx → Heart of the Crashing Wave + {488992903, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_ChestArmor_028_1xx → Shi Mizu's Haori + {546490211, new UniqueItemLayout{ Armor = new List{133f, 158f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_025_1xx → The Cloak of Deception + {547676132, new UniqueItemLayout{ Armor = new List{295f, 414f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_026_1xx → Death's Bargain + {548862053, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_027_1xx → The Ninth Cirri Satchel + {218698866, new UniqueItemLayout{ Armor = new List{33f, 38f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_007_1xx → Pox Faulds + {212769261, new UniqueItemLayout{ Armor = new List{162f, 191f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_002_1xx → Hammer Jammers + {211583340, new UniqueItemLayout{ Armor = new List{217f, 246f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_001_1xx → Swampland Waders + {216327024, new UniqueItemLayout{ Armor = new List{286f, 322f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_005_1xx → Hexing Pants of Mr. Yan + {217512945, new UniqueItemLayout{ Armor = new List{397f, 457f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_006_1xx → Depth Diggers + {219884787, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_008_1xx → Death's Bargain + {253090575, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_013_1xx → Defiler Cuisses + {249532812, new UniqueItemLayout{ Armor = new List{63f, 77f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_010_1xx → Guardian's Jeopardy + {251904654, new UniqueItemLayout{ Armor = new List{102f, 131f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_012_1xx → Coils of the First Spider + {221070708, new UniqueItemLayout{ Armor = new List{225f, 247f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_009_1xx → The Shadow's Coil + {254276496, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_014_1xx → Hammer Jammers + {-248493780, new UniqueItemLayout{ Armor = new List{138f, 167f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_001_1xx → Homing Pads + {-247307859, new UniqueItemLayout{ Armor = new List{240f, 252f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_002_1xx → Spaulders of Zakara + {-241378254, new UniqueItemLayout{ Armor = new List{286f, 318f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_007_1xx → Pauldrons of the Skeleton King + {-246121938, new UniqueItemLayout{ Armor = new List{353f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_003_1xx → Death Watch Mantle + {-242564175, new UniqueItemLayout{ Armor = new List{101f, 166f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_006_1xx → Lefebvre's Soliloquy + {-240192333, new UniqueItemLayout{ Armor = new List{229f, 309f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_008_1xx → Fury of the Ancients + {-202242861, new UniqueItemLayout{ Armor = new List{200f, 219f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_017_1xx → Channeling Pauldrons + {-239006412, new UniqueItemLayout{ Armor = new List{353f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_009_1xx → Unhallowed Essence + {-496026002, new UniqueItemLayout{ Armor = new List{36f, 41f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_005_1xx → The Mind's Eye + {-497211923, new UniqueItemLayout{ Armor = new List{60f, 69f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_004_1xx → Tzo Krin's Gaze + {-499583765, new UniqueItemLayout{ Armor = new List{114f, 149f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_002_1xx → See No Evil + {-498397844, new UniqueItemLayout{ Armor = new List{186f, 232f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_003_1xx → Gyana Na Kashu + {-500769686, new UniqueItemLayout{ Armor = new List{232f, 254f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_001_1xx → Bezoar Stone + {-494840081, new UniqueItemLayout{ Armor = new List{255f, 284f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_006_1xx → The Laws of Seph + {-493654160, new UniqueItemLayout{ Armor = new List{322f, 359f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_007_1xx → Erlang Shen + {-492468239, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_008_1xx → Madstone + {-491282318, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_009_1xx → Eye of Peshkov + {-1955597907, new UniqueItemLayout{ Armor = new List{36f, 41f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_006_1xx → Quetzalcoatl + {-1956783828, new UniqueItemLayout{ Armor = new List{84f, 113f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_005_1xx → The Grin Reaper + {-1960341591, new UniqueItemLayout{ Armor = new List{255f, 284f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_002_1xx → Visage of Giyua + {-1961527512, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_001_1xx → Tiklandian Visage + {-1953226065, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_008_1xx → Carnevil + {-1954411986, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_007_1xx → Mask of Jeram + {-495841194, new UniqueItemLayout{ Armor = new List{150f, 185f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_003_1xx → The Swami + {-498213036, new UniqueItemLayout{ Armor = new List{285f, 322f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_001_1xx → Storm Crow + {-494655273, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_004_1xx → Dark Mage's Shade + {-1276219184, new UniqueItemLayout{ Armor = new List{87f, 107f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_001_1xx → The Cape of the Dark Night + {-1271475500, new UniqueItemLayout{ Armor = new List{232f, 254f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_005_1xx → Beckon Sail + {-1275033263, new UniqueItemLayout{ Armor = new List{360f, 414f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_002_1xx → Blackfeather + {-1270289579, new UniqueItemLayout{ Armor = new List{360f, 414f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_006_1xx → The Demon's Demise + {431747111, new UniqueItemLayout{ Armor = new List{53f, 61f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_004_1xx → Pride of Cassius + {434118953, new UniqueItemLayout{ Armor = new List{74f, 100f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_006_1xx → Chilanik's Chain + {435304874, new UniqueItemLayout{ Armor = new List{101f, 132f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_007_1xx → The Undisputed Champion + {429375269, new UniqueItemLayout{ Armor = new List{165f, 205f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_002_1xx → Lamentation + {428189348, new UniqueItemLayout{ Armor = new List{352f, 385f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_001_1xx → Girdle of Giants + {430561190, new UniqueItemLayout{ Armor = new List{226f, 252f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_003_1xx → Dread Iron + {436490795, new UniqueItemLayout{ Armor = new List{286f, 318f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_008_1xx → Kotuur's Brace + {432933032, new UniqueItemLayout{ Armor = new List{320f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_005_1xx → Ageless Might + {437676716, new UniqueItemLayout{ Armor = new List{320f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_009_1xx → Girdle of Giants //_x1 items - - {-973992902, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Dagger_003_x1 - {-973849154, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Dagger_007_x1 - {-974028839, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{36f}, WeaponDamageMax = new List{108f}}}, //ItemName: Unique_Dagger_002_x1 - {-973885091, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{107f}, WeaponDamageMax = new List{321f}}}, //ItemName: Unique_Dagger_006_x1 - {-972914792, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{67f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Dagger_010_x1 - {1784514905, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{24f}}}, //ItemName: Unique_CeremonialDagger_003_x1 - {1784622716, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{117f}, WeaponDamageMax = new List{469f}}}, //ItemName: Unique_CeremonialDagger_006_x1 - {1784550842, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{18f}, WeaponDamageMax = new List{71f}}}, //ItemName: Unique_CeremonialDagger_004_x1 - {1784443031, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{129f}}}, //ItemName: Unique_CeremonialDagger_001_x1 - {1784478968, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{54f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_CeremonialDagger_002_x1 - {1784694590, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{71f}, WeaponDamageMax = new List{288f}}}, //ItemName: Unique_CeremonialDagger_008_x1 - {1312485756, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{12f}, WeaponDamageMax = new List{28f}}}, //ItemName: Unique_Sword_1H_017_x1 - {1311120150, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{48f}}}, //ItemName: Unique_Sword_1H_002_x1 - {1311156087, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{73f}}}, //ItemName: Unique_Sword_1H_003_x1 - {1312377945, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{65f}, WeaponDamageMax = new List{151f}}}, //ItemName: Unique_Sword_1H_014_x1 - {1311192024, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{65f}, WeaponDamageMax = new List{151f}}}, //ItemName: Unique_Sword_1H_004_x1 - {1312557630, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{168f}, WeaponDamageMax = new List{392f}}}, //ItemName: Unique_Sword_1H_019_x1 - {1311299835, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{90f}, WeaponDamageMax = new List{210f}}}, //ItemName: Unique_Sword_1H_007_x1 - {1312270134, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Sword_1H_011_x1 - {1312306071, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Sword_1H_012_x1 - {-1029534697, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{24f}}}, //ItemName: Unique_Sword_2H_002_x1 - {-1028348776, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{45f}}}, //ItemName: Unique_Sword_2H_012_x1 - {-1029462823, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{46f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Sword_2H_004_x1 - {-1028384713, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{93f}, WeaponDamageMax = new List{137f}}}, //ItemName: Unique_Sword_2H_011_x1 - {-1029355012, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{158f}, WeaponDamageMax = new List{234f}}}, //ItemName: Unique_Sword_2H_007_x1 - {-1029319075, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{269f}, WeaponDamageMax = new List{399f}}}, //ItemName: Unique_Sword_2H_008_x1 - {-1029498760, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{317f}, WeaponDamageMax = new List{471f}}}, //ItemName: Unique_Sword_2H_003_x1 - {-1028420650, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{374f}, WeaponDamageMax = new List{556f}}}, //ItemName: Unique_Sword_2H_010_x1 - {-1029570634, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{374f}, WeaponDamageMax = new List{556f}}}, //ItemName: Unique_Sword_2H_001_x1 - {785062630, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{7f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_Axe_1H_003_x1 - {785098567, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{249f}, WeaponDamageMax = new List{461f}}}, //ItemName: Unique_Axe_1H_004_x1 - {784990756, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{47f}, WeaponDamageMax = new List{86f}}}, //ItemName: Unique_Axe_1H_001_x1 - {785170441, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{96f}, WeaponDamageMax = new List{177f}}}, //ItemName: Unique_Axe_1H_006_x1 - {785206378, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{129f}, WeaponDamageMax = new List{238f}}}, //ItemName: Unique_Axe_1H_007_x1 - {785134504, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{149f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_Axe_1H_005_x1 - {-1555592217, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{24f}}}, //ItemName: Unique_Axe_2H_003_x1 - {-1555664091, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{52f}, WeaponDamageMax = new List{61f}}}, //ItemName: Unique_Axe_2H_001_x1 - {-1554478170, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{265f}, WeaponDamageMax = new List{341f}}}, //ItemName: Unique_Axe_2H_011_x1 - {-1554514107, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{779f}, WeaponDamageMax = new List{945f}}}, //ItemName: Unique_Axe_2H_010_x1 - {-1555376595, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{507f}, WeaponDamageMax = new List{613f}}}, //ItemName: Unique_Axe_2H_009_x1 - {-1895240227, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{30f}}}, //ItemName: Unique_Mace_1H_002_x1 - {-1895132416, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{37f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Mace_1H_005_x1 - {-1895060542, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{50f}, WeaponDamageMax = new List{92f}}}, //ItemName: Unique_Mace_1H_007_x1 - {-1895204290, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{73f}, WeaponDamageMax = new List{135f}}}, //ItemName: Unique_Mace_1H_003_x1 - {-1895024605, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{113f}, WeaponDamageMax = new List{208f}}}, //ItemName: Unique_Mace_1H_008_x1 - {-1894988668, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{316f}, WeaponDamageMax = new List{585f}}}, //ItemName: Unique_Mace_1H_009_x1 - {-1895276164, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{160f}, WeaponDamageMax = new List{296f}}}, //ItemName: Unique_Mace_1H_001_x1 - {-1894090243, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{186f}, WeaponDamageMax = new List{344f}}}, //ItemName: Unique_Mace_1H_011_x1 - {59108159, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{22f}, WeaponDamageMax = new List{23f}}}, //ItemName: Unique_Mace_2H_003_x1 - {59036285, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{43f}}}, //ItemName: Unique_Mace_2H_001_x1 - {60258143, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{60f}, WeaponDamageMax = new List{64f}}}, //ItemName: Unique_Mace_2H_012_x1 - {60186269, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{106f}, WeaponDamageMax = new List{113f}}}, //ItemName: Unique_Mace_2H_010_x1 - {59215970, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{1009f}, WeaponDamageMax = new List{1108f}}}, //ItemName: Unique_Mace_2H_006_x1 - {59072222, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{551f}, WeaponDamageMax = new List{601f}}}, //ItemName: Unique_Mace_2H_002_x1 - {59323781, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{651f}, WeaponDamageMax = new List{712f}}}, //ItemName: Unique_Mace_2H_009_x1 - {-1988008929, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{36f}}}, //ItemName: Unique_Polearm_002_x1 - {-1987937055, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{56f}, WeaponDamageMax = new List{66f}}}, //ItemName: Unique_Polearm_004_x1 - {-1987972992, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{340f}, WeaponDamageMax = new List{409f}}}, //ItemName: Unique_Polearm_003_x1 - {-1988044866, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{562f}, WeaponDamageMax = new List{680f}}}, //ItemName: Unique_Polearm_001_x1 - {2135115084, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Spear_004_x1 - {2135007273, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Spear_001_x1 - {2135043210, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{180f}, WeaponDamageMax = new List{267f}}}, //ItemName: Unique_Spear_002_x1 - {2135079147, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{209f}, WeaponDamageMax = new List{310f}}}, //ItemName: Unique_Spear_003_x1 - {1960603706, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Bow_005_x1 - {1960675580, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{143f}, WeaponDamageMax = new List{815f}}}, //ItemName: Unique_Bow_007_x1 - {1960711517, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{12f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Bow_008_x1 - {1960459958, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{16f}, WeaponDamageMax = new List{91f}}}, //ItemName: Unique_Bow_001_x1 - {1961789627, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{30f}, WeaponDamageMax = new List{171f}}}, //ItemName: Unique_Bow_015_x1 - {1961609942, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{143f}, WeaponDamageMax = new List{815f}}}, //ItemName: Unique_Bow_010_x1 - {1960747454, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{80f}, WeaponDamageMax = new List{458f}}}, //ItemName: Unique_Bow_009_x1 - {-174003757, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_XBow_006_x1 - {-174183442, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{27f}, WeaponDamageMax = new List{32f}}}, //ItemName: Unique_XBow_001_x1 - {-172997521, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{779f}, WeaponDamageMax = new List{945f}}}, //ItemName: Unique_XBow_011_x1 - {-174075631, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{64f}, WeaponDamageMax = new List{75f}}}, //ItemName: Unique_XBow_004_x1 - {-172961584, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{233f}, WeaponDamageMax = new List{278f}}}, //ItemName: Unique_XBow_012_x1 - {-174147505, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{296f}, WeaponDamageMax = new List{355f}}}, //ItemName: Unique_XBow_002_x1 - {-174111568, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{413f}, WeaponDamageMax = new List{498f}}}, //ItemName: Unique_XBow_003_x1 - {-1153421170, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{126f}, WeaponDamageMax = new List{714f}}}, //ItemName: Unique_HandXBow_006_x1 - {-1153457107, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{26f}, WeaponDamageMax = new List{148f}}}, //ItemName: Unique_HandXBow_005_x1 - {-1153493044, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{181f}}}, //ItemName: Unique_HandXBow_004_x1 - {-1153385233, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{42f}, WeaponDamageMax = new List{240f}}}, //ItemName: Unique_HandXBow_007_x1 - {-1152378997, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_012_x1 - {-1512370403, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{31f}}}, //ItemName: Unique_Mighty_1H_006_x1 - {-1511328230, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{45f}, WeaponDamageMax = new List{82f}}}, //ItemName: Unique_Mighty_1H_012_x1 - {-1512550088, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{249f}, WeaponDamageMax = new List{461f}}}, //ItemName: Unique_Mighty_1H_001_x1 - {-1512406340, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_005_x1 - {442984219, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{815f}, WeaponDamageMax = new List{894f}}}, //ItemName: Unique_Mighty_2H_012_x1 - {441870172, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{62f}}}, //ItemName: Unique_Mighty_2H_004_x1 - {441762361, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{381f}, WeaponDamageMax = new List{414f}}}, //ItemName: Unique_Mighty_2H_001_x1 - {441942046, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{531f}, WeaponDamageMax = new List{579f}}}, //ItemName: Unique_Mighty_2H_006_x1 - {-1097809050, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{20f}}}, //ItemName: Unique_Fist_003_x1 - {-1097665302, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{29f}}}, //ItemName: Unique_Fist_007_x1 - {-1096623129, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{26f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Fist_013_x1 - {-1096659066, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{35f}, WeaponDamageMax = new List{81f}}}, //ItemName: Unique_Fist_012_x1 - {-1097773113, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{168f}, WeaponDamageMax = new List{392f}}}, //ItemName: Unique_Fist_004_x1 - {-1097737176, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{56f}, WeaponDamageMax = new List{130f}}}, //ItemName: Unique_Fist_005_x1 - {-1097701239, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{90f}, WeaponDamageMax = new List{210f}}}, //ItemName: Unique_Fist_006_x1 - {-1097629365, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_008_x1 - {-1097593428, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_009_x1 - {446400306, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{14f}, WeaponDamageMax = new List{25f}}}, //ItemName: Unique_CombatStaff_2H_002_x1 - {446615928, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{564f}, WeaponDamageMax = new List{1046f}}}, //ItemName: Unique_CombatStaff_2H_008_x1 - {446508117, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{43f}, WeaponDamageMax = new List{79f}}}, //ItemName: Unique_CombatStaff_2H_005_x1 - {446579991, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{63f}, WeaponDamageMax = new List{115f}}}, //ItemName: Unique_CombatStaff_2H_007_x1 - {446436243, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{113f}, WeaponDamageMax = new List{208f}}}, //ItemName: Unique_CombatStaff_2H_003_x1 - {446472180, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{564f}, WeaponDamageMax = new List{1046f}}}, //ItemName: Unique_CombatStaff_2H_004_x1 - {446651865, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{333f}, WeaponDamageMax = new List{616f}}}, //ItemName: Unique_CombatStaff_2H_009_x1 - {-1209646647, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Staff_008_x1 - {-1209862269, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{706f}, WeaponDamageMax = new List{1054f}}}, //ItemName: Unique_Staff_002_x1 - {-1209898206, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{98f}, WeaponDamageMax = new List{144f}}}, //ItemName: Unique_Staff_001_x1 - {-1209718521, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{191f}, WeaponDamageMax = new List{283f}}}, //ItemName: Unique_Staff_006_x1 - {-1209826332, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{258f}, WeaponDamageMax = new List{382f}}}, //ItemName: Unique_Staff_003_x1 - {-1209682584, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{329f}, WeaponDamageMax = new List{489f}}}, //ItemName: Unique_Staff_007_x1 - {-1209610710, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{460f}, WeaponDamageMax = new List{685f}}}, //ItemName: Unique_Staff_009_x1 - {1859698842, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{15f}, WeaponDamageMax = new List{27f}}}, //ItemName: Unique_Wand_003_x1 - {1859806653, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Wand_006_x1 - {1859662905, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{107f}}}, //ItemName: Unique_Wand_002_x1 - {1860776952, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{77f}, WeaponDamageMax = new List{142f}}}, //ItemName: Unique_Wand_010_x1 - {1859914464, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{107f}}}, //ItemName: Unique_Wand_009_x1 - {1860884763, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{118f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_Wand_013_x1 - {162390824, new UniqueItemLayout{ Armor = new List{1760f, 2024f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_011_x1 - {161420525, new UniqueItemLayout{ Armor = new List{320f, 383f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_007_x1 - {161312714, new UniqueItemLayout{ Armor = new List{580f, 619f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_004_x1 - {161456462, new UniqueItemLayout{ Armor = new List{660f, 699f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_008_x1 - {161240840, new UniqueItemLayout{ Armor = new List{860f, 959f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_002_x1 - {161492399, new UniqueItemLayout{ Armor = new List{1060f, 1259f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_009_x1 - {334161780, new UniqueItemLayout{ Armor = new List{54f, 71f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_001_x1 - {334197717, new UniqueItemLayout{ Armor = new List{72f, 89f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_002_x1 - {334377402, new UniqueItemLayout{ Armor = new List{186f, 216f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_007_x1 - {334269591, new UniqueItemLayout{ Armor = new List{217f, 246f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_004_x1 - {334233654, new UniqueItemLayout{ Armor = new List{360f, 396f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_003_x1 - {335347701, new UniqueItemLayout{ Armor = new List{660f, 769f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_011_x1 - {334341465, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_006_x1 - {576508066, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_014_x1 - {575214334, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_001_x1 - {575429956, new UniqueItemLayout{ Armor = new List{192f, 209f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_007_x1 - {576400255, new UniqueItemLayout{ Armor = new List{250f, 279f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_011_x1 - {575250271, new UniqueItemLayout{ Armor = new List{280f, 308f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_002_x1 - {575286208, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_003_x1 - {1941251797, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_010_x1 - {1940389309, new UniqueItemLayout{ Armor = new List{44f, 57f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_009_x1 - {1940101813, new UniqueItemLayout{ Armor = new List{130f, 148f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_001_x1 - {1940245561, new UniqueItemLayout{ Armor = new List{514f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_005_x1 - {1940317435, new UniqueItemLayout{ Armor = new List{280f, 308f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_007_x1 - {1940353372, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_008_x1 - {1770784374, new UniqueItemLayout{ Armor = new List{24f, 27f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_002_x1 - {1770856248, new UniqueItemLayout{ Armor = new List{440f, 506f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_004_x1 - {1771898421, new UniqueItemLayout{ Armor = new List{88f, 107f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_010_x1 - {1770748437, new UniqueItemLayout{ Armor = new List{108f, 127f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_001_x1 - {1770999996, new UniqueItemLayout{ Armor = new List{145f, 164f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_008_x1 - {1770820311, new UniqueItemLayout{ Armor = new List{165f, 179f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_003_x1 - {1770892185, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_005_x1 - {1771035933, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_009_x1 - {923219200, new UniqueItemLayout{ Armor = new List{16f, 19f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_004_x1 - {923291074, new UniqueItemLayout{ Armor = new List{41f, 49f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_006_x1 - {923183263, new UniqueItemLayout{ Armor = new List{63f, 75f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_003_x1 - {923147326, new UniqueItemLayout{ Armor = new List{158f, 178f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_002_x1 - {923111389, new UniqueItemLayout{ Armor = new List{366f, 421f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_001_x1 - {923327011, new UniqueItemLayout{ Armor = new List{200f, 219f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_007_x1 - {923255137, new UniqueItemLayout{ Armor = new List{220f, 261f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_005_x1 - {1316774087, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_012_x1 - {1316989709, new UniqueItemLayout{ Armor = new List{87f, 107f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_018_x1 - {1316702213, new UniqueItemLayout{ Armor = new List{138f, 167f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_010_x1 - {1315552229, new UniqueItemLayout{ Armor = new List{217f, 246f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_001_x1 - {1315731914, new UniqueItemLayout{ Armor = new List{285f, 321f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_006_x1 - {1317025646, new UniqueItemLayout{ Armor = new List{660f, 709f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_019_x1 - {1315588166, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_002_x1 - {-774273638, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_007_x1 - {-774453323, new UniqueItemLayout{ Armor = new List{162f, 191f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_002_x1 - {-774489260, new UniqueItemLayout{ Armor = new List{217f, 246f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_001_x1 - {-774345512, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_005_x1 - {-774309575, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_006_x1 - {-1959785708, new UniqueItemLayout{ Armor = new List{144f, 164f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_001_x1 - {-1959749771, new UniqueItemLayout{ Armor = new List{240f, 252f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_002_x1 - {-1959570086, new UniqueItemLayout{ Armor = new List{586f, 674f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_007_x1 - {-1959713834, new UniqueItemLayout{ Armor = new List{353f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_003_x1 - {635723798, new UniqueItemLayout{ Armor = new List{36f, 41f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_005_x1 - {635687861, new UniqueItemLayout{ Armor = new List{60f, 80f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_004_x1 - {635615987, new UniqueItemLayout{ Armor = new List{126f, 149f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_002_x1 - {635651924, new UniqueItemLayout{ Armor = new List{186f, 224f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_003_x1 - {635580050, new UniqueItemLayout{ Armor = new List{225f, 254f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_001_x1 - {635759735, new UniqueItemLayout{ Armor = new List{255f, 284f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_006_x1 - {635795672, new UniqueItemLayout{ Armor = new List{322f, 359f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_007_x1 - {635831609, new UniqueItemLayout{ Armor = new List{360f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_008_x1 - {-840161419, new UniqueItemLayout{ Armor = new List{36f, 41f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_006_x1 - {-840197356, new UniqueItemLayout{ Armor = new List{84f, 96f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_005_x1 - {-840305167, new UniqueItemLayout{ Armor = new List{255f, 284f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_002_x1 - {-840341104, new UniqueItemLayout{ Armor = new List{360f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_001_x1 - {-840089545, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_008_x1 - {375428350, new UniqueItemLayout{ Armor = new List{150f, 185f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_003_x1 - {375356476, new UniqueItemLayout{ Armor = new List{285f, 322f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_001_x1 - {375464287, new UniqueItemLayout{ Armor = new List{360f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_004_x1 - {221630008, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_001_x1 - {221773756, new UniqueItemLayout{ Armor = new List{217f, 254f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_005_x1 - {221665945, new UniqueItemLayout{ Armor = new List{360f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_002_x1 - {924139183, new UniqueItemLayout{ Armor = new List{53f, 61f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_004_x1 - {924211057, new UniqueItemLayout{ Armor = new List{74f, 85f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_006_x1 - {924246994, new UniqueItemLayout{ Armor = new List{112f, 132f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_007_x1 - {924067309, new UniqueItemLayout{ Armor = new List{165f, 199f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_002_x1 - {924031372, new UniqueItemLayout{ Armor = new List{200f, 225f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_001_x1 - {924103246, new UniqueItemLayout{ Armor = new List{226f,252f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_003_x1 - {924282931, new UniqueItemLayout{ Armor = new List{286f, 318f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_008_x1 - {924175120, new UniqueItemLayout{ Armor = new List{320f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_005_x1 - {-1511400104, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_010_x1 - {-1511364167, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_011_x1 - {-1153600855, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_001_x1 - {-1153564918, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_002_x1 - {1860848826, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{118f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_Wand_012_x1 - {-1096730940, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_010_x1 - {-1096695003, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_011_x1 - {1784730527, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{71f}, WeaponDamageMax = new List{288f}}}, //ItemName: Unique_CeremonialDagger_009_x1 - {334449276, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_009_x1 - {-1153528981, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_003_x1 - {221809693, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_006_x1 - {1941287734, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_011_x1 - {334413339, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_008_x1 - {442912345, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{531f}, WeaponDamageMax = new List{579f}}}, //ItemName: Unique_Mighty_2H_010_x1 - {1316810024, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_013_x1 - {924318868, new UniqueItemLayout{ Armor = new List{320f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_009_x1 - {575465893, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_008_x1 - {1941323671, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_012_x1 - {335311764, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_010_x1 - {1316845961, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_014_x1 - {1770928122, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_006_x1 - {635867546, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_009_x1 - {446364369, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{333f}, WeaponDamageMax = new List{616f}}}, //ItemName: Unique_CombatStaff_2H_001_x1 - {1316881898, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_015_x1 - {1770964059, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_007_x1 - {-774237701, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_008_x1 - {-840125482, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_007_x1 - {1316917835, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_016_x1 - {1941359608, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_013_x1 - {1941575230, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_019_x1 - {-115330289, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_ChestArmor_028_x1 - {1772078106, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_015_x1 - {-773231465, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_013_x1 - {1318067819, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_025_x1 - {-1959606023, new UniqueItemLayout{ Armor = new List{586f, 674f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_006_x1 - {1312521693, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{168f}, WeaponDamageMax = new List{392f}}}, //ItemName: Unique_Sword_1H_018_x1 - {335383638, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_012_x1 - {-773339276, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_010_x1 - {576544003, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_015_x1 - {1941431482, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_015_x1 - {1941503356, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_017_x1 - {1771970295, new UniqueItemLayout{ Armor = new List{440f, 506f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_012_x1 - {-773267402, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_012_x1 - {-1959534149, new UniqueItemLayout{ Armor = new List{586f, 674f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_008_x1 - {923398885, new UniqueItemLayout{ Armor = new List{366f, 421f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_009_x1 - {1318103756, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_026_x1 - {335455512, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_014_x1 - {-1958384165, new UniqueItemLayout{ Armor = new List{586f, 674f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_017_x1 - {575501830, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_009_x1 - {-774201764, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_009_x1 - {1941395545, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_014_x1 - {924261373, new UniqueItemLayout{ Armor = new List{366f, 421f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_010_x1 - {1772006232, new UniqueItemLayout{ Armor = new List{440f, 506f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_013_x1 - {335491449, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_015_x1 - {1318139693, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_027_x1 - {1772042169, new UniqueItemLayout{ Armor = new List{440f, 506f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_014_x1 - {-773195528, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_014_x1 - {-1959498212, new UniqueItemLayout{ Armor = new List{586f, 674f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_009_x1 - {924297310, new UniqueItemLayout{ Armor = new List{366f, 421f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_011_x1 - {576615877, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_017_x1 - {1941539293, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_018_x1 - {335527386, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_016_x1 - {162426761, new UniqueItemLayout{ Armor = new List{1060f, 1259f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_012_x1 - {-1511220419, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{249f}, WeaponDamageMax = new List{461f}}}, //ItemName: Unique_Mighty_1H_015_x1 - {1861064448, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{193f}, WeaponDamageMax = new List{357f}}}, //ItemName: Unique_Wand_018_x1 - {1785628952, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{117f}, WeaponDamageMax = new List{469f}}}, //ItemName: Unique_CeremonialDagger_011_x1 - {-1152235249, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{126f}, WeaponDamageMax = new List{714f}}}, //ItemName: Unique_HandXBow_016_x1 - {-1096551255, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{168f}, WeaponDamageMax = new List{392f}}}, //ItemName: Unique_Fist_015_x1 - {786248551, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{249f}, WeaponDamageMax = new List{461f}}}, //ItemName: Unique_Axe_1H_013_x1 - {-973813217, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Dagger_008_x1 - {-838272988, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Offhand_001_x1 - {1311084213, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Sword_1H_001_x1 - {1312234197, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Sword_1H_010_x1 - {1313456055, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{39f}}}, //ItemName: Unique_Sword_1H_021_x1 - {-1028276902, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{93f}, WeaponDamageMax = new List{137f}}}, //ItemName: Unique_Sword_2H_014_x1 - {-1894126180, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Mace_1H_010_x1 - {-934929383, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Dagger_101_x1 - {-934893446, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Dagger_102_x1 - {-934857509, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Dagger_103_x1 - {1350219606, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_101_x1 - {1350255543, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_102_x1 - {1350291480, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_103_x1 - {1350327417, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_104_x1 - {1350363354, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_105_x1 - {1350399291, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_106_x1 - {1350435228, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_107_x1 //nothing - {1350471165, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_108_x1 - {1350507102, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_109_x1 - {1351369590, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_110_x1 - {1351405527, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_111_x1 - {1351441464, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_112_x1 - {-990435241, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_Sword_2H_101_x1 - {-990399304, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_Sword_2H_102_x1 - {-990363367, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_Sword_2H_103_x1 - {824126149, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{3f}}}, //ItemName: Unique_Axe_1H_101_x1 - {824162086, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{3f}}}, //ItemName: Unique_Axe_1H_102_x1 - {824198023, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{3f}}}, //ItemName: Unique_Axe_1H_103_x1 - {-1516528698, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Axe_2H_101_x1 - {-1516492761, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Axe_2H_102_x1 - {-1516456824, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Axe_2H_103_x1 - {-1516420887, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Axe_2H_104_x1 - {-1856140771, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Mace_1H_101_x1 - {-1856104834, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Mace_1H_102_x1 - {-1856068897, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Mace_1H_103_x1 - {98243552, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Mace_2H_103_x1 - {98279489, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Mace_2H_104_x1 - {-1948909473, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_Polearm_101_x1 - {-1948873536, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_Polearm_102_x1 - {-2120824630, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Spear_101_x1 - {-2120788693, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Spear_102_x1 - {1999595351, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{1f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Bow_101_x1 - {1999631288, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{1f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Bow_102_x1 - {1999667225, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{1f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Bow_103_x1 - {1999703162, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{1f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Bow_104_x1 - {-135048049, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{9f}}}, //ItemName: Unique_Xbow_101_x1 - {-135012112, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{9f}}}, //ItemName: Unique_Xbow_102_x1 - {-1170762813, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{10f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Staff_101_x1 - {-1170726876, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{10f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Staff_102_x1 - {-1170690939, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{10f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Staff_103_x1 - {-1170655002, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{10f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Staff_104_x1 - {200340296, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_101_x1 - {200376233, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_102_x1 - {200412170, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_103_x1 - {200448107, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_104_x1 - {200484044, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_105_x1 //nothing - {200519981, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_106_x1 //nothing - {200555918, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_107_x1 - {373333110, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_102_x1 - {373369047, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_103_x1 - {-1920650315, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_101_x1 - {-1920614378, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_102_x1 - {-1920578441, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_103_x1 - {614349727, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_101_x1 - {614385664, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_102_x1 - {614421601, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_103_x1 - {1979273143, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_102_x1 - {1979309080, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_103_x1 - {1979345017, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_104_x1 - {1809883830, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_101_x1 - {1809919767, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_102_x1 - {1809955704, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_103_x1 - {1809991641, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_104_x1 - {1810027578, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_105_x1 - {1810063515, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_106_x1 - {1810099452, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_107_x1 - {1810135389, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_108_x1 - {962246782, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_101_x1 - {962282719, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_102_x1 - {962318656, new UniqueItemLayout{ Armor = new List{366f, 421f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_103_x1 - {962354593, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_104_x1 - {962390530, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_105_x1 - {962426467, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_106_x1 - {962462404, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_107_x1 - {962498341, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_108_x1 //nothing - {1354687622, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_101_x1 - {1354723559, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_102_x1 - {-735353867, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_101_x1 - {-735317930, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_102_x1 - {-1473414695, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Mighty_1H_101_x1 - {-1473378758, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Mighty_1H_102_x1 - {-1473342821, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Mighty_1H_103_x1 - {-1473306884, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Mighty_1H_104_x1 - {480897754, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{15f}, WeaponDamageMax = new List{16f}}}, //ItemName: Unique_Mighty_2H_101_x1 - {963166765, new UniqueItemLayout{ Armor = new List{26f, 31f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_101_x1 - {963202702, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_102_x1 //bugged? - {963238639, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_103_x1 //placeholder - {963274576, new UniqueItemLayout{ Armor = new List{26f, 31f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_104_x1 - {963310513, new UniqueItemLayout{ Armor = new List{26f, 31f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_105_x1 - {820499474, new UniqueItemLayout{ Armor = new List{1980f, 2277f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_101_x1 - {820535411, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_102_x1 - {820571348, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_103_x1 - {820607285, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_104_x1 - {820643222, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_105_x1 - {820679159, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_106_x1 - {820715096, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_107_x1 - {820751033, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_108_x1 - {-1791195345, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{192f}, WeaponDamageMax = new List{355f}}}, //ItemName: Unique_Flail_1H_101_x1 - {-1791159408, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_102_x1 - {-1791123471, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_103_x1 - {-1791087534, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_104_x1 - {-1791051597, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_105_x1 - {-1791015660, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_106_x1 - {-1790979723, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_107_x1 - {163117104, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Flail_2H_101_x1 - {163153041, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Flail_2H_102_x1 - {163188978, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Flail_2H_103_x1 - {163224915, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Flail_2H_104_x1 - {-1114465462, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_HandXBow_101_x1 - {-1114429525, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_HandXBow_102_x1 - {260765401, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_101_x1 - {260801338, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_102_x1 - {674715443, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_101_x1 - {674751380, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_102_x1 - {674787317, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_103_x1 - {485499762, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{20f}}}, //ItemName: Unique_CombatStaff_2H_101_x1 - {485535699, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{20f}}}, //ItemName: Unique_CombatStaff_2H_102_x1 - {-1058745531, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Fist_101_x1 - {-1058709594, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Fist_102_x1 - {-801205711, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_101_x1 - {-801169774, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_102_x1 - {1823578424, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_CeremonialDagger_101_x1 - {1823614361, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_CeremonialDagger_102_x1 - {414491869, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_101_x1 - {414527806, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_102_x1 - {414563743, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_103_x1 - {414599680, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_104_x1 - {1898762361, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{9f}}}, //ItemName: Unique_Wand_101_x1 - {1898798298, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{9f}}}, //ItemName: Unique_Wand_102_x1 - {-885483983, new UniqueItemLayout{ Armor = new List{8f, 8f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_Set_02_x1 - {1784952569, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_Set_02_x1 - {-1394481455, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_Set_02_x1 - {-1394445518, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_Set_03_x1 - {-1993170861, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_05_x1 - {-1981767693, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_05_x1 - {258927396, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_05_x1 - {826009651, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_05_x1 - {-801761292, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_05_x1 - {2058393501, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_05_x1 - {-1993134924, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_06_x1 - {-1981731756, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_06_x1 - {258963333, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_06_x1 - {826045588, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_06_x1 - {-801725355, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_06_x1 - {2058429438, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_06_x1 - {-1993098987, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_07_x1 - {-1981695819, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_07_x1 - {258999270, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_07_x1 - {826081525, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_07_x1 - {-801689418, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_07_x1 - {2058465375, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_07_x1 - {-1993063050, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_08_x1 - {-1981659882, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_08_x1 - {259035207, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_08_x1 - {826117462, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_08_x1 - {-801653481, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_08_x1 - {2058501312, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_08_x1 - {-1993027113, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_09_x1 - {-1981623945, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_09_x1 - {259071144, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_09_x1 - {826153399, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_09_x1 - {-801617544, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_09_x1 - {2058537249, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_09_x1 - {-1992164625, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_10_x1 - {-1980761457, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_10_x1 - {259933632, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_10_x1 - {827015887, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_10_x1 - {-800755056, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_10_x1 - {2059399737, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_10_x1 - {2059435674, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_11_x1 - {-1980725520, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_11_x1 - {-1992128688, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_11_x1 - {-1992092751, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_12_x1 - {-1980689583, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_12_x1 - {2059471611, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_12_x1 - {1786138490, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_Set_12_x1^ - {260041443, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_13_x1 - {827123698, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_13_x1 - {-800647245, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_13_x1 - {2059507548, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_13_x1 - {260077380, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_14_x1 - {827159635, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_14_x1 - {-800611308, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_14_x1 - {2059543485, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_14_x1 - {2059579422, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_15_x1 - {-1991984940, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_15_x1 - {827195572, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_15_x1 - {-1980581772, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_15_x1 - {-800575371, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_15_x1 - {-1991949003, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_16_x1 - {-1980545835, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_16_x1 - {260149254, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_16_x1 - {827231509, new UniqueItemLayout{ Armor = new List{033f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_16_x1 - {-800539434, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_16_x1 - {2059615359, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_16_x1 - {974107120, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Promo_01_x1 - {974143057, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Promo_02_x1 - {595814643, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_CeremonialDagger_Promo_01_x1 - {2032005920, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Fist_Promo_01_x1 - {1226090826, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_Promo_01_x1 - {-44923323, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_HandXBow_Promo_01_x1 - {-96858155, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{15f}, WeaponDamageMax = new List{16f}}}, //ItemName: Unique_Mighty_2H_Promo_01_x1 - {229247441, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_Promo_01_x1 - {229283378, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_Promo_02_x1 + // Like items with the suffix _1xx (Primals), items with the suffix _x1 (usually indicating the level 70 version of the Reaper of Souls expansion) retain the same name as the base legendary item. + {-973992902, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Dagger_003_x1 → The Barber + {-973849154, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Dagger_007_x1 → Pig Sticker + {-974028839, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{36f}, WeaponDamageMax = new List{108f}}}, //ItemName: Unique_Dagger_002_x1 → Wizardspike + {-973885091, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{107f}, WeaponDamageMax = new List{321f}}}, //ItemName: Unique_Dagger_006_x1 → Kill + {-972914792, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{67f}, WeaponDamageMax = new List{203f}}}, //ItemName: Unique_Dagger_010_x1 → Eun-jang-do + {1784514905, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{24f}}}, //ItemName: Unique_CeremonialDagger_003_x1 → The Gidbinn + {1784622716, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{117f}, WeaponDamageMax = new List{469f}}}, //ItemName: Unique_CeremonialDagger_006_x1 → Deadly Rebirth + {1784550842, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{18f}, WeaponDamageMax = new List{71f}}}, //ItemName: Unique_CeremonialDagger_004_x1 → The Spider Queen's Grasp + {1784443031, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{129f}}}, //ItemName: Unique_CeremonialDagger_001_x1 → Anessazi Edge + {1784478968, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{54f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_CeremonialDagger_002_x1 → Voo's Juicer + {1784694590, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{71f}, WeaponDamageMax = new List{288f}}}, //ItemName: Unique_CeremonialDagger_008_x1 → Starmetal Kukri + {1312485756, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{12f}, WeaponDamageMax = new List{28f}}}, //ItemName: Unique_Sword_1H_017_x1 → Devil Tongue + {1311120150, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{48f}}}, //ItemName: Unique_Sword_1H_002_x1 → Wildwood + {1311156087, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{73f}}}, //ItemName: Unique_Sword_1H_003_x1 → Azurewrath + {1312377945, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{65f}, WeaponDamageMax = new List{151f}}}, //ItemName: Unique_Sword_1H_014_x1 → Spectrum + {1311192024, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{65f}, WeaponDamageMax = new List{151f}}}, //ItemName: Unique_Sword_1H_004_x1 → Doombringer + {1312557630, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{168f}, WeaponDamageMax = new List{392f}}}, //ItemName: Unique_Sword_1H_019_x1 → Little Rogue + {1311299835, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{90f}, WeaponDamageMax = new List{210f}}}, //ItemName: Unique_Sword_1H_007_x1 → The Ancient Bonesaber of Zumakalis + {1312270134, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Sword_1H_011_x1 → Sever + {1312306071, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Sword_1H_012_x1 → Rimeheart + {-1029534697, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{24f}}}, //ItemName: Unique_Sword_2H_002_x1 → The Zweihander + {-1028348776, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{45f}}}, //ItemName: Unique_Sword_2H_012_x1 → The Grandfather + {-1029462823, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{46f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Sword_2H_004_x1 → Scourge + {-1028384713, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{93f}, WeaponDamageMax = new List{137f}}}, //ItemName: Unique_Sword_2H_011_x1 → Faithful Memory + {-1029355012, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{158f}, WeaponDamageMax = new List{234f}}}, //ItemName: Unique_Sword_2H_007_x1 → Blade of Prophecy + {-1029319075, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{269f}, WeaponDamageMax = new List{399f}}}, //ItemName: Unique_Sword_2H_008_x1 → Stalgard's Decimator + {-1029498760, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{317f}, WeaponDamageMax = new List{471f}}}, //ItemName: Unique_Sword_2H_003_x1 → Corrupted Ashbringer + {-1028420650, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{374f}, WeaponDamageMax = new List{556f}}}, //ItemName: Unique_Sword_2H_010_x1 → Cam's Rebuttal + {-1029570634, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{374f}, WeaponDamageMax = new List{556f}}}, //ItemName: Unique_Sword_2H_001_x1 → Blackguard + {785062630, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{7f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_Axe_1H_003_x1 → The Butcher's Sickle + {785098567, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{249f}, WeaponDamageMax = new List{461f}}}, //ItemName: Unique_Axe_1H_004_x1 → Hack + {784990756, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{47f}, WeaponDamageMax = new List{86f}}}, //ItemName: Unique_Axe_1H_001_x1 → Genzaniku + {785170441, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{96f}, WeaponDamageMax = new List{177f}}}, //ItemName: Unique_Axe_1H_006_x1 → Flesh-Tearer + {785206378, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{129f}, WeaponDamageMax = new List{238f}}}, //ItemName: Unique_Axe_1H_007_x1 → The Burning Axe of Sankis + {785134504, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{149f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_Axe_1H_005_x1 → Sky Splitter + {-1555592217, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{24f}}}, //ItemName: Unique_Axe_2H_003_x1 → Messerschmidt's Reaver + {-1555664091, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{52f}, WeaponDamageMax = new List{61f}}}, //ItemName: Unique_Axe_2H_001_x1 → The Executioner + {-1554478170, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{265f}, WeaponDamageMax = new List{341f}}}, //ItemName: Unique_Axe_2H_011_x1 → Skorn + {-1554514107, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{779f}, WeaponDamageMax = new List{945f}}}, //ItemName: Unique_Axe_2H_010_x1 → Cinder Switch + {-1555376595, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{507f}, WeaponDamageMax = new List{613f}}}, //ItemName: Unique_Axe_2H_009_x1 → Butcher's Carver + {-1895240227, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{30f}}}, //ItemName: Unique_Mace_1H_002_x1 → Nutcracker + {-1895132416, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{37f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Mace_1H_005_x1 → Solanium + {-1895060542, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{50f}, WeaponDamageMax = new List{92f}}}, //ItemName: Unique_Mace_1H_007_x1 → Odyn Son + {-1895204290, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{73f}, WeaponDamageMax = new List{135f}}}, //ItemName: Unique_Mace_1H_003_x1 → Neanderthal + {-1895024605, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{113f}, WeaponDamageMax = new List{208f}}}, //ItemName: Unique_Mace_1H_008_x1 → Jace's Hammer of Vigilance + {-1894988668, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{316f}, WeaponDamageMax = new List{585f}}}, //ItemName: Unique_Mace_1H_009_x1 → Fulminator + {-1895276164, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{160f}, WeaponDamageMax = new List{296f}}}, //ItemName: Unique_Mace_1H_001_x1 → Telranden's Hand + {-1894090243, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{186f}, WeaponDamageMax = new List{344f}}}, //ItemName: Unique_Mace_1H_011_x1 → Sun Keeper + {59108159, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{22f}, WeaponDamageMax = new List{23f}}}, //ItemName: Unique_Mace_2H_003_x1 → Skywarden + {59036285, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{43f}}}, //ItemName: Unique_Mace_2H_001_x1 → Sledge of Athskeleng + {60258143, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{60f}, WeaponDamageMax = new List{64f}}}, //ItemName: Unique_Mace_2H_012_x1 → The Furnace + {60186269, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{106f}, WeaponDamageMax = new List{113f}}}, //ItemName: Unique_Mace_2H_010_x1 → Soulsmasher + {59215970, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{1009f}, WeaponDamageMax = new List{1108f}}}, //ItemName: Unique_Mace_2H_006_x1 → Arthef's Spark of Life + {59072222, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{551f}, WeaponDamageMax = new List{601f}}}, //ItemName: Unique_Mace_2H_002_x1 → Cataclysm + {59323781, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{651f}, WeaponDamageMax = new List{712f}}}, //ItemName: Unique_Mace_2H_009_x1 → Schaeffer's Hammer + {-1988008929, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{31f}, WeaponDamageMax = new List{36f}}}, //ItemName: Unique_Polearm_002_x1 → Standoff + {-1987937055, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{56f}, WeaponDamageMax = new List{66f}}}, //ItemName: Unique_Polearm_004_x1 → Bovine Bardiche + {-1987972992, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{340f}, WeaponDamageMax = new List{409f}}}, //ItemName: Unique_Polearm_003_x1 → Heart Slaughter + {-1988044866, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{562f}, WeaponDamageMax = new List{680f}}}, //ItemName: Unique_Polearm_001_x1 → Vigilance + {2135115084, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Spear_004_x1 → The Three Hundredth Spear + {2135007273, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Spear_001_x1 → Scrimshaw + {2135043210, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{180f}, WeaponDamageMax = new List{267f}}}, //ItemName: Unique_Spear_002_x1 → Arreat's Law + {2135079147, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{209f}, WeaponDamageMax = new List{310f}}}, //ItemName: Unique_Spear_003_x1 → Empyrean Messenger + {1960603706, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Bow_005_x1 → The Raven's Wing + {1960675580, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{143f}, WeaponDamageMax = new List{815f}}}, //ItemName: Unique_Bow_007_x1 → Etrayu + {1960711517, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{12f}, WeaponDamageMax = new List{67f}}}, //ItemName: Unique_Bow_008_x1 → Kridershot + {1960459958, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{16f}, WeaponDamageMax = new List{91f}}}, //ItemName: Unique_Bow_001_x1 → Uskang + {1961789627, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{30f}, WeaponDamageMax = new List{171f}}}, //ItemName: Unique_Bow_015_x1 → Cluckeye + {1961609942, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{143f}, WeaponDamageMax = new List{815f}}}, //ItemName: Unique_Bow_010_x1 → Sydyru Crust + {1960747454, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{80f}, WeaponDamageMax = new List{458f}}}, //ItemName: Unique_Bow_009_x1 → Windforce + {-174003757, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_XBow_006_x1 → Bakkan Caster + {-174183442, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{27f}, WeaponDamageMax = new List{32f}}}, //ItemName: Unique_XBow_001_x1 → Buriza-Do Kyanon + {-172997521, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{779f}, WeaponDamageMax = new List{945f}}}, //ItemName: Unique_XBow_011_x1 → Demon Machine + {-174075631, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{64f}, WeaponDamageMax = new List{75f}}}, //ItemName: Unique_XBow_004_x1 → Pus Spitter + {-172961584, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{233f}, WeaponDamageMax = new List{278f}}}, //ItemName: Unique_XBow_012_x1 → Manticore + {-174147505, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{296f}, WeaponDamageMax = new List{355f}}}, //ItemName: Unique_XBow_002_x1 → Hellrack + {-174111568, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{413f}, WeaponDamageMax = new List{498f}}}, //ItemName: Unique_XBow_003_x1 → Chanon Bolter + {-1153421170, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{126f}, WeaponDamageMax = new List{714f}}}, //ItemName: Unique_HandXBow_006_x1 → Helltrapper + {-1153457107, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{26f}, WeaponDamageMax = new List{148f}}}, //ItemName: Unique_HandXBow_005_x1 → Natalya's Slayer + {-1153493044, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{32f}, WeaponDamageMax = new List{181f}}}, //ItemName: Unique_HandXBow_004_x1 → Calamity + {-1153385233, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{42f}, WeaponDamageMax = new List{240f}}}, //ItemName: Unique_HandXBow_007_x1 → K'mar Tenclip + {-1152378997, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_012_x1 → Danetta's Revenge + {-1512370403, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{31f}}}, //ItemName: Unique_Mighty_1H_006_x1 → Blade of the Warlord + {-1511328230, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{45f}, WeaponDamageMax = new List{82f}}}, //ItemName: Unique_Mighty_1H_012_x1 → Fjord Cutter + {-1512550088, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{249f}, WeaponDamageMax = new List{461f}}}, //ItemName: Unique_Mighty_1H_001_x1 → Ambo's Pride + {-1512406340, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_005_x1 → Oathkeeper + {442984219, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{815f}, WeaponDamageMax = new List{894f}}}, //ItemName: Unique_Mighty_2H_012_x1 → Fury of the Vanished Peak + {441870172, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{62f}}}, //ItemName: Unique_Mighty_2H_004_x1 → Madawc's Sorrow + {441762361, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{381f}, WeaponDamageMax = new List{414f}}}, //ItemName: Unique_Mighty_2H_001_x1 → Bastion's Revered + {441942046, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{531f}, WeaponDamageMax = new List{579f}}}, //ItemName: Unique_Mighty_2H_006_x1 → The Gavel of Judgment + {-1097809050, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{20f}}}, //ItemName: Unique_Fist_003_x1 → Fleshrake + {-1097665302, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{29f}}}, //ItemName: Unique_Fist_007_x1 → Scarbringer + {-1096623129, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{26f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Fist_013_x1 → Logan's Claw + {-1096659066, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{35f}, WeaponDamageMax = new List{81f}}}, //ItemName: Unique_Fist_012_x1 → Won Khim Lau + {-1097773113, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{168f}, WeaponDamageMax = new List{392f}}}, //ItemName: Unique_Fist_004_x1 → Rabid Strike + {-1097737176, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{56f}, WeaponDamageMax = new List{130f}}}, //ItemName: Unique_Fist_005_x1 → Sledge Fist + {-1097701239, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{90f}, WeaponDamageMax = new List{210f}}}, //ItemName: Unique_Fist_006_x1 → Jawbreaker + {-1097629365, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_008_x1 → The Fist of Az'Turrasq + {-1097593428, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_009_x1 → Crystal Fist + {446400306, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{14f}, WeaponDamageMax = new List{25f}}}, //ItemName: Unique_CombatStaff_2H_002_x1 → The Flow of Eternity + {446615928, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{564f}, WeaponDamageMax = new List{1046f}}}, //ItemName: Unique_CombatStaff_2H_008_x1 → Balance + {446508117, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{43f}, WeaponDamageMax = new List{79f}}}, //ItemName: Unique_CombatStaff_2H_005_x1 → Incense Torch of the Grand Temple + {446579991, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{63f}, WeaponDamageMax = new List{115f}}}, //ItemName: Unique_CombatStaff_2H_007_x1 → The Paddle + {446436243, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{113f}, WeaponDamageMax = new List{208f}}}, //ItemName: Unique_CombatStaff_2H_003_x1 → Warstaff of General Quang + {446472180, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{564f}, WeaponDamageMax = new List{1046f}}}, //ItemName: Unique_CombatStaff_2H_004_x1 → Flying Dragon + {446651865, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{333f}, WeaponDamageMax = new List{616f}}}, //ItemName: Unique_CombatStaff_2H_009_x1 → Inna's Reach + {-1209646647, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{41f}, WeaponDamageMax = new List{60f}}}, //ItemName: Unique_Staff_008_x1 → The Smoldering Core + {-1209862269, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{706f}, WeaponDamageMax = new List{1054f}}}, //ItemName: Unique_Staff_002_x1 → Valthek's Rebuke + {-1209898206, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{98f}, WeaponDamageMax = new List{144f}}}, //ItemName: Unique_Staff_001_x1 → The Tormentor + {-1209718521, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{191f}, WeaponDamageMax = new List{283f}}}, //ItemName: Unique_Staff_006_x1 → Maloth's Focus + {-1209826332, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{258f}, WeaponDamageMax = new List{382f}}}, //ItemName: Unique_Staff_003_x1 → The Grand Vizier + {-1209682584, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{329f}, WeaponDamageMax = new List{489f}}}, //ItemName: Unique_Staff_007_x1 → Ahavarion, Spear of Lycander + {-1209610710, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{460f}, WeaponDamageMax = new List{685f}}}, //ItemName: Unique_Staff_009_x1 → Staff of Chiroptera + {1859698842, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{15f}, WeaponDamageMax = new List{27f}}}, //ItemName: Unique_Wand_003_x1 → Starfire + {1859806653, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{21f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Wand_006_x1 → Blackhand Key + {1859662905, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{107f}}}, //ItemName: Unique_Wand_002_x1 → Wand of Woh + {1860776952, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{77f}, WeaponDamageMax = new List{142f}}}, //ItemName: Unique_Wand_010_x1 → Gesture of Orpheus + {1859914464, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{58f}, WeaponDamageMax = new List{107f}}}, //ItemName: Unique_Wand_009_x1 → Fragment of Destiny + {1860884763, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{118f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_Wand_013_x1 → Aether Walker + {162390824, new UniqueItemLayout{ Armor = new List{1760f, 2024f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_011_x1 → Frydehr's Wrath + {161420525, new UniqueItemLayout{ Armor = new List{320f, 383f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_007_x1 → Freeze of Deflection + {161312714, new UniqueItemLayout{ Armor = new List{580f, 619f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_004_x1 → Lidless Wall + {161456462, new UniqueItemLayout{ Armor = new List{660f, 699f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_008_x1 → Ivory Tower + {161240840, new UniqueItemLayout{ Armor = new List{860f, 959f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_002_x1 → Defender of Westmarch + {161492399, new UniqueItemLayout{ Armor = new List{1060f, 1259f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_009_x1 → Lidless Wall + {334161780, new UniqueItemLayout{ Armor = new List{54f, 71f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_001_x1 → Leoric's Crown + {334197717, new UniqueItemLayout{ Armor = new List{72f, 89f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_002_x1 → Andariel's Visage + {334377402, new UniqueItemLayout{ Armor = new List{186f, 216f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_007_x1 → Deathseer's Cowl + {334269591, new UniqueItemLayout{ Armor = new List{217f, 246f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_004_x1 → The Helm of Rule + {334233654, new UniqueItemLayout{ Armor = new List{360f, 396f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_003_x1 → Mempo of Twilight + {335347701, new UniqueItemLayout{ Armor = new List{660f, 769f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_011_x1 → Blind Faith + {334341465, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_006_x1 → Broken Crown + {576508066, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_014_x1 → St. Archew's Gage + {575214334, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_001_x1 → Stone Gauntlets + {575429956, new UniqueItemLayout{ Armor = new List{192f, 209f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_007_x1 → Magefist + {576400255, new UniqueItemLayout{ Armor = new List{250f, 279f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_011_x1 → Tasker and Theo + {575250271, new UniqueItemLayout{ Armor = new List{280f, 308f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_002_x1 → Frostburn + {575286208, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_003_x1 → Gladiator Gauntlets + {1941251797, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_010_x1 → Boj Anglers + {1940389309, new UniqueItemLayout{ Armor = new List{44f, 57f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_009_x1 → The Crudest Boots + {1940101813, new UniqueItemLayout{ Armor = new List{130f, 148f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_001_x1 → Lut Socks + {1940245561, new UniqueItemLayout{ Armor = new List{514f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_005_x1 → Fire Walkers + {1940317435, new UniqueItemLayout{ Armor = new List{280f, 308f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_007_x1 → Illusory Boots + {1940353372, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_008_x1 → Ice Climbers + {1770784374, new UniqueItemLayout{ Armor = new List{24f, 27f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_002_x1 → The Witching Hour + {1770856248, new UniqueItemLayout{ Armor = new List{440f, 506f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_004_x1 → Saffron Wrap + {1771898421, new UniqueItemLayout{ Armor = new List{88f, 107f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_010_x1 → Cord of the Sherma + {1770748437, new UniqueItemLayout{ Armor = new List{108f, 127f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_001_x1 → Goldwrap + {1770999996, new UniqueItemLayout{ Armor = new List{145f, 164f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_008_x1 → String of Ears + {1770820311, new UniqueItemLayout{ Armor = new List{165f, 179f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_003_x1 → Vigilante Belt + {1770892185, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_005_x1 → Hellcat Waistguard + {1771035933, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_009_x1 → Harrington Waistguard + {923219200, new UniqueItemLayout{ Armor = new List{16f, 19f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_004_x1 → Strongarm Bracers + {923291074, new UniqueItemLayout{ Armor = new List{41f, 49f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_006_x1 → Lacuni Prowlers + {923183263, new UniqueItemLayout{ Armor = new List{63f, 75f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_003_x1 → Slave Bonds + {923147326, new UniqueItemLayout{ Armor = new List{158f, 178f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_002_x1 → Steady Strikers + {923111389, new UniqueItemLayout{ Armor = new List{366f, 421f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_001_x1 → Gungdo Gear + {923327011, new UniqueItemLayout{ Armor = new List{200f, 219f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_007_x1 → Warzechian Armguards + {923255137, new UniqueItemLayout{ Armor = new List{220f, 261f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_005_x1 → Nemesis Bracers + {1316774087, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_012_x1 → Cindercoat + {1316989709, new UniqueItemLayout{ Armor = new List{87f, 107f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_018_x1 → Goldskin + {1316702213, new UniqueItemLayout{ Armor = new List{138f, 167f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_010_x1 → Chaingmail + {1315552229, new UniqueItemLayout{ Armor = new List{217f, 246f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_001_x1 → Heart of Iron + {1315731914, new UniqueItemLayout{ Armor = new List{285f, 321f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_006_x1 → Aquila Cuirass + {1317025646, new UniqueItemLayout{ Armor = new List{660f, 709f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_019_x1 → Tyrael's Might + {1315588166, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_002_x1 → Shi Mizu's Haori + {-774273638, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_007_x1 → Pox Faulds + {-774453323, new UniqueItemLayout{ Armor = new List{162f, 191f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_002_x1 → Hammer Jammers + {-774489260, new UniqueItemLayout{ Armor = new List{217f, 246f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_001_x1 → Swampland Waders + {-774345512, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_005_x1 → Hexing Pants of Mr. Yan + {-774309575, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_006_x1 → Depth Diggers + {-1959785708, new UniqueItemLayout{ Armor = new List{144f, 164f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_001_x1 → Homing Pads + {-1959749771, new UniqueItemLayout{ Armor = new List{240f, 252f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_002_x1 → Spaulders of Zakara + {-1959570086, new UniqueItemLayout{ Armor = new List{586f, 674f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_007_x1 → Pauldrons of the Skeleton King + {-1959713834, new UniqueItemLayout{ Armor = new List{353f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_003_x1 → Death Watch Mantle + {635723798, new UniqueItemLayout{ Armor = new List{36f, 41f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_005_x1 → The Mind's Eye + {635687861, new UniqueItemLayout{ Armor = new List{60f, 80f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_004_x1 → Tzo Krin's Gaze + {635615987, new UniqueItemLayout{ Armor = new List{126f, 149f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_002_x1 → See No Evil + {635651924, new UniqueItemLayout{ Armor = new List{186f, 224f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_003_x1 → Gyana Na Kashu + {635580050, new UniqueItemLayout{ Armor = new List{225f, 254f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_001_x1 → Bezoar Stone + {635759735, new UniqueItemLayout{ Armor = new List{255f, 284f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_006_x1 → The Laws of Seph + {635795672, new UniqueItemLayout{ Armor = new List{322f, 359f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_007_x1 → Erlang Shen + {635831609, new UniqueItemLayout{ Armor = new List{360f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_008_x1 → Madstone + {-840161419, new UniqueItemLayout{ Armor = new List{36f, 41f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_006_x1 → Quetzalcoatl + {-840197356, new UniqueItemLayout{ Armor = new List{84f, 96f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_005_x1 → The Grin Reaper + {-840305167, new UniqueItemLayout{ Armor = new List{255f, 284f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_002_x1 → Visage of Giyua + {-840341104, new UniqueItemLayout{ Armor = new List{360f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_001_x1 → Tiklandian Visage + {-840089545, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_008_x1 → Carnevil + {375428350, new UniqueItemLayout{ Armor = new List{150f, 185f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_003_x1 → The Swami + {375356476, new UniqueItemLayout{ Armor = new List{285f, 322f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_001_x1 → Storm Crow + {375464287, new UniqueItemLayout{ Armor = new List{360f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_004_x1 → Dark Mage's Shade + {221630008, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_001_x1 → The Cape of the Dark Night + {221773756, new UniqueItemLayout{ Armor = new List{217f, 254f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_005_x1 → Beckon Sail + {221665945, new UniqueItemLayout{ Armor = new List{360f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_002_x1 → Blackfeather + {924139183, new UniqueItemLayout{ Armor = new List{53f, 61f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_004_x1 → Pride of Cassius + {924211057, new UniqueItemLayout{ Armor = new List{74f, 85f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_006_x1 → Chilanik's Chain + {924246994, new UniqueItemLayout{ Armor = new List{112f, 132f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_007_x1 → The Undisputed Champion + {924067309, new UniqueItemLayout{ Armor = new List{165f, 199f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_002_x1 → Lamentation + {924031372, new UniqueItemLayout{ Armor = new List{200f, 225f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_001_x1 → Girdle of Giants + {924103246, new UniqueItemLayout{ Armor = new List{226f,252f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_003_x1 → Dread Iron + {924282931, new UniqueItemLayout{ Armor = new List{286f, 318f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_008_x1 → Kotuur's Brace + {924175120, new UniqueItemLayout{ Armor = new List{320f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_005_x1 → Ageless Might + {-1511400104, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_010_x1 → Remorseless + {-1511364167, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{150f}, WeaponDamageMax = new List{277f}}}, //ItemName: Unique_Mighty_1H_011_x1 → Dishonored Legacy + {-1153600855, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_001_x1 → Dawn + {-1153564918, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_002_x1 → Balefire Caster + {1860848826, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{118f}, WeaponDamageMax = new List{218f}}}, //ItemName: Unique_Wand_012_x1 → Serpent's Sparker + {-1096730940, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_010_x1 → Vengeful Wind + {-1096695003, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{104f}, WeaponDamageMax = new List{242f}}}, //ItemName: Unique_Fist_011_x1 → Lion's Claw + {1784730527, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{71f}, WeaponDamageMax = new List{288f}}}, //ItemName: Unique_CeremonialDagger_009_x1 → Sacred Harvester + {334449276, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_009_x1 → Visage of Gunes + {-1153528981, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{48f}, WeaponDamageMax = new List{275f}}}, //ItemName: Unique_HandXBow_003_x1 → Valla's Bequest + {221809693, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_006_x1 → The Demon's Demise + {1941287734, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_011_x1 → Rivera Dancers + {334413339, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_008_x1 → Skull of Resonance + {442912345, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{531f}, WeaponDamageMax = new List{579f}}}, //ItemName: Unique_Mighty_2H_010_x1 → Blade of the Tribes + {1316810024, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_013_x1 → Mantle of Channeling + {924318868, new UniqueItemLayout{ Armor = new List{320f, 419f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_009_x1 → Girdle of Giants + {575465893, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_008_x1 → Gloves of Worship + {1941323671, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_012_x1 → Irontoe Mudsputters + {335311764, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_010_x1 → Warhelm of Kassar + {1316845961, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_014_x1 → Armor of the Kind Regent + {1770928122, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_006_x1 → Razor Strop + {635867546, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_009_x1 → Eye of Peshkov + {446364369, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{333f}, WeaponDamageMax = new List{616f}}}, //ItemName: Unique_CombatStaff_2H_001_x1 → Staff of Kyro + {1316881898, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_015_x1 → Vo'Toyias Spiker + {1770964059, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_007_x1 → Thundergod's Vigor + {-774237701, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_008_x1 → Death's Bargain + {-840125482, new UniqueItemLayout{ Armor = new List{360f, 472f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_007_x1 → Mask of Jeram + {1316917835, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_016_x1 → Heart of the Crashing Wave + {1941359608, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_013_x1 → Boots of Disregard + {1941575230, new UniqueItemLayout{ Armor = new List{309f, 366f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_019_x1 → Nilfur's Boast + {-115330289, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_ChestArmor_028_x1 → Shi Mizu's Haori + {1772078106, new UniqueItemLayout{ Armor = new List{265f, 314f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_015_x1 → Omryn's Chain + {-773231465, new UniqueItemLayout{ Armor = new List{397f, 471f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_013_x1 → Defiler Cuisses + {1318067819, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_025_x1 → The Cloak of Deception + {-1959606023, new UniqueItemLayout{ Armor = new List{586f, 674f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_006_x1 → Lefebvre's Soliloquy + {1312521693, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{168f}, WeaponDamageMax = new List{392f}}}, //ItemName: Unique_Sword_1H_018_x1 → The Slanderer + {335383638, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_012_x1 → Crown of the Primus + {-773339276, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_010_x1 → Guardian's Jeopardy + {576544003, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_015_x1 → Vambraces of Sescheron + {1941431482, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_015_x1 → The Traveler's Pledge (parte do conjunto) + {1941503356, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_017_x1 → Wraps of Clarity + {1771970295, new UniqueItemLayout{ Armor = new List{440f, 506f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_012_x1 → Bakuli Jungle Wraps + {-773267402, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_012_x1 → Coils of the First Spider + {-1959534149, new UniqueItemLayout{ Armor = new List{586f, 674f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_008_x1 → Fury of the Ancients + {923398885, new UniqueItemLayout{ Armor = new List{366f, 421f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_009_x1 → Gabriel's Vambraces + {1318103756, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_026_x1 → Death's Bargain + {335455512, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_014_x1 → The Laws of Seph + {-1958384165, new UniqueItemLayout{ Armor = new List{586f, 674f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_017_x1 → Channeling Pauldrons + {575501830, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_009_x1 → The Shadow's Grasp + {-774201764, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_009_x1 → The Shadow's Coil + {1941395545, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_014_x1 → The Shadow's Heels + {924261373, new UniqueItemLayout{ Armor = new List{366f, 421f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_010_x1 → Drakon's Lesson + {1772006232, new UniqueItemLayout{ Armor = new List{440f, 506f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_013_x1 → The Shame of Delsere + {335491449, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_015_x1 → Shrouded Mask + {1318139693, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_027_x1 → The Ninth Cirri Satchel + {1772042169, new UniqueItemLayout{ Armor = new List{440f, 506f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_014_x1 → Zoey's Secret + {-773195528, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_014_x1 → Hammer Jammers + {-1959498212, new UniqueItemLayout{ Armor = new List{586f, 674f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_009_x1 → Unhallowed Essence + {924297310, new UniqueItemLayout{ Armor = new List{366f, 421f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_011_x1 → Bracers of the First Men + {576615877, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_017_x1 → Akkhan's Manacles + {1941539293, new UniqueItemLayout{ Armor = new List{513f, 590f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_018_x1 → Akkhan's Leniency + {335527386, new UniqueItemLayout{ Armor = new List{660f, 759f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_016_x1 → Crown of the Invoker + {162426761, new UniqueItemLayout{ Armor = new List{1060f, 1259f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_012_x1 → Guard of Johanna + {-1511220419, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{249f}, WeaponDamageMax = new List{461f}}}, //ItemName: Unique_Mighty_1H_015_x1 → Oathkeeper + {1861064448, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{193f}, WeaponDamageMax = new List{357f}}}, //ItemName: Unique_Wand_018_x1 → Unstable Scepter + {1785628952, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{117f}, WeaponDamageMax = new List{469f}}}, //ItemName: Unique_CeremonialDagger_011_x1 → The Dagger of Darts + {-1152235249, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{126f}, WeaponDamageMax = new List{714f}}}, //ItemName: Unique_HandXBow_016_x1 → The Demon's Demise + {-1096551255, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{168f}, WeaponDamageMax = new List{392f}}}, //ItemName: Unique_Fist_015_x1 → Kyoshiro's Blade + {786248551, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{249f}, WeaponDamageMax = new List{461f}}}, //ItemName: Unique_Axe_1H_013_x1 → Gimmershred + {-973813217, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Dagger_008_x1 → Karlei's Point + {-838272988, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{13f}, WeaponDamageMax = new List{38f}}}, //ItemName: Unique_Offhand_001_x1 → Envious Blade + {1311084213, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Sword_1H_001_x1 → Deathwish + {1312234197, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Sword_1H_010_x1 → Fulminator + {1313456055, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{39f}}}, //ItemName: Unique_Sword_1H_021_x1 → In-geom + {-1028276902, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{93f}, WeaponDamageMax = new List{137f}}}, //ItemName: Unique_Sword_2H_014_x1 → Blood Brother + {-1894126180, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Mace_1H_010_x1 → Darklight + {-934929383, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Dagger_101_x1 → Lord Greenstone's Fan + {-934893446, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Dagger_102_x1 → Spear of Jairo + {-934857509, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.50f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Dagger_103_x1 → Trag'Oul's Corroded Fang + {1350219606, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_101_x1 → The Twisted Sword + {1350255543, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_102_x1 → Deathwish + {1350291480, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_103_x1 → Ardent Falchion + {1350327417, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_104_x1 → Amberwing + {1350363354, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_105_x1 → Azurewrath + {1350399291, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_106_x1 → Devil Tongue + {1350435228, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_107_x1 → [Item não utilizado no jogo] + {1350471165, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_108_x1 → Doombringer + {1350507102, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_109_x1 → In-geom + {1351369590, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_110_x1 → Rimeheart + {1351405527, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_111_x1 → Sever + {1351441464, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_112_x1 → Wildwood + {-990435241, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_Sword_2H_101_x1 → Faithful Memory + {-990399304, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_Sword_2H_102_x1 → Blade of Prophecy + {-990363367, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{12f}}}, //ItemName: Unique_Sword_2H_103_x1 → Scourge + {824126149, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{3f}}}, //ItemName: Unique_Axe_1H_101_x1 → Mordullu's Blade + {824162086, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{3f}}}, //ItemName: Unique_Axe_1H_102_x1 → Hack + {824198023, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{3f}}}, //ItemName: Unique_Axe_1H_103_x1 → The Burning Axe of Sankis + {-1516528698, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Axe_2H_101_x1 → The Executioner + {-1516492761, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Axe_2H_102_x1 → Messerschmidt's Reaver + {-1516456824, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Axe_2H_103_x1 → Skorn + {-1516420887, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{9f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Axe_2H_104_x1 → Cinder Switch + {-1856140771, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Mace_1H_101_x1 → Odyn Son + {-1856104834, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Mace_1H_102_x1 → Nutcracker + {-1856068897, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{6f}}}, //ItemName: Unique_Mace_1H_103_x1 → Sun Keeper + {98243552, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Mace_2H_103_x1 → Arthef's Spark of Life + {98279489, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.90f}, WeaponDamageMin = new List{17f}, WeaponDamageMax = new List{18f}}}, //ItemName: Unique_Mace_2H_104_x1 → The Furnace + {-1948909473, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_Polearm_101_x1 → Standoff + {-1948873536, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_Polearm_102_x1 → Bovine Bardiche + {-2120824630, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Spear_101_x1 → Arreat's Law + {-2120788693, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.20f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Spear_102_x1 → The Three Hundredth Spear + {1999595351, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{1f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Bow_101_x1 → Kridershot + {1999631288, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{1f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Bow_102_x1 → The Raven's Wing + {1999667225, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{1f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Bow_103_x1 → Windforce + {1999703162, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{1f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Bow_104_x1 → Yang's Recurve + {-135048049, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{9f}}}, //ItemName: Unique_Xbow_101_x1 → Manticore + {-135012112, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{9f}}}, //ItemName: Unique_Xbow_102_x1 → Wojahnni Assaulter + {-1170762813, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{10f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Staff_101_x1 → Staff of Chiroptera + {-1170726876, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{10f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Staff_102_x1 → The Grand Vizier + {-1170690939, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{10f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Staff_103_x1 → The Tormentor + {-1170655002, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{10f}, WeaponDamageMax = new List{15f}}}, //ItemName: Unique_Staff_104_x1 → Valthek's Rebuke + {200340296, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_101_x1 → Denial + {200376233, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_102_x1 → Shield of the Steed + {200412170, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_103_x1 → Akkhan's Leniency + {200448107, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_104_x1 → Unrelenting Phalanx + {200484044, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_105_x1 → [Item não utilizado no jogo] + {200519981, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_106_x1 → [Item não utilizado no jogo] + {200555918, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shield_107_x1 → Guard of Johanna + {373333110, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_102_x1 → Leoric's Crown + {373369047, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_103_x1 → Pride's Fall + {-1920650315, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_101_x1 → Homing Pads + {-1920614378, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_102_x1 → Pauldrons of the Skeleton King + {-1920578441, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_103_x1 → Death Watch Mantle + {614349727, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_101_x1 → Gloves of Worship + {614385664, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_102_x1 → St. Archew's Gage + {614421601, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_103_x1 → Magefist + {1979273143, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_102_x1 → Boots of Disregard + {1979309080, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_103_x1 → Ice Climbers + {1979345017, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_104_x1 → Illusory Boots + {1809883830, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_101_x1 → Cord of the Sherma + {1809919767, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_102_x1 → Harrington Waistguard + {1809955704, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_103_x1 → The Witching Hour + {1809991641, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_104_x1 → Goldwrap + {1810027578, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_105_x1 → String of Ears + {1810063515, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_106_x1 → Thundergod's Vigor + {1810099452, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_107_x1 → Crashing Rain + {1810135389, new UniqueItemLayout{ Armor = new List{6f, 7f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_108_x1 → Hunter's Wrath + {962246782, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_101_x1 → Custerian Wristguards + {962282719, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_102_x1 → Strongarm Bracers + {962318656, new UniqueItemLayout{ Armor = new List{366f, 421f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_103_x1 → Warzechian Armguards + {962354593, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_104_x1 → Nemesis Bracers + {962390530, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_105_x1 → Promise of Glory + {962426467, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_106_x1 → Reaper's Wraps + {962462404, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_107_x1 → Kethryes' Splint + {962498341, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_108_x1 → [Item não utilizado no jogo] + {1354687622, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_101_x1 → Mantle of Channeling + {1354723559, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_102_x1 → Cindercoat + {-735353867, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_101_x1 → Pox Faulds + {-735317930, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_102_x1 → Hexing Pants of Mr. Yan + {-1473414695, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Mighty_1H_101_x1 → Fjord Cutter + {-1473378758, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Mighty_1H_102_x1 → Remorseless + {-1473342821, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Mighty_1H_103_x1 → Blade of the Warlord + {-1473306884, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.30f}, WeaponDamageMin = new List{6f}, WeaponDamageMax = new List{11f}}}, //ItemName: Unique_Mighty_1H_104_x1 → Oathkeeper + {480897754, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{15f}, WeaponDamageMax = new List{16f}}}, //ItemName: Unique_Mighty_2H_101_x1 → Fury of the Vanished Peak + {963166765, new UniqueItemLayout{ Armor = new List{26f, 31f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_101_x1 → Lamentation + {963202702, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_102_x1 → [Item não utilizado/bugado] + {963238639, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_103_x1 → [Item não utilizado/placeholder] + {963274576, new UniqueItemLayout{ Armor = new List{26f, 31f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_104_x1 → The Undisputed Champion + {963310513, new UniqueItemLayout{ Armor = new List{26f, 31f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_BarbBelt_105_x1 → Pride of Cassius + {820499474, new UniqueItemLayout{ Armor = new List{1980f, 2277f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_101_x1 → Shield of the Steed + {820535411, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_102_x1 → Unrelenting Phalanx + {820571348, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_103_x1 → Akkhan's Leniency + {820607285, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_104_x1 → Guard of Johanna + {820643222, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_105_x1 → Jekangbord + {820679159, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_106_x1 → The Final Witness + {820715096, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_107_x1 → Frydehr's Wrath + {820751033, new UniqueItemLayout{ Armor = new List{9f, 10f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_CruShield_108_x1 → Sublime Conviction + {-1791195345, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{192f}, WeaponDamageMax = new List{355f}}}, //ItemName: Unique_Flail_1H_101_x1 → Darklight + {-1791159408, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_102_x1 → Gyrfalcon's Foote + {-1791123471, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_103_x1 → Inviolable Faith + {-1791087534, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_104_x1 → Justinian's Mercy + {-1791051597, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_105_x1 → Swiftmount + {-1791015660, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_106_x1 → Golden Scourge + {-1790979723, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_107_x1 → Johanna's Argument + {163117104, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Flail_2H_101_x1 → Baleful Remnant + {163153041, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Flail_2H_102_x1 → Fate of the Fell + {163188978, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Flail_2H_103_x1 → Golden Flense + {163224915, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{8f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Flail_2H_104_x1 → The Mortal Drama + {-1114465462, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_HandXBow_101_x1 → K'mar Tenclip + {-1114429525, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_HandXBow_102_x1 → Valla's Bequest + {260765401, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_101_x1 → The Cloak of Garwulf + {260801338, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Cloak_102_x1 → Cape of the Dark Night + {674715443, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_101_x1 → Tzo Krin's Gaze + {674751380, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_102_x1 → The Laws of Seph + {674787317, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_SpiritStone_103_x1 → Gyana Na Kashu + {485499762, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{20f}}}, //ItemName: Unique_CombatStaff_2H_101_x1 → Incense Torch of the Grand Temple + {485535699, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.10f}, WeaponDamageMin = new List{11f}, WeaponDamageMax = new List{20f}}}, //ItemName: Unique_CombatStaff_2H_102_x1 → Flying Dragon + {-1058745531, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Fist_101_x1 → The Fist of Az'Turrasq + {-1058709594, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Fist_102_x1 → Lion's Claw + {-801205711, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_101_x1 → Carnevil + {-801169774, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_VoodooMask_102_x1 → Mask of Jeram + {1823578424, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_CeremonialDagger_101_x1 → The Dagger of Darts + {1823614361, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_CeremonialDagger_102_x1 → Starmetal Kukri + {414491869, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_101_x1 → Velvet Camaral + {414527806, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_102_x1 → The Magistrate + {414563743, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_103_x1 → Crown of the Primus + {414599680, new UniqueItemLayout{ Armor = new List{30f, 35f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_WizardHat_104_x1 → Archmage's Vicalyke + {1898762361, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{9f}}}, //ItemName: Unique_Wand_101_x1 → Wand of Woh + {1898798298, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{5f}, WeaponDamageMax = new List{9f}}}, //ItemName: Unique_Wand_102_x1 → Aether Walker + {-885483983, new UniqueItemLayout{ Armor = new List{8f, 8f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Belt_Set_02_x1 → Blackthorne's Notched Belt + {1784952569, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_Set_02_x1 → Guardian's Case (Guardian's Jeopardy Set) + {-1394481455, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_Set_02_x1 → Hallowed Breach (Hallowed Protectors Set) + {-1394445518, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_Set_03_x1 → Bul-Kathos's Solemn Vow + {-1993170861, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_05_x1 → Helm of the Wastes + {-1981767693, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_05_x1 → Pauldrons of the Wastes + {258927396, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_05_x1 → Cuirass of the Wastes + {826009651, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_05_x1 → Tasset of the Wastes + {-801761292, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_05_x1 → Sabaton of the Wastes + {2058393501, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_05_x1 → Gauntlet of the Wastes + {-1993134924, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_06_x1 → Accursed Visage + {-1981731756, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_06_x1 → Unsanctified Shoulders + {258963333, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_06_x1 → Cage of the Hellborn + {826045588, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_06_x1 → Unholy Plates + {-801725355, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_06_x1 → Hell Walkers + {2058429438, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_06_x1 → Fiendish Grips + {-1993098987, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_07_x1 → Mask of the Searing Sky + {-1981695819, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_07_x1 → Mantle of the Upside-Down Sinners + {258999270, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_07_x1 → Heart of the Crashing Wave + {826081525, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_07_x1 → Scales of the Dancing Serpent + {-801689418, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_07_x1 → Eight-Demon Boots + {2058465375, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_07_x1 → Fists of Thunder + {-1993063050, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_08_x1 → Helltooth Mask + {-1981659882, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_08_x1 → Helltooth Mantle + {259035207, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_08_x1 → Helltooth Tunic + {826117462, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_08_x1 → Helltooth Leg Guards + {-801653481, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_08_x1 → Helltooth Greaves + {2058501312, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_08_x1 → Helltooth Gauntlets + {-1993027113, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_09_x1 → Tal Rasha's Guise of Wisdom + {-1981623945, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_09_x1 → Tal Rasha's Stride + {259071144, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_09_x1 → Tal Rasha's Relentless Pursuit + {826153399, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_09_x1 → Tal Rasha's Brace + {-801617544, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_09_x1 → Tal Rasha's Allegiance + {2058537249, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_09_x1 → Tal Rasha's Grasp + {-1992164625, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_10_x1 → Roland's Visage + {-1980761457, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_10_x1 → Roland's Mantle + {259933632, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_10_x1 → Roland's Bearing + {827015887, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_10_x1 → Roland's Determination + {-800755056, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_10_x1 → Roland's Stride + {2059399737, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_10_x1 → Roland's Grasp + {2059435674, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_11_x1 → Firebird's Talons + {-1980725520, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_11_x1 → Firebird's Pinions + {-1992128688, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_11_x1 → Firebird's Plume + {-1992092751, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_12_x1 → Shrouded Mask + {-1980689583, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_12_x1 → Dashing Pauldrons of Despair + {2059471611, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_12_x1 → Fierce Gauntlets + {1786138490, new UniqueItemLayout{ Armor = new List{8f, 9f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Bracer_Set_12_x1 → Krelm's Buff Bracers + {260041443, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_13_x1 → The Shadow's Bane + {827123698, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_13_x1 → The Shadow's Coil + {-800647245, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_13_x1 → The Shadow's Heels + {2059507548, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_13_x1 → The Shadow's Grasp + {260077380, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_14_x1 → Sunwuko's Soul + {827159635, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_14_x1 → Sunwuko's Leggings + {-800611308, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_14_x1 → Sunwuko's Sandals + {2059543485, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_14_x1 → Sunwuko's Paws + {2059579422, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_15_x1 → Gauntlets of Akkhan + {-1991984940, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_15_x1 → Helm of Akkhan + {827195572, new UniqueItemLayout{ Armor = new List{33f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_15_x1 → Cuisses of Akkhan + {-1980581772, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_15_x1 → Pauldrons of Akkhan + {-800575371, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_15_x1 → Sabatons of Akkhan + {-1991949003, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Set_16_x1 → Crown of the Invoker + {-1980545835, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Shoulder_Set_16_x1 → Burden of the Invoker + {260149254, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Chest_Set_16_x1 → Acquittal of the Invoker + {827231509, new UniqueItemLayout{ Armor = new List{033f, 37f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Pants_Set_16_x1 → Zeal of the Invoker + {-800539434, new UniqueItemLayout{ Armor = new List{30f, 34f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Boots_Set_16_x1 → Shackles of the Invoker + {2059615359, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Gloves_Set_16_x1 → Pride of the Invoker + {974107120, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Promo_01_x1 → Helm of the Cranial Crustacean + {974143057, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0f}, WeaponDamageMin = new List{0f}, WeaponDamageMax = new List{0f}}}, //ItemName: Unique_Helm_Promo_02_x1 → Infernal Helm + {595814643, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_CeremonialDagger_Promo_01_x1 → Horadric Hamburger + {2032005920, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{8f}}}, //ItemName: Unique_Fist_Promo_01_x1 → Hand of Despair + {1226090826, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{4f}, WeaponDamageMax = new List{7f}}}, //ItemName: Unique_Flail_1H_Promo_01_x1 → Templar's Chain + {-44923323, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.60f}, WeaponDamageMin = new List{3f}, WeaponDamageMax = new List{13f}}}, //ItemName: Unique_HandXBow_Promo_01_x1 → Crossbow of Corvus + {-96858155, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.00f}, WeaponDamageMin = new List{15f}, WeaponDamageMax = new List{16f}}}, //ItemName: Unique_Mighty_2H_Promo_01_x1 → Mace of the Crows + {229247441, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_Promo_01_x1 → Ghoul King's Blade + {229283378, new UniqueItemLayout{ Armor = new List{0f}, DPS = new List{1.40f}, WeaponDamageMin = new List{2f}, WeaponDamageMax = new List{4f}}}, //ItemName: Unique_Sword_1H_Promo_02_x1 → Lachdanan's Stormshield //New - {785134241, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{149.0f}, WeaponDamageMax = new List{275f}}}, //ItemName: unique_axe_1h_005_p2 - {-1968612863, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{249.0f}, WeaponDamageMax = new List{461f}}}, //ItemName: p4_unique_axe_1h_102 - {-65175862, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.5f}, WeaponDamageMin = new List{67.0f}, WeaponDamageMax = new List{203f}}}, //ItemName: unique_dagger_010_x1_210 - {-1870341649, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.5f}, WeaponDamageMin = new List{107.0f}, WeaponDamageMax = new List{321f}}}, //ItemName: p61_unique_dagger_101_x1 - {-934821572, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.5f}, WeaponDamageMin = new List{107.0f}, WeaponDamageMax = new List{321f}}}, //ItemName: unique_dagger_104_x1 - {-1870305712, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.5f}, WeaponDamageMin = new List{107.0f}, WeaponDamageMax = new List{321f}}}, //ItemName: p61_unique_dagger_102_x1 - {535933551, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.2f}, WeaponDamageMin = new List{186.0f}, WeaponDamageMax = new List{344f}}}, //ItemName: p66_unique_mace_1h_001 - {1903976182, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.2f}, WeaponDamageMin = new List{13.0f}, WeaponDamageMax = new List{18f}}}, //ItemName: p6_unique_spear_01 - {2135114822, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.2f}, WeaponDamageMin = new List{26.0f}, WeaponDamageMax = new List{38f}}}, //ItemName: unique_spear_004_p3 - {-691677341, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.2f}, WeaponDamageMin = new List{26.0f}, WeaponDamageMax = new List{38f}}}, //ItemName: p3_unique_spear_001 - {-992216699, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.2f}, WeaponDamageMin = new List{57.0f}, WeaponDamageMax = new List{84f}}}, //ItemName: p4_unique_spear_002 - {935449203, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{16.0f}, WeaponDamageMax = new List{36f}}}, //ItemName: p3_unique_sword_1h_104 - {935448145, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{104.0f}, WeaponDamageMax = new List{242f}}}, //ItemName: p3_unique_sword_1h_012 - {-1882704736, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{168.0f}, WeaponDamageMax = new List{392f}}}, //ItemName: p4_unique_sword_1h_01 - {594732942, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{168.0f}, WeaponDamageMax = new List{392f}}}, //ItemName: p61_unique_sword_1h_112_x1 - {1351477401, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{168.0f}, WeaponDamageMax = new List{392f}}}, //ItemName: unique_sword_1h_113_x1 - {-110218283, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{24f}}}, //ItemName: p65_ceremonialdagger_norm_unique_02 - {916911834, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{24f}}}, //ItemName: p1_ceremonialdagger_norm_unique_01 - {-769108209, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{24f}}}, //ItemName: p68_unique_dagger_003 - {1076762841, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{9.0f}, WeaponDamageMax = new List{35f}}}, //ItemName: p4_unique_ceremonialdagger_008 - {-638474348, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{31.0f}, WeaponDamageMax = new List{123f}}}, //ItemName: p4_unique_dagger_002 - {761073718, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{7.0f}, WeaponDamageMax = new List{15f}}}, //ItemName: p41_unique_fist_007 - {761073719, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{7.0f}, WeaponDamageMax = new List{15f}}}, //ItemName: p41_unique_fist_008 - {-1219744707, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{16.0f}, WeaponDamageMax = new List{36f}}}, //ItemName: p61_unique_fist_013_x1 - {-1220715006, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{104.0f}, WeaponDamageMax = new List{242f}}}, //ItemName: p61_unique_fist_009_x1 - {2057609341, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{104.0f}, WeaponDamageMax = new List{242f}}}, //ItemName: p67_unique_fist_006 - {-1385268356, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{104.0f}, WeaponDamageMax = new List{242f}}}, //ItemName: p43_unique_fist_003_x1 - {2077255630, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{168.0f}, WeaponDamageMax = new List{392f}}}, //ItemName: p67_fistweapon_norm_unique_02 - {-233132079, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{168.0f}, WeaponDamageMax = new List{392f}}}, //ItemName: p1_fistweapon_norm_unique_01 - {1401814465, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{168.0f}, WeaponDamageMax = new List{392f}}}, //ItemName: p4_unique_fist_102 - {-232423704, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{22.0f}, WeaponDamageMax = new List{40f}}}, //ItemName: p67_unique_flail_1h_106 - {1747207177, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{22.0f}, WeaponDamageMax = new List{40f}}}, //ItemName: p61_unique_flail_1h_105_x1 - {1784501906, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{192.0f}, WeaponDamageMax = new List{355f}}}, //ItemName: p1_flail1h_norm_unique_01 - {-474963695, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{8.0f}, WeaponDamageMax = new List{14f}}}, //ItemName: p67_unique_mighty_1h_006 - {-474963666, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{20.0f}, WeaponDamageMax = new List{36f}}}, //ItemName: p67_unique_mighty_1h_012 - {1638774391, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{150.0f}, WeaponDamageMax = new List{277f}}}, //ItemName: p4_unique_mighty_1h_005 - {1638775479, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{249.0f}, WeaponDamageMax = new List{461f}}}, //ItemName: p4_unique_mighty_1h_104 - {-474962610, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{249.0f}, WeaponDamageMax = new List{461f}}}, //ItemName: p67_unique_mighty_1h_102 - {2123052388, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{8.0f}, WeaponDamageMax = new List{14f}}}, //ItemName: p6_unique_scythe1h_01 - {2123052389, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{25.0f}, WeaponDamageMax = new List{45f}}}, //ItemName: p6_unique_scythe1h_02 - {1345794743, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{201.0f}, WeaponDamageMax = new List{371f}}}, //ItemName: p61_unique_scythe1h_03 - {1960603442, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{3.0f}, WeaponDamageMax = new List{19f}}}, //ItemName: unique_bow_005_p1 - {1960459694, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{9.0f}, WeaponDamageMax = new List{54f}}}, //ItemName: unique_bow_001_p1 - {824617488, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{143.0f}, WeaponDamageMax = new List{815f}}}, //ItemName: p61_unique_bow_104_x1 - {-2110502404, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{413.0f}, WeaponDamageMax = new List{498f}}}, //ItemName: p61_unique_xbow_001 - {-845425086, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{779.0f}, WeaponDamageMax = new List{945f}}}, //ItemName: p65_unique_xbow_102 - {-380433061, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.6f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{36f}}}, //ItemName: p43_unique_handxbow_005 - {-1153493308, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.6f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{36f}}}, //ItemName: unique_handxbow_004_p1 - {-2092166876, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.6f}, WeaponDamageMin = new List{48.0f}, WeaponDamageMax = new List{275f}}}, //ItemName: p4_unique_handxbow_001 - {717504148, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.6f}, WeaponDamageMin = new List{126.0f}, WeaponDamageMax = new List{714f}}}, //ItemName: p4_unique_handxbow_01 - {717504149, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.6f}, WeaponDamageMin = new List{126.0f}, WeaponDamageMax = new List{714f}}}, //ItemName: p4_unique_handxbow_02 - {760767651, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.6f}, WeaponDamageMin = new List{126.0f}, WeaponDamageMax = new List{714f}}}, //ItemName: p42_handxbow_norm_unique_03 - {1209211922, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{10f}}}, //ItemName: p61_wand_norm_unique_02 - {-1852880305, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{10f}}}, //ItemName: p42_unique_wand_003_x1 - {1775640783, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{21.0f}, WeaponDamageMax = new List{38f}}}, //ItemName: p61_unique_wand_101_x1 - {1228959855, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{21.0f}, WeaponDamageMax = new List{38f}}}, //ItemName: p68_unique_wand_102 - {1771839282, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{50.0f}, WeaponDamageMax = new List{92f}}}, //ItemName: p2_unique_wand_002 - {-1890589869, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{50.0f}, WeaponDamageMax = new List{92f}}}, //ItemName: p4_unique_wand_010 - {-1415147493, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{193.0f}, WeaponDamageMax = new List{357f}}}, //ItemName: p1_wand_norm_unique_01 - {2123052391, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{249.0f}, WeaponDamageMax = new List{461f}}}, //ItemName: p6_unique_scythe1h_04 - {595616090, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{14.0f}, WeaponDamageMax = new List{16f}}}, //ItemName: p66_unique_axe_2h_003 - {595616121, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{318.0f}, WeaponDamageMax = new List{384f}}}, //ItemName: p66_unique_axe_2h_011 - {60257879, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{0.9f}, WeaponDamageMin = new List{102.0f}, WeaponDamageMax = new List{110f}}}, //ItemName: unique_mace_2h_012_p1 - {59323518, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{0.9f}, WeaponDamageMin = new List{1204.0f}, WeaponDamageMax = new List{1323f}}}, //ItemName: unique_mace_2h_009_p2 - {-2054879108, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{85.0f}, WeaponDamageMax = new List{102f}}}, //ItemName: p61_unique_polearm_01 - {-1987973256, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{310.0f}, WeaponDamageMax = new List{374f}}}, //ItemName: unique_polearm_003_p1 - {-1036928912, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{10.0f}, WeaponDamageMax = new List{15f}}}, //ItemName: p61_unique_staff_001 - {1889450717, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{288.0f}, WeaponDamageMax = new List{429f}}}, //ItemName: p2_unique_staff_003 - {-1036928904, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{852.0f}, WeaponDamageMax = new List{1273f}}}, //ItemName: p61_unique_staff_009 - {-1785057298, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{36.0f}, WeaponDamageMax = new List{53f}}}, //ItemName: p61_unique_sword_2h_012_x1 - {-1786063534, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{239.0f}, WeaponDamageMax = new List{355f}}}, //ItemName: p61_unique_sword_2h_007_x1 - {-990327430, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{1137.0f}, WeaponDamageMax = new List{1702f}}}, //ItemName: unique_sword_2h_104_x1 - {1571905343, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{11.0f}, WeaponDamageMax = new List{20f}}}, //ItemName: p61_unique_combatstaff_2h_001 - {1484349569, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{57.0f}, WeaponDamageMax = new List{104f}}}, //ItemName: p41_unique_combatstaff_2h_005 - {-2142353559, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{192.0f}, WeaponDamageMax = new List{355f}}}, //ItemName: p61_unique_combatstaff_2h_003_x1 - {1692870603, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{13.0f}, WeaponDamageMax = new List{13f}}}, //ItemName: p4_unique_flail_2h_002 - {1692870602, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{68.0f}, WeaponDamageMax = new List{73f}}}, //ItemName: p4_unique_flail_2h_001 - {237815937, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{91.0f}, WeaponDamageMax = new List{98f}}}, //ItemName: p61_unique_flail_2h_104 - {-593519544, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{91.0f}, WeaponDamageMax = new List{98f}}}, //ItemName: p61_unique_flail_2h_103_x1 - {-628579251, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{1351.0f}, WeaponDamageMax = new List{1486f}}}, //ItemName: p65_flail2h_norm_unique_01 - {2141721069, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{1351.0f}, WeaponDamageMax = new List{1486f}}}, //ItemName: p4_unique_flail_2h_set_01_x1 - {1488065617, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{89.0f}, WeaponDamageMax = new List{97f}}}, //ItemName: p68_unique_mighty_2h_004 - {905710060, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{121.0f}, WeaponDamageMax = new List{131f}}}, //ItemName: p61_unique_mighty_2h_006 - {1677910869, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{1462.0f}, WeaponDamageMax = new List{1609f}}}, //ItemName: p4_unique_mighty_2h_101 - {2124238311, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{53.0f}, WeaponDamageMax = new List{57f}}}, //ItemName: p6_unique_scythe2h_03 - {1346980662, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{53.0f}, WeaponDamageMax = new List{57f}}}, //ItemName: p61_unique_scythe2h_01 - {-2132409157, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{278.0f}, WeaponDamageMax = new List{304f}}}, //ItemName: p65_unique_scythe2h_02 - {1346980665, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{1461.0f}, WeaponDamageMax = new List{1607f}}}, //ItemName: p61_unique_scythe2h_04 - {334197453, new UniqueItemLayout{ Armor = new List{72.0f, 89f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_002_p1 - {-1046338483, new UniqueItemLayout{ Armor = new List{54.0f, 71f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_helm_001 - {-413799279, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_helm_102 - {-413799278, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_helm_103 - {-1993638951, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_helm_21 - {334233391, new UniqueItemLayout{ Armor = new List{360.0f, 396f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_003_p2 - {1976308075, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_necro_unique_helm_22 - {-1992056814, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_13_x1 - {-1992020877, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_14_x1 - {-1993314872, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_01_p2 - {1104405864, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_helm_set_05 - {-1993242997, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_03_p3 - {1974253315, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_helm_set_01 - {-1993314873, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_01_p1 - {-1993242998, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_03_p2 - {1935108657, new UniqueItemLayout{ Armor = new List{360.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p1_unique_spiritstone_008 - {-223029400, new UniqueItemLayout{ Armor = new List{30.0f, 35f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_voodoomask_102_x1 - {-1354819701, new UniqueItemLayout{ Armor = new List{30.0f, 35f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p65_unique_voodoomask_101_x1 - {1104405863, new UniqueItemLayout{ Armor = new List{30.0f, 35f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_helm_set_04 - {-1383279272, new UniqueItemLayout{ Armor = new List{150.0f, 185f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p3_unique_wizardhat_003 - {350771572, new UniqueItemLayout{ Armor = new List{30.0f, 35f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_wizardhat_103 - {-987649171, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_shoulders_22 - {-987649172, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_shoulders_21 - {1925746096, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_shoulder_101 - {1925746098, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_shoulder_103 - {39586090, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_shoulder_102 - {-1959714098, new UniqueItemLayout{ Armor = new List{353.0f, 419f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_003_p1 - {-1980653646, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_13_x1 - {-1980617709, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_14_x1 - {-1499119736, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_shoulder_set_05 - {-1981911704, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_01_p2 - {-675559261, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_shoulder_set_01 - {-1981911705, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_01_p1 - {-1981839829, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_03_p3 - {-1981839830, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_03_p2 - {-1981911703, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_01_p3 - {-675559260, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_shoulder_set_02 - {-1499119738, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_shoulder_set_03 - {-1981875767, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_02_p2 - {-1499119737, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_shoulder_set_04 - {-1981875766, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_02_p3 - {-2039961422, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_4_shoulders - {-162363153, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_1_shoulders - {2075082288, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_2_shoulders - {17560433, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_3_shoulders - {-1993314871, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_01_p3 - {1974253316, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_helm_set_02 - {-1993278935, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_02_p2 - {1104405862, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_helm_set_03 - {-1993278934, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_02_p3 - {-1706477059, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_2_helm - {-1667341666, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_3_helm - {-1628206273, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_4_helm - {-1745612452, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_1_helm - {221665681, new UniqueItemLayout{ Armor = new List{360.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_cloak_002_p1 - {258855259, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_03_p2 - {1160204008, new UniqueItemLayout{ Armor = new List{87.0f, 107f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_chest_018 - {1160204002, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_chest_012 - {-396017878, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_chest_21 - {-396017877, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_chest_22 - {260113317, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_15_x1 - {259969569, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_11_x1 - {258783385, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_01_p2 - {868571513, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_chest_set_05 - {258783384, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_01_p1 - {258855260, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_03_p3 - {-491233548, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_chest_set_01 - {258783386, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_01_p3 - {-491233547, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_chest_set_02 - {868571511, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_chest_set_03 - {258819322, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_02_p2 - {868571512, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P68_unique_chest_set_04 - {-1776465171, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_1_chest - {-484997202, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_2_chest - {806470767, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_3_chest - {2097938736, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_4_chest - {-794028517, new UniqueItemLayout{ Armor = new List{16.0f, 19f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_004 - {1861699995, new UniqueItemLayout{ Armor = new List{41.0f, 49f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_bracer_006 - {-219546094, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_bracer_107 - {-794027427, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_105 - {-794027424, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_108 - {-794027429, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_103 - {1861699992, new UniqueItemLayout{ Armor = new List{63.0f, 75f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_bracer_003 - {-794027426, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_106 - {-219546097, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_bracer_104 - {533836830, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p3_unique_bracer_107 - {-219546098, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_bracer_103 - {533836829, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p3_unique_bracer_106 - {-219546096, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_bracer_105 - {27086075, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_bracer_108_x1 - {403202961, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_bracer_100 - {533836824, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p3_unique_bracer_101 - {-540861300, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p42_unique_bracer_spiketrap - {-794027399, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_110 - {-794027430, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_102 - {-219546092, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_bracer_109 - {-794027431, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_101 - {2143837476, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_gloves_22 - {1656121303, new UniqueItemLayout{ Armor = new List{192.0f, 209f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p66_unique_gloves_007 - {614349464, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_101_p2 - {1445202926, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p41_unique_gloves_014 - {2143837475, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_gloves_21 - {1445202891, new UniqueItemLayout{ Armor = new List{280.0f, 308f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p41_unique_gloves_002 - {2058249491, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_01_p3 - {985594254, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_gloves_set_02 - {-1385479120, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_gloves_set_03 - {2058285427, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_02_p2 - {-1385479119, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_gloves_set_04 - {2058285428, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_02_p3 - {1667839014, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_1_gloves - {1336609031, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_2_gloves - {1005379048, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_3_gloves - {674149065, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_4_gloves - {-206156951, new UniqueItemLayout{ Armor = new List{309.0f, 366f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_gloves_03 - {-206156953, new UniqueItemLayout{ Armor = new List{309.0f, 366f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_gloves_01 - {-206156950, new UniqueItemLayout{ Armor = new List{309.0f, 366f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_gloves_04 - {-206156952, new UniqueItemLayout{ Armor = new List{309.0f, 366f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_gloves_02 - {2058249490, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_01_p2 - {-1385479118, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_gloves_set_05 - {985594253, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_gloves_set_01 - {2058249489, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_01_p1 - {2058321365, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_03_p3 - {2058321364, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_03_p2 - {1483289131, new UniqueItemLayout{ Armor = new List{108.0f, 127f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p43_unique_belt_001_x1 - {1483432879, new UniqueItemLayout{ Armor = new List{265.0f, 314f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p43_unique_belt_005_x1 - {400756501, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_belt_03 - {1479591553, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_02 - {400756499, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_belt_01 - {1479591556, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_05 - {1274781855, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p3_unique_belt_01 - {1479591554, new UniqueItemLayout{ Armor = new List{145.0f, 164f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_03 - {340062601, new UniqueItemLayout{ Armor = new List{112.0f, 132f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_belt_007 - {1479591558, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_07 - {1479591557, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_06 - {1810135126, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_belt_108_p2 - {1809919504, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_belt_102_p2 - {1069972161, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_04 - {1069972160, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_03 - {1069972163, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_06 - {1809991378, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_belt_104_p2 - {1069972158, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_01 - {1479591552, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_01 - {1069972162, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_05 - {1069972159, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_02 - {1770820047, new UniqueItemLayout{ Armor = new List{165.0f, 179f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_belt_003_p1 - {949342869, new UniqueItemLayout{ Armor = new List{286.0f, 319f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_008 - {-1665574288, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p42_crusader_foh_belt - {1479591555, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_04 - {-881871725, new UniqueItemLayout{ Armor = new List{165.0f, 179f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p3_unique_belt_005 - {-683225825, new UniqueItemLayout{ Armor = new List{53.0f, 61f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_barbbelt_eq - {-142974746, new UniqueItemLayout{ Armor = new List{74.0f, 85f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_barbbelt_006 - {1958737381, new UniqueItemLayout{ Armor = new List{200.0f, 225f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_barbbelt_001 - {-1502779804, new UniqueItemLayout{ Armor = new List{320.0f, 419f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_barbbelt_005 - {-774273901, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_007_p2 - {1655219914, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_necro_unique_pants_21 - {1891331216, new UniqueItemLayout{ Armor = new List{162.0f, 191f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_pants_002 - {1655219915, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_necro_unique_pants_22 - {-2073208480, new UniqueItemLayout{ Armor = new List{217.0f, 246f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p41_unique_pants_001 - {-774309839, new UniqueItemLayout{ Armor = new List{397.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_006_p1 - {-184773475, new UniqueItemLayout{ Armor = new List{397.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_pants_01 - {-184773474, new UniqueItemLayout{ Armor = new List{397.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_pants_02 - {-184773472, new UniqueItemLayout{ Armor = new List{397.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_pants_04 - {-184773473, new UniqueItemLayout{ Armor = new List{397.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_pants_03 - {827051824, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_11_x1 - {827087761, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_12_x1 - {825865640, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_01_p2 - {-1221469976, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_pants_set_05 - {1713692259, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_pants_set_01 - {-2027795858, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_nercro_set_1_pants - {-736327889, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_nercro_set_2_pants - {555140080, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_nercro_set_3_pants - {1846608049, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_nercro_set_4_pants - {825901578, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_02_p3 - {-1221469977, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_pants_set_04 - {-1221469978, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_pants_set_03 - {825901577, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_02_p2 - {825865641, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_01_p3 - {1713692260, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_pants_set_02 - {825937514, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_03_p2 - {825865639, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_01_p1 - {825937515, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_03_p3 - {-2143372979, new UniqueItemLayout{ Armor = new List{30.0f, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p1_unique_boots_010 - {1249976208, new UniqueItemLayout{ Armor = new List{130.0f, 148f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_boots_001 - {778057211, new UniqueItemLayout{ Armor = new List{30.0f, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_boots_22 - {1940317172, new UniqueItemLayout{ Armor = new List{280.0f, 308f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_007_p2 - {778057210, new UniqueItemLayout{ Armor = new List{30.0f, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_boots_21 - {488016499, new UniqueItemLayout{ Armor = new List{309.0f, 366f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_boots_01 - {1097296767, new UniqueItemLayout{ Armor = new List{309.0f, 366f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_boots_02 - {-800683182, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_12_x1 - {1493121097, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_boots_set_05 - {-801905303, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_01_p2 - {-801905304, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_01_p1 - {-801833428, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_03_p3 - {133316036, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_boots_set_01 - {-801833429, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_03_p2 - {133316037, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_boots_set_02 - {-801905302, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_01_p3 - {-801869366, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_02_p2 - {1493121095, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_boots_set_03 - {-801869365, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_02_p3 - {1493121096, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_boots_set_04 - {-1777388611, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_1_boots - {-485920642, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_2_boots - {805547327, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_3_boots - {2097015296, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_4_boots - {-1239738149, new UniqueItemLayout{ Armor = new List{320.0f, 383f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_shield_007 - {200340033, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shield_101_p2 - {841509025, new UniqueItemLayout{ Armor = new List{860.0f, 959f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_shield_002 - {2077105940, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_unique_shield_01 - {-734892285, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_shield_106_x1 - {283157133, new UniqueItemLayout{ Armor = new List{9.0f, 10f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p65_unique_crushield_102_x1 - {823119018, new UniqueItemLayout{ Armor = new List{9.0f, 10f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_crushield_norm_unique_01 - {1983862517, new UniqueItemLayout{ Armor = new List{9.0f, 10f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p1_crushield_norm_unique_02 - {-1170685627, new UniqueItemLayout{ Armor = new List{9.0f, 10f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_shield_set_01_x1 + // Many of these items are from sets, so the full name includes the name of the piece and the name of the set. Items with prefixes such as p2_, p4_, p61_, etc., + // refer to items introduced or changed in specific patches, but the base item name usually remains the same. + {785134241, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{149.0f}, WeaponDamageMax = new List{275f}}}, //ItemName: unique_axe_1h_005_p2 → Sky Splitter + {-1968612863, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{249.0f}, WeaponDamageMax = new List{461f}}}, //ItemName: p4_unique_axe_1h_102 → Hack + {-65175862, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.5f}, WeaponDamageMin = new List{67.0f}, WeaponDamageMax = new List{203f}}}, //ItemName: unique_dagger_010_x1_210 → Eun-jang-do + {-1870341649, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.5f}, WeaponDamageMin = new List{107.0f}, WeaponDamageMax = new List{321f}}}, //ItemName: p61_unique_dagger_101_x1 → Lord Greenstone's Fan + {-934821572, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.5f}, WeaponDamageMin = new List{107.0f}, WeaponDamageMax = new List{321f}}}, //ItemName: unique_dagger_104_x1 → Bloodtide Blade + {-1870305712, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.5f}, WeaponDamageMin = new List{107.0f}, WeaponDamageMax = new List{321f}}}, //ItemName: p61_unique_dagger_102_x1 → Spear of Jairo + {535933551, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.2f}, WeaponDamageMin = new List{186.0f}, WeaponDamageMax = new List{344f}}}, //ItemName: p66_unique_mace_1h_001 → Echoing Fury + {1903976182, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.2f}, WeaponDamageMin = new List{13.0f}, WeaponDamageMax = new List{18f}}}, //ItemName: p6_unique_spear_01 → Nayr's Black Death + {2135114822, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.2f}, WeaponDamageMin = new List{26.0f}, WeaponDamageMax = new List{38f}}}, //ItemName: unique_spear_004_p3 → The Three Hundredth Spear + {-691677341, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.2f}, WeaponDamageMin = new List{26.0f}, WeaponDamageMax = new List{38f}}}, //ItemName: p3_unique_spear_001 → Scrimshaw + {-992216699, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.2f}, WeaponDamageMin = new List{57.0f}, WeaponDamageMax = new List{84f}}}, //ItemName: p4_unique_spear_002 → Arreat's Law + {935449203, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{16.0f}, WeaponDamageMax = new List{36f}}}, //ItemName: p3_unique_sword_1h_104 → The Twisted Sword + {935448145, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{104.0f}, WeaponDamageMax = new List{242f}}}, //ItemName: p3_unique_sword_1h_012 → Rimeheart + {-1882704736, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{168.0f}, WeaponDamageMax = new List{392f}}}, //ItemName: p4_unique_sword_1h_01 → Deathwish + {594732942, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{168.0f}, WeaponDamageMax = new List{392f}}}, //ItemName: p61_unique_sword_1h_112_x1 → Wildwood + {1351477401, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{168.0f}, WeaponDamageMax = new List{392f}}}, //ItemName: unique_sword_1h_113_x1 → Manajuma's Carving Knife + {-110218283, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{24f}}}, //ItemName: p65_ceremonialdagger_norm_unique_02 → Voo's Juicer + {916911834, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{24f}}}, //ItemName: p1_ceremonialdagger_norm_unique_01 → Manajuma's Carving Knife + {-769108209, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{24f}}}, //ItemName: p68_unique_dagger_003 → The Barber + {1076762841, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{9.0f}, WeaponDamageMax = new List{35f}}}, //ItemName: p4_unique_ceremonialdagger_008 → Starmetal Kukri + {-638474348, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{31.0f}, WeaponDamageMax = new List{123f}}}, //ItemName: p4_unique_dagger_002 → Wizardspike + {761073718, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{7.0f}, WeaponDamageMax = new List{15f}}}, //ItemName: p41_unique_fist_007 → Scarbringer + {761073719, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{7.0f}, WeaponDamageMax = new List{15f}}}, //ItemName: p41_unique_fist_008 → The Fist of Az'Turrasq + {-1219744707, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{16.0f}, WeaponDamageMax = new List{36f}}}, //ItemName: p61_unique_fist_013_x1 → Logan's Claw + {-1220715006, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{104.0f}, WeaponDamageMax = new List{242f}}}, //ItemName: p61_unique_fist_009_x1 → Crystal Fist + {2057609341, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{104.0f}, WeaponDamageMax = new List{242f}}}, //ItemName: p67_unique_fist_006 → Jawbreaker + {-1385268356, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{104.0f}, WeaponDamageMax = new List{242f}}}, //ItemName: p43_unique_fist_003_x1 → Fleshrake + {2077255630, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{168.0f}, WeaponDamageMax = new List{392f}}}, //ItemName: p67_fistweapon_norm_unique_02 → Won Khim Lau + {-233132079, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{168.0f}, WeaponDamageMax = new List{392f}}}, //ItemName: p1_fistweapon_norm_unique_01 → Sledge Fist + {1401814465, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{168.0f}, WeaponDamageMax = new List{392f}}}, //ItemName: p4_unique_fist_102 → Lion's Claw + {-232423704, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{22.0f}, WeaponDamageMax = new List{40f}}}, //ItemName: p67_unique_flail_1h_106 → Golden Scourge + {1747207177, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{22.0f}, WeaponDamageMax = new List{40f}}}, //ItemName: p61_unique_flail_1h_105_x1 → Swiftmount + {1784501906, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{192.0f}, WeaponDamageMax = new List{355f}}}, //ItemName: p1_flail1h_norm_unique_01 → Justinian's Mercy + {-474963695, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{8.0f}, WeaponDamageMax = new List{14f}}}, //ItemName: p67_unique_mighty_1h_006 → Blade of the Warlord + {-474963666, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{20.0f}, WeaponDamageMax = new List{36f}}}, //ItemName: p67_unique_mighty_1h_012 → Fjord Cutter + {1638774391, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{150.0f}, WeaponDamageMax = new List{277f}}}, //ItemName: p4_unique_mighty_1h_005 → Oathkeeper + {1638775479, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{249.0f}, WeaponDamageMax = new List{461f}}}, //ItemName: p4_unique_mighty_1h_104 → Oathkeeper + {-474962610, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{249.0f}, WeaponDamageMax = new List{461f}}}, //ItemName: p67_unique_mighty_1h_102 → Remorseless + {2123052388, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{8.0f}, WeaponDamageMax = new List{14f}}}, //ItemName: p6_unique_scythe1h_01 → Trag'Oul's Corroded Fang + {2123052389, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{25.0f}, WeaponDamageMax = new List{45f}}}, //ItemName: p6_unique_scythe1h_02 → Scythe of the Cycle + {1345794743, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{201.0f}, WeaponDamageMax = new List{371f}}}, //ItemName: p61_unique_scythe1h_03 → Funerary Pick + {1960603442, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{3.0f}, WeaponDamageMax = new List{19f}}}, //ItemName: unique_bow_005_p1 → The Raven's Wing + {1960459694, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{9.0f}, WeaponDamageMax = new List{54f}}}, //ItemName: unique_bow_001_p1 → Uskang + {824617488, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{143.0f}, WeaponDamageMax = new List{815f}}}, //ItemName: p61_unique_bow_104_x1 → Yang's Recurve + {-2110502404, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{413.0f}, WeaponDamageMax = new List{498f}}}, //ItemName: p61_unique_xbow_001 → Buriza-Do Kyanon + {-845425086, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{779.0f}, WeaponDamageMax = new List{945f}}}, //ItemName: p65_unique_xbow_102 → Wojahnni Assaulter + {-380433061, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.6f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{36f}}}, //ItemName: p43_unique_handxbow_005 → Natalya's Slayer + {-1153493308, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.6f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{36f}}}, //ItemName: unique_handxbow_004_p1 → Calamity + {-2092166876, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.6f}, WeaponDamageMin = new List{48.0f}, WeaponDamageMax = new List{275f}}}, //ItemName: p4_unique_handxbow_001 → Dawn + {717504148, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.6f}, WeaponDamageMin = new List{126.0f}, WeaponDamageMax = new List{714f}}}, //ItemName: p4_unique_handxbow_01 → Danetta's Spite + {717504149, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.6f}, WeaponDamageMin = new List{126.0f}, WeaponDamageMax = new List{714f}}}, //ItemName: p4_unique_handxbow_02 → Danetta's Revenge + {760767651, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.6f}, WeaponDamageMin = new List{126.0f}, WeaponDamageMax = new List{714f}}}, //ItemName: p42_handxbow_norm_unique_03 → Lianna's Wings + {1209211922, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{10f}}}, //ItemName: p61_wand_norm_unique_02 → Starfire + {-1852880305, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{6.0f}, WeaponDamageMax = new List{10f}}}, //ItemName: p42_unique_wand_003_x1 → Starfire + {1775640783, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{21.0f}, WeaponDamageMax = new List{38f}}}, //ItemName: p61_unique_wand_101_x1 → Wand of Woh + {1228959855, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{21.0f}, WeaponDamageMax = new List{38f}}}, //ItemName: p68_unique_wand_102 → Aether Walker + {1771839282, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{50.0f}, WeaponDamageMax = new List{92f}}}, //ItemName: p2_unique_wand_002 → Wand of Woh + {-1890589869, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{50.0f}, WeaponDamageMax = new List{92f}}}, //ItemName: p4_unique_wand_010 → Gesture of Orpheus + {-1415147493, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.4f}, WeaponDamageMin = new List{193.0f}, WeaponDamageMax = new List{357f}}}, //ItemName: p1_wand_norm_unique_01 → Blackhand Key + {2123052391, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.3f}, WeaponDamageMin = new List{249.0f}, WeaponDamageMax = new List{461f}}}, //ItemName: p6_unique_scythe1h_04 → Maltorius' Petrified Spike + {595616090, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{14.0f}, WeaponDamageMax = new List{16f}}}, //ItemName: p66_unique_axe_2h_003 → Messerschmidt's Reaver + {595616121, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{318.0f}, WeaponDamageMax = new List{384f}}}, //ItemName: p66_unique_axe_2h_011 → Skorn + {60257879, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{0.9f}, WeaponDamageMin = new List{102.0f}, WeaponDamageMax = new List{110f}}}, //ItemName: unique_mace_2h_012_p1 → The Furnace + {59323518, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{0.9f}, WeaponDamageMin = new List{1204.0f}, WeaponDamageMax = new List{1323f}}}, //ItemName: unique_mace_2h_009_p2 → Schaeffer's Hammer + {-2054879108, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{85.0f}, WeaponDamageMax = new List{102f}}}, //ItemName: p61_unique_polearm_01 → Vigilance + {-1987973256, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{0.95f}, WeaponDamageMin = new List{310.0f}, WeaponDamageMax = new List{374f}}}, //ItemName: unique_polearm_003_p1 → Heart Slaughter + {-1036928912, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{10.0f}, WeaponDamageMax = new List{15f}}}, //ItemName: p61_unique_staff_001 → The Tormentor + {1889450717, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{288.0f}, WeaponDamageMax = new List{429f}}}, //ItemName: p2_unique_staff_003 → The Grand Vizier + {-1036928904, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{852.0f}, WeaponDamageMax = new List{1273f}}}, //ItemName: p61_unique_staff_009 → Staff of Chiroptera + {-1785057298, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{36.0f}, WeaponDamageMax = new List{53f}}}, //ItemName: p61_unique_sword_2h_012_x1 → The Grandfather + {-1786063534, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{239.0f}, WeaponDamageMax = new List{355f}}}, //ItemName: p61_unique_sword_2h_007_x1 → Blade of Prophecy + {-990327430, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{1137.0f}, WeaponDamageMax = new List{1702f}}}, //ItemName: unique_sword_2h_104_x1 → Stalgard's Decimator + {1571905343, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{11.0f}, WeaponDamageMax = new List{20f}}}, //ItemName: p61_unique_combatstaff_2h_001 → Staff of Kyro + {1484349569, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{57.0f}, WeaponDamageMax = new List{104f}}}, //ItemName: p41_unique_combatstaff_2h_005 → Incense Torch of the Grand Temple + {-2142353559, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{192.0f}, WeaponDamageMax = new List{355f}}}, //ItemName: p61_unique_combatstaff_2h_003_x1 → Warstaff of General Quang + {1692870603, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{13.0f}, WeaponDamageMax = new List{13f}}}, //ItemName: p4_unique_flail_2h_002 → Fate of the Fell + {1692870602, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{68.0f}, WeaponDamageMax = new List{73f}}}, //ItemName: p4_unique_flail_2h_001 → Golden Flense + {237815937, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{91.0f}, WeaponDamageMax = new List{98f}}}, //ItemName: p61_unique_flail_2h_104 → The Mortal Drama + {-593519544, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{91.0f}, WeaponDamageMax = new List{98f}}}, //ItemName: p61_unique_flail_2h_103_x1 → Golden Flense + {-628579251, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{1351.0f}, WeaponDamageMax = new List{1486f}}}, //ItemName: p65_flail2h_norm_unique_01 → Baleful Remnant + {2141721069, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.15f}, WeaponDamageMin = new List{1351.0f}, WeaponDamageMax = new List{1486f}}}, //ItemName: p4_unique_flail_2h_set_01_x1 → The Mortal Drama (parte do conjunto Seeker of the Light) + {1488065617, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{89.0f}, WeaponDamageMax = new List{97f}}}, //ItemName: p68_unique_mighty_2h_004 → Madawc's Sorrow + {905710060, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.0f}, WeaponDamageMin = new List{121.0f}, WeaponDamageMax = new List{131f}}}, //ItemName: p61_unique_mighty_2h_006 → The Gavel of Judgment + {1677910869, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{1462.0f}, WeaponDamageMax = new List{1609f}}}, //ItemName: p4_unique_mighty_2h_101 → Fury of the Vanished Peak + {2124238311, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{53.0f}, WeaponDamageMax = new List{57f}}}, //ItemName: p6_unique_scythe2h_03 → Reilena's Shadowhook + {1346980662, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{53.0f}, WeaponDamageMax = new List{57f}}}, //ItemName: p61_unique_scythe2h_01 → Nayr's Black Death + {-2132409157, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{278.0f}, WeaponDamageMax = new List{304f}}}, //ItemName: p65_unique_scythe2h_02 → Bloodtide Blade + {1346980665, new UniqueItemLayout{ Armor = new List{0.0f}, DPS = new List{1.1f}, WeaponDamageMin = new List{1461.0f}, WeaponDamageMax = new List{1607f}}}, //ItemName: p61_unique_scythe2h_04 → Reilena's Shadowhook + {334197453, new UniqueItemLayout{ Armor = new List{72.0f, 89f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_002_p1 → Andariel's Visage + {-1046338483, new UniqueItemLayout{ Armor = new List{54.0f, 71f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_helm_001 → Leoric's Crown + {-413799279, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_helm_102 → Leoric's Crown + {-413799278, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_helm_103 → Pride's Fall + {-1993638951, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_helm_21 → Mask of Scarlet Death + {334233391, new UniqueItemLayout{ Armor = new List{360.0f, 396f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_003_p2 → Mempo of Twilight + {1976308075, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_necro_unique_helm_22 → Fate's Vow + {-1992056814, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_13_x1 → The Shadow's Mask + {-1992020877, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_14_x1 → Sunwuko's Crown + {-1993314872, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_01_p2 → Immortal King's Triumph + {1104405864, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_helm_set_05 → Helm of the Wastes + {-1993242997, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_03_p3 → Firebird's Plume + {1974253315, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_helm_set_01 → Raekor's Will + {-1993314873, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_01_p1 → Immortal King's Triumph + {-1993242998, new UniqueItemLayout{ Armor = new List{21.0f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_03_p2 → Firebird's Plume + {1935108657, new UniqueItemLayout{ Armor = new List{360.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p1_unique_spiritstone_008 → Madstone + {-223029400, new UniqueItemLayout{ Armor = new List{30.0f, 35f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_voodoomask_102_x1 → Mask of Jeram + {-1354819701, new UniqueItemLayout{ Armor = new List{30.0f, 35f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p65_unique_voodoomask_101_x1 → Carnevil + {1104405863, new UniqueItemLayout{ Armor = new List{30.0f, 35f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_helm_set_04 → Natalya's Sight + {-1383279272, new UniqueItemLayout{ Armor = new List{150.0f, 185f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p3_unique_wizardhat_003 → The Swami + {350771572, new UniqueItemLayout{ Armor = new List{30.0f, 35f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_wizardhat_103 → Crown of the Primus + {-987649171, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_shoulders_22 → Corpsewhisper Pauldrons + {-987649172, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_shoulders_21 → Razeth's Volition + {1925746096, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_shoulder_101 → Homing Pads + {1925746098, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_shoulder_103 → Death Watch Mantle + {39586090, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_shoulder_102 → Pauldrons of the Skeleton King + {-1959714098, new UniqueItemLayout{ Armor = new List{353.0f, 419f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_003_p1 → Death Watch Mantle + {-1980653646, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_13_x1 → The Shadow's Burden + {-1980617709, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_14_x1 → Sunwuko's Balance + {-1499119736, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_shoulder_set_05 → Pauldrons of the Wastes + {-1981911704, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_01_p2 → Immortal King's Tribal Binding + {-675559261, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_shoulder_set_01 → Raekor's Burden + {-1981911705, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_01_p1 → Immortal King's Tribal Binding + {-1981839829, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_03_p3 → Firebird's Pinions + {-1981839830, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_03_p2 → Firebird's Pinions + {-1981911703, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_01_p3 → Immortal King's Tribal Binding + {-675559260, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_shoulder_set_02 → Vile Ward + {-1499119738, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_shoulder_set_03 → Spaulders of Zakara + {-1981875767, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_02_p2 → Vile Ward + {-1499119737, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_shoulder_set_04 → Marauder's Spines + {-1981875766, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shoulder_set_02_p3 → Vile Ward + {-2039961422, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_4_shoulders → Glamorous Gigot (Masquerade of the Burning Carnival Set) + {-162363153, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_1_shoulders → Pestilence Defense (Pestilence Master's Shroud Set) + {2075082288, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_2_shoulders → Rathma's Spikes (Bones of Rathma Set) + {17560433, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_3_shoulders → Trag'Oul's Heart (Trag'Oul's Avatar Set) + {-1993314871, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_01_p3 → Immortal King's Triumph + {1974253316, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_helm_set_02 → Eyes of the Earth + {-1993278935, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_02_p2 → Eyes of the Earth + {1104405862, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_helm_set_03 → Helm of Akkhan + {-1993278934, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_helm_set_02_p3 → Eyes of the Earth + {-1706477059, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_2_helm → Rathma's Skull Helm (Bones of Rathma Set) + {-1667341666, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_3_helm → Trag'Oul's Guise (Trag'Oul's Avatar Set) + {-1628206273, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_4_helm → Mask of the Burning Carnival (Masquerade of the Burning Carnival Set) + {-1745612452, new UniqueItemLayout{ Armor = new List{58.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_1_helm → Pestilence Mask (Pestilence Master's Shroud Set) + {221665681, new UniqueItemLayout{ Armor = new List{360.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_cloak_002_p1 → Blackfeather + {258855259, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_03_p2 → Firebird's Breast + {1160204008, new UniqueItemLayout{ Armor = new List{87.0f, 107f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_chest_018 → Goldskin + {1160204002, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_chest_012 → Cindercoat + {-396017878, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_chest_21 → Bloodsong Mail + {-396017877, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_chest_22 → Requiem Cereplate + {260113317, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_15_x1 → Breastplate of Akkhan + {259969569, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_11_x1 → Firebird's Breast + {258783385, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_01_p2 → Immortal King's Eternal Reign + {868571513, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_chest_set_05 → Cuirass of the Wastes + {258783384, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_01_p1 → Immortal King's Eternal Reign + {258855260, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_03_p3 → Firebird's Breast + {-491233548, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_chest_set_01 → Raekor's Heart + {258783386, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_01_p3 → Immortal King's Eternal Reign + {-491233547, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_chest_set_02 → Heart of the Earth + {868571511, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_chest_set_03 → Breastplate of Akkhan + {258819322, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_chest_set_02_p2 → Heart of the Earth + {868571512, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P68_unique_chest_set_04 → Marauder's Carapace + {-1776465171, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_1_chest → Pestilence Robe (Pestilence Master's Shroud Set) + {-484997202, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_2_chest → Rathma's Ribcage Plate (Bones of Rathma Set) + {806470767, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_3_chest → Trag'Oul's Scales (Trag'Oul's Avatar Set) + {2097938736, new UniqueItemLayout{ Armor = new List{51.0f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_4_chest → Luxuriant Barding (Masquerade of the Burning Carnival Set) + {-794028517, new UniqueItemLayout{ Armor = new List{16.0f, 19f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_004 → Strongarm Bracers + {1861699995, new UniqueItemLayout{ Armor = new List{41.0f, 49f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_bracer_006 → Lacuni Prowlers + {-219546094, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_bracer_107 → Kethryes' Splint + {-794027427, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_105 → Promise of Glory + {-794027424, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_108 → [Item não utilizado no jogo] + {-794027429, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_103 → Warzechian Armguards + {1861699992, new UniqueItemLayout{ Armor = new List{63.0f, 75f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_bracer_003 → Slave Bonds + {-794027426, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_106 → Reaper's Wraps + {-219546097, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_bracer_104 → Nemesis Bracers + {533836830, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p3_unique_bracer_107 → Wraps of Clarity + {-219546098, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_bracer_103 → Warzechian Armguards + {533836829, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p3_unique_bracer_106 → Spirit Guards + {-219546096, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_bracer_105 → Promise of Glory + {27086075, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_bracer_108_x1 → Skular's Salvation + {403202961, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_bracer_100 → Ashnagarr's Blood Bracer + {533836824, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p3_unique_bracer_101 → Gungdo Gear + {-540861300, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p42_unique_bracer_spiketrap → Trag'Oul Coils + {-794027399, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_110 → Bracers of Destruction + {-794027430, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_102 → Strongarm Bracers + {-219546092, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_bracer_109 → Ranslor's Folly + {-794027431, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_bracer_101 → Custerian Wristguards + {2143837476, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_gloves_22 → Grasps of Essence + {1656121303, new UniqueItemLayout{ Armor = new List{192.0f, 209f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p66_unique_gloves_007 → Magefist + {614349464, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_101_p2 → Gloves of Worship + {1445202926, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p41_unique_gloves_014 → St. Archew's Gage + {2143837475, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_gloves_21 → Moribund Gauntlets + {1445202891, new UniqueItemLayout{ Armor = new List{280.0f, 308f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p41_unique_gloves_002 → Frostburn + {2058249491, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_01_p3 → Immortal King's Irons + {985594254, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_gloves_set_02 → Pull of the Earth + {-1385479120, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_gloves_set_03 → Gauntlets of Akkhan + {2058285427, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_02_p2 → Pull of the Earth + {-1385479119, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_gloves_set_04 → Marauder's Gloves + {2058285428, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_02_p3 → Pull of the Earth + {1667839014, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_1_gloves → Pestilence Gloves (Pestilence Master's Shroud Set) + {1336609031, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_2_gloves → Rathma's Macabre Vambraces (Bones of Rathma Set) + {1005379048, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_3_gloves → Trag'Oul's Claws (Trag'Oul's Avatar Set) + {674149065, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_4_gloves → Elegant Grips (Masquerade of the Burning Carnival Set) + {-206156951, new UniqueItemLayout{ Armor = new List{309.0f, 366f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_gloves_03 → Gladiator Gauntlets + {-206156953, new UniqueItemLayout{ Armor = new List{309.0f, 366f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_gloves_01 → Stone Gauntlets + {-206156950, new UniqueItemLayout{ Armor = new List{309.0f, 366f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_gloves_04 → Pender's Purchase + {-206156952, new UniqueItemLayout{ Armor = new List{309.0f, 366f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_gloves_02 → Frostburn + {2058249490, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_01_p2 → Immortal King's Irons + {-1385479118, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_gloves_set_05 → Gauntlet of the Wastes + {985594253, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_gloves_set_01 → Raekor's Wraps + {2058249489, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_01_p1 → Immortal King's Irons + {2058321365, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_03_p3 → Firebird's Talons + {2058321364, new UniqueItemLayout{ Armor = new List{42.0f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_gloves_set_03_p2 → Firebird's Talons + {1483289131, new UniqueItemLayout{ Armor = new List{108.0f, 127f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p43_unique_belt_001_x1 → Goldwrap + {1483432879, new UniqueItemLayout{ Armor = new List{265.0f, 314f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p43_unique_belt_005_x1 → Hellcat Waistguard + {400756501, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_belt_03 → Vigilante Belt + {1479591553, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_02 → The Witching Hour + {400756499, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_belt_01 → Goldwrap + {1479591556, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_05 → Hellcat Waistguard + {1274781855, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p3_unique_belt_01 → Jang's Envelopment + {1479591554, new UniqueItemLayout{ Armor = new List{145.0f, 164f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_03 → Vigilante Belt + {340062601, new UniqueItemLayout{ Armor = new List{112.0f, 132f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_belt_007 → Thundergod's Vigor + {1479591558, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_07 → Thundergod's Vigor + {1479591557, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_06 → Razor Strop + {1810135126, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_belt_108_p2 → Hunter's Wrath + {1809919504, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_belt_102_p2 → Harrington Waistguard + {1069972161, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_04 → Saffron Wrap + {1069972160, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_03 → Vigilante Belt + {1069972163, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_06 → Razor Strop + {1809991378, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_belt_104_p2 → Goldwrap + {1069972158, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_01 → Goldwrap + {1479591552, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_01 → Goldwrap + {1069972162, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_05 → Hellcat Waistguard + {1069972159, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_02 → The Witching Hour + {1770820047, new UniqueItemLayout{ Armor = new List{165.0f, 179f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_belt_003_p1 → Vigilante Belt + {949342869, new UniqueItemLayout{ Armor = new List{286.0f, 319f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_belt_008 → String of Ears + {-1665574288, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p42_crusader_foh_belt → Belt of the Trove + {1479591555, new UniqueItemLayout{ Armor = new List{6.0f, 6f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_belt_04 → Saffron Wrap + {-881871725, new UniqueItemLayout{ Armor = new List{165.0f, 179f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p3_unique_belt_005 → Hwoj Wrap + {-683225825, new UniqueItemLayout{ Armor = new List{53.0f, 61f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_barbbelt_eq → Girdle of Giants + {-142974746, new UniqueItemLayout{ Armor = new List{74.0f, 85f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_barbbelt_006 → Chilanik's Chain + {1958737381, new UniqueItemLayout{ Armor = new List{200.0f, 225f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_barbbelt_001 → Girdle of Giants + {-1502779804, new UniqueItemLayout{ Armor = new List{320.0f, 419f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_barbbelt_005 → Ageless Might + {-774273901, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_007_p2 → Pox Faulds + {1655219914, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_necro_unique_pants_21 → Golemskin Breeches + {1891331216, new UniqueItemLayout{ Armor = new List{162.0f, 191f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_pants_002 → Hammer Jammers + {1655219915, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_necro_unique_pants_22 → Defiler Cuisses + {-2073208480, new UniqueItemLayout{ Armor = new List{217.0f, 246f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p41_unique_pants_001 → Swampland Waders + {-774309839, new UniqueItemLayout{ Armor = new List{397.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_006_p1 → Depth Diggers + {-184773475, new UniqueItemLayout{ Armor = new List{397.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_pants_01 → Swampland Waders + {-184773474, new UniqueItemLayout{ Armor = new List{397.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_pants_02 → Hammer Jammers + {-184773472, new UniqueItemLayout{ Armor = new List{397.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_pants_04 → Ashen Garb + {-184773473, new UniqueItemLayout{ Armor = new List{397.0f, 471f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_pants_03 → Gehennas + {827051824, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_11_x1 → Firebird's Down + {827087761, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_12_x1 → Krelm's Buff Belt + {825865640, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_01_p2 → Immortal King's Stature + {-1221469976, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_pants_set_05 → Tasset of the Wastes + {1713692259, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_pants_set_01 → Raekor's Breeches + {-2027795858, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_nercro_set_1_pants → Pestilence Incantations (Pestilence Master's Shroud Set) + {-736327889, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_nercro_set_2_pants → Rathma's Skeletal Legplates (Bones of Rathma Set) + {555140080, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_nercro_set_3_pants → Trag'Oul's Hide (Trag'Oul's Avatar Set) + {1846608049, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_nercro_set_4_pants → Leggings of the Burning Carnival (Masquerade of the Burning Carnival Set) + {825901578, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_02_p3 → Weight of the Earth + {-1221469977, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_pants_set_04 → Marauder's Encasement + {-1221469978, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_pants_set_03 → Cuisses of Akkhan + {825901577, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_02_p2 → Weight of the Earth + {825865641, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_01_p3 → Immortal King's Stature + {1713692260, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_pants_set_02 → Weight of the Earth + {825937514, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_03_p2 → Firebird's Down + {825865639, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_01_p1 → Immortal King's Stature + {825937515, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_pants_set_03_p3 → Firebird's Down + {-2143372979, new UniqueItemLayout{ Armor = new List{30.0f, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p1_unique_boots_010 → Boj Anglers + {1249976208, new UniqueItemLayout{ Armor = new List{130.0f, 148f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_boots_001 → Lut Socks + {778057211, new UniqueItemLayout{ Armor = new List{30.0f, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_boots_22 → Bryner's Journey + {1940317172, new UniqueItemLayout{ Armor = new List{280.0f, 308f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_007_p2 → Illusory Boots + {778057210, new UniqueItemLayout{ Armor = new List{30.0f, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_unique_boots_21 → Steuart's Greaves + {488016499, new UniqueItemLayout{ Armor = new List{309.0f, 366f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_boots_01 → Lut Socks + {1097296767, new UniqueItemLayout{ Armor = new List{309.0f, 366f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_boots_02 → The Crudest Boots + {-800683182, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_12_x1 → Cain's Travelers + {1493121097, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_boots_set_05 → Sabaton of the Wastes + {-801905303, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_01_p2 → Immortal King's Stride + {-801905304, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_01_p1 → Immortal King's Stride + {-801833428, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_03_p3 → Firebird's Tarsi + {133316036, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_boots_set_01 → Raekor's Striders + {-801833429, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_03_p2 → Firebird's Tarsi + {133316037, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p67_unique_boots_set_02 → Foundation of the Earth + {-801905302, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_01_p3 → Immortal King's Stride + {-801869366, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_02_p2 → Foundation of the Earth + {1493121095, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_boots_set_03 → Sabatons of Akkhan + {-801869365, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_boots_set_02_p3 → Foundation of the Earth + {1493121096, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p68_unique_boots_set_04 → Marauder's Treads + {-1777388611, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_1_boots → Pestilence Battle Boots + {-485920642, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_2_boots → Rathma's Ossified Sabatons + {805547327, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_3_boots → Trag'Oul's Stalwart Greaves + {2097015296, new UniqueItemLayout{ Armor = new List{33.0f, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_necro_set_4_boots → Gallant Treads + {-1239738149, new UniqueItemLayout{ Armor = new List{320.0f, 383f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_shield_007 → Freeze of Deflection + {200340033, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: unique_shield_101_p2 → Denial + {841509025, new UniqueItemLayout{ Armor = new List{860.0f, 959f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p2_unique_shield_002 → Defender of Westmarch + {2077105940, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p6_unique_shield_01 → Bone Ringer + {-734892285, new UniqueItemLayout{ Armor = new List{8.0f, 9f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_unique_shield_106_x1 → Stormshield + {283157133, new UniqueItemLayout{ Armor = new List{9.0f, 10f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p65_unique_crushield_102_x1 → Unrelenting Phalanx + {823119018, new UniqueItemLayout{ Armor = new List{9.0f, 10f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p61_crushield_norm_unique_01 → Jekangbord + {1983862517, new UniqueItemLayout{ Armor = new List{9.0f, 10f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p1_crushield_norm_unique_02 → Sublime Conviction + {-1170685627, new UniqueItemLayout{ Armor = new List{9.0f, 10f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: p4_unique_shield_set_01_x1 → Hallowed Barricade /* - {-1745612452, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_1_Helm - {-1777388611, new UniqueItemLayout{ Armor = new List{30, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_1_Boots - {-1761289924, new UniqueItemLayout{ Armor = new List{33, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_1_Pants - {-1776465171, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_1_Chest - {-162363153, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_1_Shoulders - {1667839014, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_1_Gloves + {-1745612452, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_1_Helm → Pestilence Mask (Pestilence Master's Shroud Set) + {-1777388611, new UniqueItemLayout{ Armor = new List{30, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_1_Boots → Pestilence Battle Boots (Pestilence Master's Shroud Set) + {-1761289924, new UniqueItemLayout{ Armor = new List{33, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_1_Pants → Pestilence Incantations (Pestilence Master's Shroud Set) + {-1776465171, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_1_Chest → Pestilence Robe (Pestilence Master's Shroud Set) + {-162363153, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_1_Shoulders → Pestilence Defense (Pestilence Master's Shroud Set) + {1667839014, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_1_Gloves → Pestilence Gloves (Pestilence Master's Shroud Set) - {-1706477059, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_2_Helm - {-485920642, new UniqueItemLayout{ Armor = new List{30, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_2_Boots - {-469821955, new UniqueItemLayout{ Armor = new List{33, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_2_Pants - {-484997202, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_2_Chest - {2075082288, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_2_Shoulders - {1336609031, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_2_Gloves + {-1706477059, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_2_Helm → Rathma's Skull Helm (Bones of Rathma Set) + {-485920642, new UniqueItemLayout{ Armor = new List{30, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_2_Boots → Rathma's Ossified Sabatons (Bones of Rathma Set) + {-469821955, new UniqueItemLayout{ Armor = new List{33, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_2_Pants → Rathma's Skeletal Legplates (Bones of Rathma Set) + {-484997202, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_2_Chest → Rathma's Ribcage Plate (Bones of Rathma Set) + {2075082288, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_2_Shoulders → Rathma's Spikes (Bones of Rathma Set) + {1336609031, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_2_Gloves → Rathma's Macabre Vambraces (Bones of Rathma Set) - {-1667341666, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_3_Helm - {805547327, new UniqueItemLayout{ Armor = new List{30, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_3_Boots - {821646014, new UniqueItemLayout{ Armor = new List{33, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_3_Pants - {806470767, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_3_Chest - {17560433, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_3_Shoulders - {1005379048, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_3_Gloves + {-1667341666, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_3_Helm → Trag'Oul's Guise (Trag'Oul's Avatar Set) + {805547327, new UniqueItemLayout{ Armor = new List{30, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_3_Boots → Trag'Oul's Stalwart Greaves (Trag'Oul's Avatar Set) + {821646014, new UniqueItemLayout{ Armor = new List{33, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_3_Pants → Trag'Oul's Hide (Trag'Oul's Avatar Set) + {806470767, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_3_Chest → Trag'Oul's Scales (Trag'Oul's Avatar Set) + {17560433, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_3_Shoulders → Trag'Oul's Heart (Trag'Oul's Avatar Set) + {1005379048, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_3_Gloves → Trag'Oul's Claws (Trag'Oul's Avatar Set) - {-1628206273, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_4_Helm - {2097015296, new UniqueItemLayout{ Armor = new List{30, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_4_Boots - {2113113983, new UniqueItemLayout{ Armor = new List{33, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_4_Pants - {2097938736, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_4_Chest - {-2039961422, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_4_Shoulders - {674149065, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_4_Gloves + {-1628206273, new UniqueItemLayout{ Armor = new List{21f, 24f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_4_Helm → Mask of the Burning Carnival (Masquerade of the Burning Carnival Set) + {2097015296, new UniqueItemLayout{ Armor = new List{30, 34f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_4_Boots → Gallant Treads (Masquerade of the Burning Carnival Set) + {2113113983, new UniqueItemLayout{ Armor = new List{33, 37f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_4_Pants → Leggings of the Burning Carnival (Masquerade of the Burning Carnival Set) + {2097938736, new UniqueItemLayout{ Armor = new List{51f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_4_Chest → Luxuriant Barding (Masquerade of the Burning Carnival Set) + {-2039961422, new UniqueItemLayout{ Armor = new List{58f, 68f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_4_Shoulders → Glamorous Gigot (Masquerade of the Burning Carnival Set) + {674149065, new UniqueItemLayout{ Armor = new List{42f, 55f}, DPS = new List{0.0f}, WeaponDamageMin = new List{0.0f}, WeaponDamageMax = new List{0f}}}, //ItemName: P6_Necro_Set_4_Gloves → Elegant Grips (Masquerade of the Burning Carnival Set) //*/ }; } -} \ No newline at end of file +} From af8773e6f88e79c820bc4caef874e0e440bc4eda Mon Sep 17 00:00:00 2001 From: Enthusiast <73853957+rgto@users.noreply.github.com> Date: Mon, 29 Sep 2025 16:37:11 -0300 Subject: [PATCH 3/4] Delete Src/DiIiS-NA/D3-GameServer/GSSystem/QuestSystem/QuestEvents directory --- .../Implementations/Act I/SpawnSkeletons.cs | 92 ------------------- 1 file changed, 92 deletions(-) delete mode 100644 Src/DiIiS-NA/D3-GameServer/GSSystem/QuestSystem/QuestEvents/Implementations/Act I/SpawnSkeletons.cs diff --git a/Src/DiIiS-NA/D3-GameServer/GSSystem/QuestSystem/QuestEvents/Implementations/Act I/SpawnSkeletons.cs b/Src/DiIiS-NA/D3-GameServer/GSSystem/QuestSystem/QuestEvents/Implementations/Act I/SpawnSkeletons.cs deleted file mode 100644 index ff7fe82..0000000 --- a/Src/DiIiS-NA/D3-GameServer/GSSystem/QuestSystem/QuestEvents/Implementations/Act I/SpawnSkeletons.cs +++ /dev/null @@ -1,92 +0,0 @@ -using DiIiS_NA.Core.Logging; -using DiIiS_NA.GameServer.GSSystem.ActorSystem; -using DiIiS_NA.GameServer.GSSystem.ActorSystem.Implementations.Hirelings; -using DiIiS_NA.GameServer.GSSystem.GameSystem; -using DiIiS_NA.GameServer.GSSystem.PlayerSystem; -using DiIiS_NA.GameServer.MessageSystem; -using System.Linq; -using System; -using System.Collections.Generic; -using DiIiS_NA.LoginServer.AccountsSystem; -using DiIiS_NA.GameServer.GSSystem.QuestSystem.QuestEvents; -using DiIiS_NA.GameServer.Core.Types.Math; -using DiIiS_NA.Core.Helpers.Math; -using DiIiS_NA.GameServer.Core.Types.TagMap; -using DiIiS_NA.GameServer.MessageSystem.Message.Definitions.Animation; -using System.Threading.Tasks; -using DiIiS_NA.GameServer.MessageSystem.Message.Definitions.Base; -using DiIiS_NA.D3_GameServer.Core.Types.SNO; - -namespace DiIiS_NA.GameServer.GSSystem.QuestSystem.QuestEvents.Implementations -{ - class SpawnSkeletons : QuestEvent - { - //ActorID: 0x7A3100DD - //ZombieSkinny_A_LeahInn.acr (2050031837) - //ActorSNOId: 0x00031971:ZombieSkinny_A_LeahInn.acr - - private static readonly Logger Logger = LogManager.CreateLogger(); - - public SpawnSkeletons() - : base(151124) - { - } - - public override void Execute(MapSystem.World world) - { - if (world.Game.Empty) return; - //Logger.Debug("SpawnSkeletons event started"); - Task.Delay(1000).ContinueWith(delegate - { - foreach (var plr in world.Game.Players.Values) - plr.InGameClient.SendMessage(new MessageSystem.Message.Definitions.Camera.CameraCriptedSequenceStartMessage() { Activate = true }); - var SkeletonKing_Bridge = world.GetActorBySNO(ActorSno._trdun_skeletonking_bridge_active); - Task.Delay(1000).ContinueWith(delegate - { - foreach (var plr in world.Game.Players.Values) - plr.InGameClient.SendMessage(new MessageSystem.Message.Definitions.Camera.CameraFocusMessage() { ActorID = (int)SkeletonKing_Bridge.DynamicID(plr), Duration = 1f, Snap = false }); - - StartConversation(world, 17923); - - SkeletonKing_Bridge.PlayAnimation(5, (AnimationSno)SkeletonKing_Bridge.AnimationSet.TagMapAnimDefault[AnimationSetKeys.Opening], 1f); - - world.BroadcastIfRevealed(plr => new SetIdleAnimationMessage - { - ActorID = SkeletonKing_Bridge.DynamicID(plr), - AnimationSNO = AnimationSetKeys.Open.ID, - }, SkeletonKing_Bridge); - - Task.Delay(3000).ContinueWith(delegate - { - foreach (var plr in world.Game.Players.Values) - { - plr.InGameClient.SendMessage(new BoolDataMessage(Opcodes.CameraTriggerFadeToBlackMessage) { Field0 = true }); - plr.InGameClient.SendMessage(new SimpleMessage(Opcodes.CameraSriptedSequenceStopMessage) { }); - } - }); - }); - }); - - - - var spawner = world.GetActorBySNO(ActorSno._trdun_rescuecainskelspawner); - while (spawner != null) - { - var monster = ActorSno._skeletonking_shield_skeleton; - world.SpawnMonster(monster, spawner.Position); - spawner.Destroy(); - spawner = world.GetActorBySNO(ActorSno._trdun_rescuecainskelspawner); - } - } - - private bool StartConversation(MapSystem.World world, Int32 conversationId) - { - foreach (var player in world.Players) - { - player.Value.Conversations.StartConversation(conversationId); - } - return true; - } - - } -} From f2156fd6b237b679e18888736eca9bf0acffdb50 Mon Sep 17 00:00:00 2001 From: Pablo Rigueto Date: Mon, 29 Sep 2025 16:40:30 -0300 Subject: [PATCH 4/4] Added spawnskeleton quest in the correct folder. --- .../Implementations/Act I/SpawnSkeletons.cs | 92 +++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 src/DiIiS-NA/D3-GameServer/GSSystem/QuestSystem/QuestEvents/Implementations/Act I/SpawnSkeletons.cs diff --git a/src/DiIiS-NA/D3-GameServer/GSSystem/QuestSystem/QuestEvents/Implementations/Act I/SpawnSkeletons.cs b/src/DiIiS-NA/D3-GameServer/GSSystem/QuestSystem/QuestEvents/Implementations/Act I/SpawnSkeletons.cs new file mode 100644 index 0000000..ff7fe82 --- /dev/null +++ b/src/DiIiS-NA/D3-GameServer/GSSystem/QuestSystem/QuestEvents/Implementations/Act I/SpawnSkeletons.cs @@ -0,0 +1,92 @@ +using DiIiS_NA.Core.Logging; +using DiIiS_NA.GameServer.GSSystem.ActorSystem; +using DiIiS_NA.GameServer.GSSystem.ActorSystem.Implementations.Hirelings; +using DiIiS_NA.GameServer.GSSystem.GameSystem; +using DiIiS_NA.GameServer.GSSystem.PlayerSystem; +using DiIiS_NA.GameServer.MessageSystem; +using System.Linq; +using System; +using System.Collections.Generic; +using DiIiS_NA.LoginServer.AccountsSystem; +using DiIiS_NA.GameServer.GSSystem.QuestSystem.QuestEvents; +using DiIiS_NA.GameServer.Core.Types.Math; +using DiIiS_NA.Core.Helpers.Math; +using DiIiS_NA.GameServer.Core.Types.TagMap; +using DiIiS_NA.GameServer.MessageSystem.Message.Definitions.Animation; +using System.Threading.Tasks; +using DiIiS_NA.GameServer.MessageSystem.Message.Definitions.Base; +using DiIiS_NA.D3_GameServer.Core.Types.SNO; + +namespace DiIiS_NA.GameServer.GSSystem.QuestSystem.QuestEvents.Implementations +{ + class SpawnSkeletons : QuestEvent + { + //ActorID: 0x7A3100DD + //ZombieSkinny_A_LeahInn.acr (2050031837) + //ActorSNOId: 0x00031971:ZombieSkinny_A_LeahInn.acr + + private static readonly Logger Logger = LogManager.CreateLogger(); + + public SpawnSkeletons() + : base(151124) + { + } + + public override void Execute(MapSystem.World world) + { + if (world.Game.Empty) return; + //Logger.Debug("SpawnSkeletons event started"); + Task.Delay(1000).ContinueWith(delegate + { + foreach (var plr in world.Game.Players.Values) + plr.InGameClient.SendMessage(new MessageSystem.Message.Definitions.Camera.CameraCriptedSequenceStartMessage() { Activate = true }); + var SkeletonKing_Bridge = world.GetActorBySNO(ActorSno._trdun_skeletonking_bridge_active); + Task.Delay(1000).ContinueWith(delegate + { + foreach (var plr in world.Game.Players.Values) + plr.InGameClient.SendMessage(new MessageSystem.Message.Definitions.Camera.CameraFocusMessage() { ActorID = (int)SkeletonKing_Bridge.DynamicID(plr), Duration = 1f, Snap = false }); + + StartConversation(world, 17923); + + SkeletonKing_Bridge.PlayAnimation(5, (AnimationSno)SkeletonKing_Bridge.AnimationSet.TagMapAnimDefault[AnimationSetKeys.Opening], 1f); + + world.BroadcastIfRevealed(plr => new SetIdleAnimationMessage + { + ActorID = SkeletonKing_Bridge.DynamicID(plr), + AnimationSNO = AnimationSetKeys.Open.ID, + }, SkeletonKing_Bridge); + + Task.Delay(3000).ContinueWith(delegate + { + foreach (var plr in world.Game.Players.Values) + { + plr.InGameClient.SendMessage(new BoolDataMessage(Opcodes.CameraTriggerFadeToBlackMessage) { Field0 = true }); + plr.InGameClient.SendMessage(new SimpleMessage(Opcodes.CameraSriptedSequenceStopMessage) { }); + } + }); + }); + }); + + + + var spawner = world.GetActorBySNO(ActorSno._trdun_rescuecainskelspawner); + while (spawner != null) + { + var monster = ActorSno._skeletonking_shield_skeleton; + world.SpawnMonster(monster, spawner.Position); + spawner.Destroy(); + spawner = world.GetActorBySNO(ActorSno._trdun_rescuecainskelspawner); + } + } + + private bool StartConversation(MapSystem.World world, Int32 conversationId) + { + foreach (var player in world.Players) + { + player.Value.Conversations.StartConversation(conversationId); + } + return true; + } + + } +}